:root {
    --ltn__primary-color: #071C1F;
    --ltn__primary-color-2: #041113;
    /* Darken */
    --ltn__primary-color-3: #70aac0;
    /* Lighten */
    --ltn__secondary-color: #085c80;
    --ltn__secondary-color-2: #cb3421;
    /* Darken */
    --ltn__secondary-color-3: #fb412a;
    /* Lighten */
    --ltn__heading-color: #071c1f;
    --ltn__paragraph-color: #5C727D;
    --ltn__heading-font: 'Verdana', sans-serif;
    --ltn__body-font: 'Avantgarde', sans-serif;
    /* Footer ACD2D8 8CB2B2  */
    --ltn__color-1: #8cb2b2;
    --ltn__color-2: #ACD2D8;
    --ltn__color-3: #A3BCC0;
    --ltn__color-4: #84A2A6;
    --ltn__color-5: #5C727D;
    --ltn__color-6: #F5DFDC;
    /* Gradient Colors */
    --gradient-color-1: linear-gradient(90deg, rgba(242,139,194,1) 0%, rgba(216,177,242,1) 50%);
    --gradient-color-2: linear-gradient(to top, rgba(7,28,31,0) 0%, rgba(7,28,31,1) 90%);
    --gradient-color-3: linear-gradient(to bottom, rgba(7,28,31,0) 0%, rgba(7,28,31,1) 90%);
    --gradient-color-4: linear-gradient(to top, rgba(242,246,247,0) 0%, rgba(242,246,247,1) 90%);
    --gradient-color-5: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 70%);
    /* Background Colors ( 1, 2, 3, 4, 5 )  */
    --section-bg-1: #F2F6F7;
    /* White */
    --section-bg-2: #171B2A;
    /* Black */
    --section-bg-5: #FFF2F0;
    /* White */
    --section-bg-6: #0B2C3D;
    /* Black */
    --section-bg-7: #282b38;
    /* Black */
    /* Border Colors */
    --border-color-1: #e5eaee;
    /* White */
    --border-color-2: #1e2021;
    /* Black */
    --border-color-3: #5C617F;
    /* Black */
    --border-color-4: #eb6954;
    /* Red */
    --border-color-5: #bc3928;
    /* Red */
    --border-color-6: #103034;
    /* Black */
    --border-color-7: #d1dae0;
    /* White */
    --border-color-8: #f6f6f6;
    /* White */
    --border-color-9: #e4ecf2;
    /* White */
    --border-color-10: #ebeeee;
    /* White */
    --border-color-11: #ededed;
    /* White */
    --border-color-12: #e1e6ff;
    /* White */
    --border-color-13: #f1f8ff;
    /* White */
    /* Box Shadow Colors */
    --ltn__box-shadow-1: 0 16px 32px 0 rgba(7, 28, 31, 0.1);
    --ltn__box-shadow-2: 0 0 4px rgba(0, 0, 0, 0.1);
    /* like border */
    --ltn__box-shadow-3: 0 1px 6px 0 rgba(32, 33, 36, .28);
    /* like border GGL */
    --ltn__box-shadow-4: 0 5px 20px 0 rgba(23, 44, 82, 0.1);
    --ltn__box-shadow-5: 0 8px 16px 0 rgba(93, 93, 93, 0.1);
    --ltn__box-shadow-6: 0 0 25px 2px rgba(93, 93, 93, 0.2);
    --ltn__box-shadow-7: 0 0 10px 0px rgba(93, 93, 93, 0.2);
    /* Common Colors */
    --black: #000000;
    --black-2: #22355B;
    --white: #fff;
    --white-2: #F2F6F7;
    --white-3: #e8edee;
    --white-4: #e6ecf0;
    --white-5: #f0f4f7;
    --white-6: #f1f1f1;
    --white-7: #F7F7F7;
    --white-8: #FAFAFA;
    --white-9: #F2F7FA;
    --white-10: #EDEDED;
    --red: #FF0000;
    --red-2: #f34f3f;
    --red-3: #DB483B;
    --red-4: #FB2448;
    --silver: #C0C0C0;
    --gray: #808080;
    --maroon: #800000;
    --yellow: #FFFF00;
    --olive: #808000;
    --lime: #00FF00;
    --green: #77C720;
    --green-2: #008000;
    --aqua: #00FFFF;
    --teal: #008080;
    --blue: #0000FF;
    --navy: #000080;
    --fuchsia: #B13BFF;
    --purple: #800080;
    --pink: #FFC0CB;
    --nude: #ebc8b2;
    --orange: #ffa500;
    --ratings: #FFB800;
    /* social media colors */
    --facebook: #365493;
    --twitter: #3CF;
    --linkedin: #0077B5;
    --pinterest: #c8232c;
    --dribbble: #ea4c89;
    --behance: #131418;
    --google-plus: #dd4b39;
    --instagram: #e4405f;
    --vk: #3b5998;
    --wechat: #7bb32e;
    --youtube: #CB2027;
    --email: #F89A1E; }

.ltn__product-item {
    position: relative;
    margin-bottom: 50px; }

.product-img {
    position: relative;
    overflow: hidden; }

.product-img img {
    position: relative;
    -webkit-transition: all 3.5s ease 0s;
    -o-transition: all 3.5s ease 0s;
    transition: all 3.5s ease 0s; }

.product-img:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--ltn__primary-color);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s; }

.ltn__product-item:hover .product-img:before {
    opacity: 0.4;
    visibility: visible; }

.ltn__product-item:hover .product-img::before {
    opacity: 0.4;
    visibility: visible; }

.product-title {
    font-size: 16px;
    margin-bottom: 5px; }

.product-ratting {
    margin-bottom: 5px; }

.product-ratting ul {
    margin: 0;
    padding: 0; }

.product-ratting li {
    display: inline-block;
    margin: 0 -2px;
    color: var(--ratings);
    font-size: 12px; }

.product-hover-action {
    position: absolute;
    top: 60%;
    left: 0;
    right: 0;
    text-align: center;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s; }

.ltn__product-item:hover .product-hover-action {
    top: 50%;
    opacity: 1;
    visibility: visible; }

.product-hover-action ul {
    margin: 0;
    padding: 0;
    display: inline-block;
    -webkit-box-shadow: var(--ltn__box-shadow-3);
    box-shadow: var(--ltn__box-shadow-3); }

.product-hover-action li {
    height: 50px;
    width: 50px;
    line-height: 50px;
    font-size: 14px;
    text-align: center;
    float: left;
    margin-right: 0px;
    margin-top: 0;
    list-style: none;
    border-right: 1px solid var(--border-color-7); }

.product-hover-action li:last-child {
    margin-right: 0;
    border-right: 0; }

.product-hover-action li button {
    display: block;
    background-color: var(--white);
    padding: 0 10px;
    font-weight: 700; }

.product-hover-action li:hover button {
    background-color: var(--ltn__secondary-color);
    color: var(--white); }

.product-badge {
    position: absolute;
    top: 15px;
    right: 18px; }

.product-badge ul {
    margin: 0;
    padding: 0; }

.product-badge li {
    list-style: none;
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    background-color: var(--ltn__secondary-color);
    color: var(--white);
    padding: 3px 15px 0px;
    text-transform: uppercase;
    line-height: 25px; }
.product-badge li:first-child {
    margin-top: 0; }
.product-badge li::before {
    position: absolute;
    content: "";
    bottom: -8px;
    left: 0;
    border-left: 8px solid var(--ltn__secondary-color);
    width: 0;
    height: 0;
    border-bottom: 8px solid transparent;
    display: none; }
.product-badge li .soldout-badge {
    background-color: var(--red-2); }

.product-info {
    padding: 20px 0 0; }

.product-price {
    color: var(--ltn__heading-color);
    font-weight: 600; }

.product-price del {
    opacity: 0.6;
    margin-left: 5px;
    font-size: 80%; }

.ltn__product-item .product-price {
    margin-bottom: 12px; }

.product-action ul {
    margin: 10px 0 0;
    padding: 0; }

.product-action li {
    display: inline-block;
    margin-top: 0; }

.product-action li button {
    display: inline-block;
    padding: 3px 15px;
    border: 1px solid var(--ltn__heading-color);
    color: var(--ltn__heading-color);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s; }

.product-action li:hover button {
    background-color: var(--ltn__secondary-color);
    color: var(--white);
    border-color: var(--ltn__secondary-color); }

.button-1 button {
    display: inline-block;
    padding: 5px 15px;
    background-color: var(--ltn__heading-color);
    color: var(--white);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s; }

.button-1:hover button {
    background-color: var(--ltn__secondary-color);
    color: var(--white); }

.no-product-ratting .product-ratting {
    display: none; }

/* product-item-2 */
.ltn__product-item-2 .product-img img {
    background-color: var(--section-bg-1); }

.ltn__product-item-2 .product-price {
    font-size: 14px; }

.ltn__product-item-2 .product-price del {
    opacity: 1;
    color: var(--red);
    font-size: 13px; }

.ltn__product-item-2:hover .product-img img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1); }

.ltn__product-item .add-to-cart {
    width: auto;
    text-transform: uppercase; }
.ltn__product-item .add-to-cart button {
    padding: 0 15px; }
.ltn__product-item .add-to-cart span {
    font-size: 12px;
    line-height: 1; }

/* product-item-3 */
.ltn__product-item-3 {
    border: 2px solid;
    border-color: var(--border-color-8);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s; }
.ltn__product-item-3 .product-img::before {
    display: none; }
.ltn__product-item-3 .product-info {
    padding: 25px 30px 15px; }
.ltn__product-item-3 .product-price {
    font-size: 14px;
    color: var(--ltn__secondary-color);
    font-weight: 700; }
.ltn__product-item-3 .product-price del {
    font-size: 13px;
    opacity: 0.6; }
.ltn__product-item-3 .product-info-brief {
    border-top: 2px solid;
    border-color: var(--border-color-8);
    margin-bottom: 15px;
    max-width: 400px; }
.ltn__product-item-3 .product-info-brief ul {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
.ltn__product-item-3 .product-info-brief ul li {
    list-style: none;
    display: inline-block;
    font-size: 14px;
    font-weight: 700; }
.ltn__product-item-3 .product-info-brief ul li i {
    color: var(--ltn__secondary-color);
    margin-right: 5px; }
.ltn__product-item-3:hover {
    -webkit-box-shadow: var(--ltn__box-shadow-1);
    box-shadow: var(--ltn__box-shadow-1); }
.ltn__product-item-3:hover .product-hover-action {
    top: 70%; }

/* product-item-4 */
.ltn__product-item-4 {
    -webkit-box-shadow: var(--ltn__box-shadow-4);
    box-shadow: var(--ltn__box-shadow-4);
    border: 1px solid;
    border-color: var(--border-color-13);
    background-color: var(--white); }
.ltn__product-item-4 .product-img {
    position: relative; }
.ltn__product-item-4 .product-img button {
    display: block; }
.ltn__product-item-4 .product-img img {
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s; }
.ltn__product-item-4 .product-img-location-gallery {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 30px 15px;
    margin: 0;
    background: var(--gradient-color-5); }
.ltn__product-item-4 .product-img-location-gallery ul {
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2; }
.ltn__product-item-4 .product-img-location-gallery ul li {
    list-style: none;
    font-size: 14px;
    color: var(--white); }
.ltn__product-item-4 .product-img-location-gallery .product-img-gallery {
    margin-left: 10px; }
.ltn__product-item-4 .product-img-location-gallery .product-img-gallery ul li {
    display: inline-block;
    width: 42px;
    height: 30px;
    line-height: 30px;
    background-color: rgba(255, 255, 255, 0.3);
    margin-right: 5px;
    text-align: center; }
.ltn__product-item-4 .product-img-location-gallery .product-img-gallery ul li button {
    display: block; }
.ltn__product-item-4 .product-img-location-gallery .product-img-gallery ul li:last-child {
    margin-right: 0; }
.ltn__product-item-4 .product-info {
    padding: 30px 30px 1px; }
.ltn__product-item-4 .product-price {
    font-size: 18px;
    font-family: var(--ltn__heading-font);
    font-weight: 600;
    color: var(--ltn__secondary-color);
    margin-bottom: 5px; }
.ltn__product-item-4 .product-price label {
    font-weight: 400;
    font-size: 14px; }
.ltn__product-item-4 .product-title {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600; }
.ltn__product-item-4 .product-description p {
    font-size: 14px;
    margin-bottom: 15px; }
.ltn__product-item-4 .product-info-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-top: 1px solid;
    border-color: var(--border-color-1);
    padding: 20px 30px 30px; }
.ltn__product-item-4 .product-hover-action {
    position: relative;
    opacity: 1;
    visibility: visible;
    -webkit-transform: inherit;
    -ms-transform: inherit;
    transform: inherit;
    line-height: 1; }
.ltn__product-item-4 .product-hover-action ul {
    -webkit-box-shadow: none;
    box-shadow: none; }
.ltn__product-item-4 .product-hover-action ul li {
    margin-right: 8px;
    height: 36px;
    width: 36px;
    line-height: 42px;
    border-right: 0;
    font-size: 16px;
    background-color: var(--section-bg-1);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s; }
.ltn__product-item-4 .product-hover-action ul li button {
    background-color: transparent; }
.ltn__product-item-4 .product-hover-action ul li:hover {
    background-color: var(--ltn__secondary-color);
    color: var(--white); }
.ltn__product-item-4:hover .product-img img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1); }
.ltn__product-item-4:hover .product-img::before {
    display: none; }

.real-estate-agent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
.real-estate-agent .agent-img {
    max-width: 40px;
    margin-right: 12px; }
.real-estate-agent .agent-img img {
    border-radius: 100%; }
.real-estate-agent .agent-brief h6 {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 600; }
.real-estate-agent .agent-brief small {
    font-size: 12px; }

/* product-item-5 */
.ltn__product-item-5 {
    margin-top: 0; }
.ltn__product-item-5 .product-img {
    margin-top: 0; }
.ltn__product-item-5 .product-img button {
    display: block; }
.ltn__product-item-5 .product-info {
    margin-top: 0; }
.ltn__product-item-5 .product-info-bottom {
    padding: 20px 30px 15px; }
.ltn__product-item-5 .product-badge {
    position: inherit;
    margin-bottom: 15px; }
.ltn__product-item-5 .product-badge li {
    font-size: 16px;
    background-color: transparent;
    color: var(--ltn__secondary-color);
    padding: 0; }
.ltn__product-item-5 .product-img-location ul {
    padding: 0;
    margin-bottom: 0; }
.ltn__product-item-5 .product-img-location ul li {
    list-style: none;
    font-size: 14px; }
.ltn__product-item-5 .product-img-location ul li i {
    color: var(--ltn__secondary-color);
    padding-left: 0; }
.ltn__product-item-5 .ltn__plot-brief {
    padding: 0;
    margin-bottom: 20px; }
.ltn__product-item-5 .ltn__plot-brief li {
    list-style: none;
    display: inline-block;
    margin-right: 10px;
    font-size: 14px; }
.ltn__product-item-5 .ltn__plot-brief li:last-child {
    margin-right: 0; }
.ltn__product-item-5 .ltn__plot-brief li span {
    font-weight: 700; }
.ltn__product-item-5 .real-estate-agent {
    position: absolute;
    top: 20px;
    right: 20px;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s; }
.ltn__product-item-5 .real-estate-agent .agent-img {
    max-width: 50px; }
.ltn__product-item-5 .real-estate-agent .agent-img img {
    border: 3px solid;
    border-color: var(--border-color-1); }
.ltn__product-item-5 .product-hover-action {
    text-align: left;
    margin-bottom: 25px; }

.ltn__product-list-view .ltn__product-item-5 {
    padding: 30px 30px 30px; }
.ltn__product-list-view .ltn__product-item-5 .real-estate-agent {
    position: inherit;
    margin-top: 15px; }
.ltn__product-list-view .ltn__product-item-5 .product-info-bottom {
    padding: 0px 0px 0px 30px;
    border: 0; }
.ltn__product-list-view .ltn__product-item-5 .product-hover-action {
    margin-bottom: 0; }
.ltn__product-list-view .ltn__product-item-5 .ltn__plot-brief {
    margin-bottom: 5px; }
.ltn__product-list-view .ltn__product-item-5 .product-badge-price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }