@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');

:root {
    --primary-color: #021526;
    --secondary-color: #03346E;
    --accent-color: #6EACDA;
    --background-color: #f5f5f5;
    --text-color: #E2E2B6;
}

body {
    font-family: "Lexend", sans-serif !important;
    font-optical-sizing: auto;
    font-style: normal;
    letter-spacing: 1px;
    overflow-x: hidden;
}

.container-fluid {
    padding-right: 0;
    padding-left: 0;
}

.row {
    margin-right: 0;
    margin-left: 0;
}

/* ORDER DETAIL PADA TAGIHAN */
.order_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px; /* Jarak antara header dan tabel */
}

/* css card figure feature */
.figure_card {
    margin: 0;
    min-height: 100vh;
    display: grid;
    grid-auto-flow: column;
    place-content: center;
    background: #e3f6ff;
}
figure {
    display: grid;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
}
figure > * {
    grid-area: 1/1;
    transition: .4s;
}
figure figcaption {
    display: grid;
    align-items: end;
    color: #0000;
    padding: .75rem;
    background: var(--c,#0009);
    clip-path: inset(0 var(--_i,100%) 0 0);
    -webkit-mask:
        linear-gradient(#000 0 0),
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    -webkit-mask-clip: text, padding-box;
    margin: -1px;
}
figure:hover figcaption{
    --_i: 0%;
}
figure:hover img {
    transform: scale(1.2);
}
@supports not (-webkit-mask-clip: text) {
figure figcaption {
    -webkit-mask: none;
    color: #fff;
}
}


/* line 2, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_extends.scss */
.btn_2,
.form-contact .form-group .btn_1 i {
    /* background-image: linear-gradient(16deg, #ff005a 0%, #ff5d2d 64%, #ffba00 100%); */
    /* background-image: linear-gradient(16deg, #31511E 0%, #859F3D 64%, #e0fb75 100%); */
    background-color: transparent;
    border: 2px solid #948979;
    color: #948979;
    border-radius: 35px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn_2:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: white;
    color: #000;
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    color: #333;
}


/* Animasi pop-up */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}




/* CAROUSEL */
.slideshow-container {
    margin: auto;
    max-width: 70.5rem;
    /* INI */
    position: relative;
    padding: 0px;
    margin-top: 140px;
}

/* Hide the images by default */
.mySlides {
    display: none;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.active,
.dot:hover {
    background-color: #717171;
}

/* Fading animation */
.fade {
    animation-name: unset;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: 0.4;
    }

    to {
        opacity: 1;
    }
}

/* END CAROUSEL */


/* line 4, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_common.scss */
body {
    padding: 0;
    margin: 0;
    font-size: 14px;
    /* background-color: #e9eed9; */
}

/* line 15, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_common.scss */
input:hover,
input:focus {
    outline: none !important;
}

/* line 24, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_common.scss */
.section_padding {
    padding: 140px 0px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {

    /* line 24, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_common.scss */
    .section_padding {
        padding: 100px 0px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

    /* line 24, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_common.scss */
    .section_padding {
        padding: 70px 0px;
    }
}

@media (max-width: 576px) {

    /* line 24, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_common.scss */
    .section_padding {
        padding: 70px 0px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {

    /* line 24, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_common.scss */
    .section_padding {
        padding: 70px 0px;
    }
}

/* line 64, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_common.scss */
.padding_top {
    padding-top: 140px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {

    /* line 64, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_common.scss */
    .padding_top {
        padding-top: 100px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

    /* line 64, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_common.scss */
    .padding_top {
        padding-top: 70px;
    }
}

@media (max-width: 576px) {

    /* line 64, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_common.scss */
    .padding_top {
        padding-top: 70px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {

    /* line 64, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_common.scss */
    .padding_top {
        padding-top: 70px;
    }
}

/* line 84, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_common.scss */
a {
    text-decoration: none;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

/* line 88, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_common.scss */
a:hover {
    outline: none;
    text-decoration: none;
}

/* line 94, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_common.scss */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

/* line 105, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_common.scss */
p {
    line-height: 2;
    font-size: 15px;
    margin-bottom: 0px;
    color: #000;
    font-weight: 300;
}

/* line 114, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_common.scss */
h2 {
    font-size: 44px;
    line-height: 28px;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.222;
}

@media (max-width: 576px) {

    /* line 114, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_common.scss */
    h2 {
        font-size: 22px;
        line-height: 25px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {

    /* line 114, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_common.scss */
    h2 {
        font-size: 24px;
        line-height: 25px;
    }
}

/* line 134, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_common.scss */
h3 {
    font-size: 24px;
    line-height: 25px;
}

@media (max-width: 576px) {

    /* line 134, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_common.scss */
    h3 {
        font-size: 20px;
    }
}

/* line 144, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_common.scss */
h5 {
    font-size: 18px;
    line-height: 22px;
}

/* line 149, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_common.scss */
img {
    max-width: 100%;
}

/* line 153, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_common.scss */
a:focus,
.button:focus,
button:focus,
.btn:focus {
    text-decoration: none;
    outline: none;
    box-shadow: none;
    -webkit-transition: 1s;
    transition: 1s;
}

/* line 163, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_common.scss */
.section_tittle {
    margin-top: 8rem;
    margin-bottom: 5rem;
}

@media (max-width: 991px) {

    /* line 163, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_common.scss */
    .section_tittle {
        margin-bottom: 20px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {

    /* line 163, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_common.scss */
    .section_tittle {
        margin-bottom: 40px;
    }
}

/* line 174, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_common.scss */
.section_tittle h2 {
    font-size: 36px;
    color: #1a1a1a;
    line-height: 27px;
    font-weight: 700;
    position: relative;
    margin-bottom: 28px;
}

@media (max-width: 576px) {

    /* line 174, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_common.scss */
    .section_tittle h2 {
        font-size: 25px;
        line-height: 35px;
        margin-bottom: 15px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {

    /* line 174, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_common.scss */
    .section_tittle h2 {
        font-size: 25px;
        line-height: 35px;
        margin-bottom: 15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

    /* line 174, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_common.scss */
    .section_tittle h2 {
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 15px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {

    /* line 174, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_common.scss */
    .section_tittle h2 {
        font-size: 35px;
        line-height: 40px;
    }
}

/* line 207, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_common.scss */
.section_tittle p {
    color: #556172;
    text-transform: capitalize;
    line-height: 30px;
}

@media (max-width: 576px) {

    /* line 207, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_common.scss */
    .section_tittle p {
        margin-bottom: 10px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {

    /* line 207, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_common.scss */
    .section_tittle p {
        margin-bottom: 10px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

    /* line 207, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_common.scss */
    .section_tittle p {
        margin-bottom: 10px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {

    /* line 207, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_common.scss */
    .section_tittle p {
        margin-bottom: 10px;
    }
}

/* line 231, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_common.scss */
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* line 282, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_common.scss */
.z_index {
    z-index: 9 !important;
    position: relative;
}

@media only screen and (min-width: 1200px) and (max-width: 3640px) {

    /* line 288, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_common.scss */
    .container {
        max-width: 1170px;
    }
}

@media (max-width: 1200px) {

    /* line 294, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_common.scss */
    [class*="hero-ani-"] {
        display: none !important;
    }
}

/* line 299, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_common.scss */
.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #dddddd;
    outline: 0;
    box-shadow: none;
}

/**************** common css end ****************/
/* Main Button Area css
============================================================================================ */

/* line 38, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_button.scss */

/* line 52, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_button.scss */
.btn_3:hover {
    /* background-color: red; */

    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

/* line 57, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_button.scss */
.btn_2 {
    text-decoration: none;
    display: inline-block;
    width: 200px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    /* border-radius: 5px; */
    /* background-color: #ff3368;  */
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    text-transform: capitalize;
    background-size: 200% auto;
    text-transform: uppercase;
    box-shadow: -1.717px 8.835px 29.76px 2.24px rgba(255, 51, 104, 0.18);
}

/* line 77,  ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_button.scss */
.btn_2:hover {
    text-decoration: none;
    color: #fff !important;
    background-position: right center;
}

@media (max-width: 767px) {
    .btn_2 {
        padding: 10px 200px; /* Kurangi padding untuk layar kecil */
        line-height: 1.2; /* Sesuaikan line-height untuk layar kecil */
        font-size: 104px; /* Sesuaikan ukuran font untuk layar kecil */
    }
}

@media (max-width: 991px) {

    /* line 57, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_button.scss */
    .btn_2 {
        height: 50px;
        width: 140px;
        line-height: 50px;
    }
}

/*=================== custom button rule start ====================*/
/* line 113, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_button.scss */
.button {
    display: inline-block;
    border: 1px solid transparent;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 54px;
    border-radius: 4px;
    color: #fff;
    border: 1px solid #edeff2;
    text-transform: uppercase;
    background-color: #ff3368;
    cursor: pointer;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

@media (max-width: 767px) {

    /* line 113, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_button.scss */
    .button {
        font-size: 13px;
        padding: 9px 24px;
    }
}

/* line 132, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_button.scss */
.button:hover {
    color: #fff;
}

/* End Main Button Area css
============================================================================================ */

/**************menu part start*****************/
/* line 2, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_menu.scss */
.main_menu {
    transition: backdrop-filter 0.3s ease, background 0.3s ease;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
    background-color: transparent;
    padding: 0;
}

.navbar .navbar-toggler {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    outline: none;
    z-index: 1000;
}

.navbar .navbar-brand {
    font-size: 1.5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.navbar .navbar-brand:hover {
    color: #556d81;
}

/* line 14, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_menu.scss */
.main_menu .navbar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}

/* line 20, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_menu.scss */
.main_menu .main-menu-item ul li .nav-link {
    color: var(--primary-color);
    transition: color 0.3s ease;
    font-size: 16px;
    padding: 36px 23px;
    line-height: 12px;
    font-weight: 400;
    line-height: normal;
}

/* line 29, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_menu.scss */
.main_menu .main-menu-item ul li .nav-link:hover {
    color: #577192;
}

.navbar .navbar-brand img {
    width: 35px;
    margin-right: 10px;
}

@media (max-width: 576px) {

    /* line 273, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_menu.scss */
    .main_menu {
        padding: 10px 0px;
    }

    .home_menu .main-menu-item {
        padding-left: 0px;
    }

    /* line 202, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_menu.scss */
    .main_menu .main-menu-item {
        text-align: left !important;
    }

    /* line 205, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_menu.scss */
    .main_menu .main-menu-item .nav-item {
        padding: 10px 15px !important;
        /* text-shadow: 3px 3px 5px rgba(207, 99, 99, 0.7);   */
        color: #000;
    }

    /* line 208, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_menu.scss */
    .main_menu .main-menu-item .nav-item .nav-link {
        padding: 5px 15px !important;
        /* text-shadow: 3px 3px 5px rgba(255, 255, 255, 0.7);   */
        color: #000;
        margin: 10px 0;
    }

    .navbar .navbar-collapse {
        background-color: #88bedadb;
        padding: 10px;
        border-radius: 5px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        position: absolute;
        width: 100%;
        left: 0;
        top: 100%; 
    }

    /* line 245, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_menu.scss */
    .navbar .navbar-brand img {
        margin: 0 auto;
        position: absolute;
        left: 0;
        right: 0;
        display: inline-block;
        /* top: 0; */
    }

    .navbar .navbar-brand {
        white-space: nowrap;
        margin-left: 3rem;
    }

    /* line 255, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_menu.scss */
    .navbar .navbar-toggler {
        border-color: transparent;
        position: absolute;
        left: 0;
        float: left;
        border: none;
        outline: none;
        margin-left: auto;
        margin-right: 10px;
    }
    /* line 267, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_menu.scss */
    .main_menu a i {
        margin-left: 13px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

    /* line 194, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_menu.scss */
    .main_menu {
        padding: 12px 0px;
    }

    /* line 198, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_menu.scss */
    .home_menu .main-menu-item {
        padding-left: 0px;
    }

    /* line 202, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_menu.scss */
    .main_menu .main-menu-item {
        text-align: left !important;
    }

    /* line 205, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_menu.scss */
    .main_menu .main-menu-item .nav-item {
        padding: 10px 15px !important;
        /* text-shadow: 3px 3px 5px rgba(207, 99, 99, 0.7);   */
        color: #000;
    }

    /* line 208, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_menu.scss */
    .main_menu .main-menu-item .nav-item .nav-link {
        padding: 5px 15px !important;
        /* text-shadow: 3px 3px 5px rgba(255, 255, 255, 0.7);   */
        color: #000;
        margin: 10px 0;
    }

    .navbar .navbar-collapse {
        background-color: #88bedadb;
        padding: 10px;
        border-radius: 5px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        position: absolute;
        width: 100%;
        left: 0;
        top: 100%; 
    }

    /* line 245, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_menu.scss */
    .navbar .navbar-brand img {
        margin: 0 auto;
        position: absolute;
        left: 0;
        right: 0;
        display: inline-block;
        /* top: 0; */
    }

    .navbar .navbar-brand {
        white-space: nowrap;
        margin-left: 3rem;
    }

    /* line 255, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_menu.scss */
    .navbar .navbar-toggler {
        border-color: transparent;
        position: absolute;
        left: 0;
        float: left;
        border: none;
        outline: none;
        margin-left: auto;
        margin-right: 10px;
    }
    /* line 267, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_menu.scss */
    .main_menu a i {
        margin-left: 13px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {

    /* line 279, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_menu.scss */
    .main_menu {
        padding: 12px 0px;
    }

    .home_menu .main-menu-item {
        padding-left: 0px;
    }

    /* line 202, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_menu.scss */
    .main_menu .main-menu-item {
        text-align: left !important;
    }

    /* line 205, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_menu.scss */
    .main_menu .main-menu-item .nav-item {
        padding: 10px 15px !important;
        /* text-shadow: 3px 3px 5px rgba(207, 99, 99, 0.7);   */
        color: #000;
    }

    /* line 208, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_menu.scss */
    .main_menu .main-menu-item .nav-item .nav-link {
        padding: 5px 15px !important;
        /* text-shadow: 3px 3px 5px rgba(255, 255, 255, 0.7);   */
        color: #000;
        margin: 10px 0;
    }

    .navbar .navbar-collapse {
        background-color: #88bedadb;
        padding: 10px;
        border-radius: 5px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        position: absolute;
        width: 100%;
        left: 0;
        top: 100%; 
    }

    /* line 245, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_menu.scss */
    .navbar .navbar-brand img {
        margin: 0 auto;
        position: absolute;
        left: 0;
        right: 0;
        display: inline-block;
        /* top: 0; */
    }

    .navbar .navbar-brand {
        white-space: nowrap;
        margin-left: 3rem;
    }

    /* line 255, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_menu.scss */
    .navbar .navbar-toggler {
        border-color: transparent;
        position: absolute;
        left: 0;
        float: left;
        border: none;
        outline: none;
        margin-left: auto;
        margin-right: 10px;
    }
    /* line 267, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_menu.scss */
    .main_menu a i {
        margin-left: 13px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {

    /* line 20, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_menu.scss */
    .main_menu .main-menu-item ul li .nav-link {
        padding: 35px 20px;
    }
}

/* line 99, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_menu.scss */
.main_menu .form-control:focus {
    box-shadow: none;
}

/* line 103, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_menu.scss */
.main_menu .active_color {
    color: #f5790b !important;
}

/* line 107, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_menu.scss */
.main_menu a i {
    color: #000;
    position: relative;
    z-index: 1;
    font-size: 15px;
    margin-left: 30px;
}

/* line 116, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_menu.scss */
.main_menu .cart .dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border: 0px solid transparent;
}

/* line 124, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_menu.scss */
.main_menu .cart i {
    color: #000;
    position: relative;
    z-index: 1;
    font-size: 15px;
}

/* line 284, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_menu.scss */
.dropdown-menu {
    border: 0px solid rgba(0, 0, 0, 0.15) !important;
    background-color: #fafafa;
}

/* line 290, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_menu.scss */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* line 297, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_menu.scss */
.home_menu .menu_btn:hover a {
    color: #fff !important;
}

/* line 302, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_menu.scss */
.home_menu .main-menu-item {
    justify-content: center !important;
}

/* line 308, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_menu.scss */
.single_page_menu .main-menu-item {
    justify-content: flex-end;
}

/* line 313, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_menu.scss */
.single_page_menu .main-menu-item ul li .nav-link:hover {
    color: #ff3368 !important;
}

/* BANNER HOME */
/* line 2, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_banner.scss */

/* BANNER VIDEO */
.banner_video {
    position: absolute;
    /* Pastikan video menjadi background */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* Letakkan video di belakang elemen lain */
    overflow: hidden;
}

@media (max-width: 768px) {
    .banner_video {
        display: none;
    }
}

.banner_video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* END BANNER */

/* Styles for tablets (768px - 1024px) */
@media (max-width: 1024px) {
    .banner_part {
        min-height: 80vh;
    }
    .banner_text h1 {
        font-size: 2rem;
    }
    .banner_text p {
        font-size: 1rem;
    }
}

/* Styles for mobile devices (up to 767px) */
@media (max-width: 767px) {
    .banner_part {
        min-height: 60vh;
    }
    .banner_text h1 {
        font-size: 1.5rem;
    }
    .banner_text p {
        font-size: 0.9rem;
    }
    .btn_2 {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
}

.banner_text_iner h1 {
    animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* line 7, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_banner.scss */
.banner_part .single_banner_slider .banner_text {
    display: table;
    width: 100%;
    min-height: 60vh; 
}

/* line 11, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_banner.scss */
.banner_part .single_banner_slider .banner_text .banner_text_iner {
    display: table-cell;
    vertical-align: middle;
    white-space: nowrap; 
}

.banner_part .single_banner_slider .banner_text .banner_text_iner p {
    color: #e4f0f5;
    font-weight: 600;
    white-space: nowrap; /* Mencegah teks turun ke baris berikutnya */
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 768px) {
    .banner_part .single_banner_slider .banner_text .banner_text_iner p {
        white-space: normal; /* Izinkan teks turun ke baris berikutnya pada layar kecil */
        word-break: break-word; /* Pecah kata jika terlalu panjang */
    }

    .banner_part .single_banner_slider .banner_text .banner_text_iner a {
        display: table-cell;
        vertical-align: middle;
        white-space: nowrap; 
    }
}

@media (max-width: 991px) {

    /* line 7, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_banner.scss */
    .banner_part .single_banner_slider .banner_text {
        height: 550px;
        white-space: nowrap; 
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {

    /* line 7, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_banner.scss */
    .banner_part .single_banner_slider .banner_text {
        height: 650px;
    }
}

/* line 21, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_banner.scss */
.banner_part .single_banner_slider .banner_text h1 {
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 35px;
    font-size: 4vw; /* Sesuaikan agar lebih responsif */
    line-height: 1.2;
}

@media (max-width: 576px) {

    /* line 21, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_banner.scss */
    .banner_part .single_banner_slider .banner_text .banner_text_iner h1 {
        font-size: 30px;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .banner_part .single_banner_slider .banner_text .banner_text_iner p {
        font-size: 18px;
        white-space: normal;
        margin-bottom: 2rem;
    }

    .banner_part .single_banner_slider .banner_text .banner_text_iner .btn_2 {
        width: 80px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {

    /* line 21, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_banner.scss */
    .banner_part .single_banner_slider .banner_text h1 {
        font-size: 30px;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .banner_part .single_banner_slider .banner_text .banner_text_iner p {
        font-size: 18px;
        white-space: normal;
        margin-bottom: 2rem;
    }

    .banner_part .single_banner_slider .banner_text .banner_text_iner .btn_2 {
        width: 140px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

    /* line 21, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_banner.scss */
    .banner_part .single_banner_slider .banner_text h1 {
        font-size: 40px;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .banner_part .single_banner_slider .banner_text .banner_text_iner p {
        font-size: 18px;
        margin-bottom: 4rem;
    }

    .banner_part .single_banner_slider .banner_text .banner_text_iner .btn_2 {
        width: 140px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {

    /* line 21, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_banner.scss */
    .banner_part .single_banner_slider .banner_text h1 {
        font-size: 40px;
        margin-bottom: 15px;
        line-height: 1.4;
    }
}

/* line 47, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_banner.scss */
.banner_part .single_banner_slider .banner_text h1 span {
    color: #ff3368;
}

/* line 51, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_banner.scss */
.banner_part .single_banner_slider .banner_text p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 70px;
    padding-right: 80px;
}

@media (max-width: 991px) {

    /* line 51, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_banner.scss */
    .banner_part .single_banner_slider .banner_text p {
        padding-right: 0;
        margin-bottom: 10px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {

    /* line 51, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_banner.scss */
    .banner_part .single_banner_slider .banner_text p {
        padding-right: 0;
    }
}

/* line 66, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_banner.scss */
.banner_part .single_banner_slider .banner_img {
    position: absolute;
    right: 0;
    top: 30%;
}

/* line 72, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_banner.scss */
.banner_part .owl-nav {
    position: absolute;
    right: -20%;
    bottom: 0;
    padding: 35px 80px;
    background-color: #fff;
}

@media (max-width: 991px) {

    /* line 72, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_banner.scss */
    .banner_part .owl-nav {
        right: 0;
        padding: 20px 40px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {

    /* line 72, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_banner.scss */
    .banner_part .owl-nav {
        right: 0;
        padding: 20px 40px;
    }
}

/* line 86, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_banner.scss */
.banner_part .owl-nav .owl-prev,
.banner_part .owl-nav .owl-next {
    text-transform: capitalize;
    margin: 0 15px !important;
    text-transform: capitalize;
    font-weight: 700 !important;
}

/* line 94, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_banner.scss */
.banner_part .owl-nav .owl-prev {
    position: relative;
}

/* line 96, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_banner.scss */
.banner_part .owl-nav .owl-prev:after {
    position: absolute;
    right: -17px;
    top: 3px;
    width: 1px;
    height: 16px;
    content: "";
    background-color: #000;
}

/* line 107, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_banner.scss */
.banner_part .btn_2 {
    box-shadow: none;
}

@media (max-width: 991px) {

    /* line 110, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_banner.scss */
    .banner_part .btn_2 .btn_2 {
        margin-top: 15px;
    }
}

/* line 115, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_banner.scss */
.banner_part .slider-counter {
    font-size: 100px;
    font-weight: 700;
    color: #cde8eb;
    position: absolute;
    right: -16%;
    top: 38%;
}

@media (max-width: 991px) {

    /* line 115, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_banner.scss */
    .banner_part .slider-counter {
        font-size: 40px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {

    /* line 115, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_banner.scss */
    .banner_part .slider-counter {
        font-size: 40px;
    }
}

@media (max-width: 991px) {

    /* line 2, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_banner.scss */
    .banner_part {
        padding: 0;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {

    /* line 135, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_banner.scss */
    .banner_part .banner_img img {
        max-width: 75%;
        float: right;
    }
}

/* END BANNER */

/* PANORAMA */

#panorama-section {
    text-align: center;
    padding: 40px 40px;
    justify-content: center;
    place-items: center;
    margin-bottom: 8rem;
}

#panorama {
    width: 80%; /* Lebar penuh */
    height: 0; /* Tinggi diatur oleh padding-bottom */
    padding-bottom: 45.25%; /* Rasio aspek 16:9 */
    position: relative;
    overflow: hidden;
}

#panorama iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive styles */

@media (max-width: 576px) {
    #panorama {
        padding-bottom: 150%; /* Rasio aspek 4:3 untuk mobile */
    }

    #panorama-section {
        padding: 20px; /* Padding lebih kecil untuk mobile */
        margin-bottom:  8rem; /* Margin lebih kecil untuk mobile */
    }

    #panorama-section .section_tittle {
        margin-bottom: 3rem;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    #panorama {
        padding-bottom: 100%; /* Rasio aspek 4:3 untuk mobile */
    }

    #panorama-section {
        padding: 20px; /* Padding lebih kecil untuk mobile */
        margin-bottom:  8rem; /* Margin lebih kecil untuk mobile */
    }

    #panorama-section .section_tittle {
        margin-bottom: 3rem;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    #panorama {
        padding-bottom: 90%; /* Rasio aspek 4:3 untuk mobile */
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    #panorama {
        padding-bottom: 90%; /* Rasio aspek 4:3 untuk mobile */
    }

    #panorama-section {
        padding: 20px; /* Padding lebih kecil untuk mobile */
        margin-bottom: 8rem; /* Margin lebih kecil untuk mobile */
    }

    #panorama-section .section_tittle {
        margin-bottom: 3rem;
    }
}


/* CARD FASILITAS */
.ag-format-container {
    width: 100%;
    max-width: 1200px; /* Sesuaikan dengan kebutuhan */
    margin: 0 auto; /* Pusatkan container */
    padding: 0 15px; /* Padding untuk mobile */
}

.ag-courses_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    flex-wrap: wrap; /* Card akan wrap ke baris baru jika tidak cukup ruang */
    gap: 2.5rem; /* Jarak antar card */
    justify-content: center; /* Pusatkan card */
}

.ag-courses_item {
    flex: 1 1 calc(33.33% - 40px); /* 3 card per baris di desktop */
    max-width: calc(33.33% - 40px); /* Maksimum lebar card */
    box-sizing: border-box; /* Padding dan border termasuk dalam lebar */
    border-radius: 28px;
    margin: 0 5px 30px;
    overflow: hidden;
}

/* Tablet: 2 card per baris */
@media (max-width: 991.98px) {
    .ag-courses_item {
        flex: 1 1 calc(50% - 20px); /* 2 card per baris */
        max-width: calc(50% - 20px);
    }
}

/* Mobile: 1 card per baris */
@media (max-width: 767.98px) {
    .ag-courses_item {
        flex: 1 1 100%; /* 1 card per baris */
        max-width: 100%;
    }
}

.ag-courses-item_link {
    text-decoration: none;
    display: block;
    padding: 30px;
    background-color: #f4fcff;
    overflow: hidden;
    position: relative;
}

.ag-courses-item_link:hover,
.ag-courses-item_link:hover .ag-courses-item_date {
    text-decoration: none;
    color: #FFF;
}

.ag-courses-item_link:hover .ag-courses-item_bg {
    -webkit-transform: scale(10);
    -ms-transform: scale(10);
    transform: scale(10);
}

.ag-courses-item_title {
    text-decoration: none;
    min-height: 20px;
    margin: 0 0 5px;
    overflow: hidden;
    font-weight: bold;
    font-size: 19px;
    color: #000000;
    z-index: 2;
    position: relative;
}

.ag-courses-item_date-box {
    font-size: 18px;
    color: #FFF;

    z-index: 2;
    position: relative;
}

.ag-courses-item_date {
    font-weight: bold;
    color: #f9b234;

    -webkit-transition: color .5s ease;
    -o-transition: color .5s ease;
    transition: color .5s ease
}

.ag-courses-item_bg {
    height: 128px;
    width: 128px;
    background-color: #f9b234;

    z-index: 1;
    position: absolute;
    top: -75px;
    right: -75px;

    border-radius: 50%;

    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.ag-courses_item:nth-child(2n) .ag-courses-item_bg {
    background-color: #3ecd5e;
}

.ag-courses_item:nth-child(3n) .ag-courses-item_bg {
    background-color: #e44002;
}

.ag-courses_item:nth-child(4n) .ag-courses-item_bg {
    background-color: #952aff;
}

.ag-courses_item:nth-child(5n) .ag-courses-item_bg {
    background-color: #cd3e94;
}

.ag-courses_item:nth-child(6n) .ag-courses-item_bg {
    background-color: #4c49ea;
}

@media only screen and (max-width: 979px) {
    .ag-courses_item {
        -ms-flex-preferred-size: calc(50% - 30px);
        flex-basis: calc(50% - 30px);
    }
    
    .ag-courses-item_title {
        font-size: 19px;
        min-height: 1rem;
        line-height: 1;
    }
}

@media only screen and (max-width: 767px) {
    .ag-format-container {
        width: 96%;
    }

}

@media only screen and (max-width: 639px) {
    .ag-courses_item {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    }
    .ag-courses-item_title {
        min-height: 1.5rem;
        line-height: 1;
        font-size: 18px;
    }
    .ag-courses-item_link {
        padding: 22px 40px;
    }
    .ag-courses-item_date-box {
        font-size: 16px;
    }
}
/* END CARD FASIL */

/* GRID */
* {
    box-sizing: border-box;
}

.row-grid {
    width: 75%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 10px;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-top: 8rem; /* Jarak antara grid foto dan elemen sebelumnya */
    height: auto; /* Sesuaikan tinggi agar tidak bertindih */
    position: relative; /* Pastikan posisi relatif */
    z-index: 0; /* Pastikan grid foto berada di bawah */
}

.column {
    flex: 1 1 calc(33.33% - 20px); /* 3 kolom untuk desktop */
    max-width: calc(33.33% - 20px);
}

@media (max-width: 576px) {
    .column {
        flex: 1 1 100%; /* 1 kolom untuk mobile */
        max-width: 100%;
    }    
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .column {
        -ms-flex: 100%;
        flex: 100%;
        max-width: 90%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .column {
        flex: 1 1 calc(50% - 20px); /* 2 kolom untuk tablet */
        max-width: calc(50% - 20px);
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .column {
        flex: 1 1 calc(50% - 20px); /* 2 kolom untuk tablet */
        max-width: 90%;
    }
}

.column img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
}



/* END GRID */

/* KATEGORI KAMAR */

/**************** FEATURE css start ****************/
/* line 3, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_feature_part.scss */
.feature_part .single_feature_post_text {
    text-align: center;
    padding: 40px;
    background-color: #163e6f;
    border-radius: 30px;
    margin-bottom: 30px;
    height: 250px;
}

.price-container {
    color: var(--text-color);
    /* White text */
    font-weight: bold;
    text-align: center;
    padding: 10px;
    display: inline-block;
    border-radius: 5px;
}

.price-container .currency {
    color: var(--text-color);
    font-size: 16px;
    vertical-align: top;
    margin-right: 5px;
}

.price-container .price {
    color: var(--text-color);
    font-size: 26px;
}

.price-container .period {
    color: var(--text-color);
    font-size: 16px;
    vertical-align: bottom;
    margin-left: 5px;
}

/* line 30, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_feature_part.scss */
.feature_part {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; 
    position: relative;
    z-index: 1; 
}

.feature_part .single_feature_post_text h3 {
    font-size: 27px;
    font-weight: 700;
    margin-top: 21px;
    color: #e0e0a7;
}

/* line 46, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_feature_part.scss */
.feature_part .single_feature_post_text .feature_btn {
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-color);
    position: absolute;
    left: 50%;
    bottom: 60px;
    transform: translateX(-50%);
    line-height: 15px;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

/* line 61, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_feature_part.scss */
.feature_part .single_feature_post_text .feature_btn i {
    font-weight: 12px;
    color: #ff3368;
    margin-left: 6px;
}

/* line 68, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_feature_part.scss */
.feature_part .single_feature_post_text img {
    position: absolute;
    bottom: 0;
    right: 15px;
}

@media (max-width: 576px) {

    /* line 68, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_feature_part.scss */
    .feature_part .single_feature_post_text {
        max-height: 230px;
        right: 0;
        left: 0;
        margin: 0 auto;
        padding: 15px 0;
    }

    .feature_part .single_feature_post_text h3 {
        font-size: 22px;
        margin-top: 10px;
    }

    .feature_part .single_feature_post_text .price-container {
        font-size: 22px;
    }

    .feature_part .single_feature_post_text a {
        font-size: 12px;
    }

    .feature_part .section_tittle h2 {
        margin-bottom: 3rem;
        font-size: 26px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {

    /* line 68, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_feature_part.scss */
    .feature_part .single_feature_post_text {
        max-height: 250px;
        right: 0;
        left: 0;
        margin: 0 auto;
        padding: 15px 0;
    }

    .feature_part .single_feature_post_text h3 {
        font-size: 22px;
    }

    .feature_part .single_feature_post_text .price-container {
        font-size: 22px;
    }

    .feature_part .single_feature_post_text a {
        margin-top: 20px;
        font-size: 12px;
    }

    .feature_part .section_tittle h2 {
        margin-bottom: 2rem;
        font-size: 26px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

    /* line 68, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_feature_part.scss */
    .feature_part .single_feature_post_text {
        max-height: 260px;
        right: 0;
        left: 0;
        margin: 0 auto;
        padding: 15px 0;
    }

    .feature_part .single_feature_post_text h3 {
        font-size: 22px;
    }

    .feature_part .single_feature_post_text .price-container {
        font-size: 22px;
    }

    .feature_part .single_feature_post_text a {
        margin-top: 20px;
        font-size: 12px;
    }

    .feature_part .section_tittle h2 {
        margin-bottom: 2rem;
        font-size: 30px;
    }

    .feature_part .section_tittle {
        margin-bottom: 2rem;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .feature_part .single_feature_post_text {
        max-height: 270px;
        right: 0;
        left: 0;
        margin: 0 auto;
        padding: 20px 0;
    }

    .feature_part .single_feature_post_text:hover .feature_btn {
        bottom: 1rem;
        opacity: 1;
        visibility: visible;
    }

    /* line 68, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_feature_part.scss */
    .feature_part .single_feature_post_text img {
        max-height: 280px;
        right: 0;
        left: 0;
        margin: 0 auto;
    }

    .feature_part .section_tittle h2 {
        font-size: 33px;
        margin-top: 5rem;
    }

}

/* line 103, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_feature_part.scss */
.feature_part .single_feature_post_text:hover .feature_btn {
    bottom: 5rem;
    opacity: 1;
    visibility: visible;
}

/***************** product list css *******************/
/* line 3, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product_list.scss */
.product_list .section_tittle {
    text-align: left !important;
}

/* line 6, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product_list.scss */
.product_list .section_tittle h2 {
    text-transform: capitalize;
}

/* line 10, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product_list.scss */
.product_list .section_tittle span {
    color: #adadad;
    font-size: 20px;
    font-weight: 700;
    margin-left: 60px;
}

/* line 20, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product_list.scss */
.product_list .owl-nav {
    position: absolute;
    right: 0;
    top: -62px;
}

@media (max-width: 991px) {

    /* line 20, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product_list.scss */
    .product_list .owl-nav {
        right: 0;
        padding: 20px 40px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {

    /* line 20, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product_list.scss */
    .product_list .owl-nav {
        right: 0;
        padding: 20px 40px;
    }
}

/* line 32, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product_list.scss */
.product_list .owl-nav .owl-prev,
.product_list .owl-nav .owl-next {
    text-transform: capitalize;
    margin: 0 15px !important;
    text-transform: capitalize;
    font-weight: 700 !important;
}

/* line 40, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product_list.scss */
.product_list .owl-nav .owl-prev {
    position: relative;
}

/* line 42, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product_list.scss */
.product_list .owl-nav .owl-prev:after {
    position: absolute;
    right: -17px;
    top: 3px;
    width: 1px;
    height: 16px;
    content: "";
    background-color: #000;
}

/* line 54, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product_list.scss */
.single_product_item {
    align-items: center;
    border-radius: 5px;
    margin-bottom: 20px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

@media (max-width: 991px) {

    /* line 58, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product_list.scss */
    .single_product_item img {
        margin-left: 30px;
        width: 100%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {

    /* line 58, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product_list.scss */
    .single_product_item img {
        margin-left: 30px;
        width: 100%;
    }
}

/* line 66, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product_list.scss */
.single_product_item .single_product_text {
    display: flex;
    padding: 32px 0;
    background-color: #8bceea;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

/* line 71, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product_list.scss */
.single_product_item .single_product_text h4 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
    margin-left: 40px;
}

/* line 77, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product_list.scss */
.single_product_item .single_product_text h3 {
    font-weight: 300;
    font-size: 18px;
}

/* line 82, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product_list.scss */
.single_product_item .single_product_text a {
    color: #ff3368;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 500;
    display: block;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

/* line 93, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product_list.scss */
.single_product_item .single_product_text a i {
    float: right;
    font-size: 18px;
    line-height: 26px;
    color: #000;
}

/* line 102, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product_list.scss */
.single_product_item:hover {
    box-shadow: 0px 10px 20px 0px rgba(0, 23, 51, 0.09);
}

/* line 105, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product_list.scss */
.single_product_item:hover .single_product_text {
    padding: 32px 32px;
}

/* line 109, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product_list.scss */
.single_product_item:hover a {
    opacity: 1;
    visibility: visible;
}

/* End Product Sidebar Area css
============================================================================================ */
/* End Cart Area css
============================================================================================ */
/* line 1340, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.checkout_area p {
    font-size: 14px;
}

/* line 1344, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.checkout_area .form-control {
    box-shadow: 0px 1px 10px 1px rgba(153, 153, 153, 0.3);
    font-size: 14px;
    height: 40px;
}

.form-control .file-upload {
    width: 100%;
    /* Full width of the parent container */
    height: 600px;
    /* Adjust height as needed */
    padding: 10px;
    /* Optional padding for more space inside */
    font-size: 16px;
    /* Adjust font size if needed */
}

/* line 1349, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.checkout_area .form-control {
    border: 1px solid #eee;
}

/* line 1352, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.checkout_area .form-control :focus {
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    outline: 0;
    box-shadow: none;
}

/* line 1361, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.checkout_area .form-control .form-control input {
    height: 50px;
}

/* line 1371, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.check_title h2 {
    font-size: 14px;
    font-weight: normal;
    background: #ecfdff;
    line-height: 40px;
    padding-left: 30px;
    margin-bottom: 0px;
}

@media (max-width: 991px) {

    /* line 1371, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
    .check_title h2 {
        line-height: 17px;
        padding: 12px;
    }
}

/* line 1384, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.check_title h2 a {
    color: #ff3368;
    text-decoration: underline;
}

/* line 1392, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.returning_customer p {
    margin-top: 15px;
    padding-left: 30px;
    margin-bottom: 25px;
}

@media (max-width: 991px) {

    /* line 1392, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
    .returning_customer p {
        padding-left: 0;
    }
}

/* line 1402, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.returning_customer .contact_form {
    max-width: 710px;
    margin-left: 15px;
}

@media (max-width: 991px) {

    /* line 1402, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
    .returning_customer .contact_form {
        margin-left: -15px;
    }
}

/* line 1408, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.returning_customer .contact_form .form-group {
    margin-bottom: 20px;
}

/* line 1411, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.returning_customer .contact_form .form-group input {
    border: 1px solid #eeeeee;
    height: 40px;
    border-radius: 3px;
    font-size: 14px;
    color: #797979;
    font-weight: normal;
}

/* line 65, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_mixins.scss */
.returning_customer .contact_form .form-group input.placeholder {
    font-size: 14px;
    color: #797979;
    font-weight: normal;
}

/* line 68, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_mixins.scss */
.returning_customer .contact_form .form-group input:-moz-placeholder {
    font-size: 14px;
    color: #797979;
    font-weight: normal;
}

/* line 71, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_mixins.scss */
.returning_customer .contact_form .form-group input::-moz-placeholder {
    font-size: 14px;
    color: #797979;
    font-weight: normal;
}

/* line 74, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_mixins.scss */
.returning_customer .contact_form .form-group input::-webkit-input-placeholder {
    font-size: 14px;
    color: #797979;
    font-weight: normal;
}

/* line 1428, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.returning_customer .contact_form .form-group .submit_btn {
    margin-top: 0px;
}

/* line 1432, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.returning_customer .contact_form .form-group .creat_account {
    display: inline-block;
    margin-left: 15px;
}

/* line 1436, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.returning_customer .contact_form .form-group .creat_account input {
    height: auto;
    margin-right: 10px;
}

/* line 1442, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.returning_customer .contact_form .form-group .lost_pass {
    display: block;
    margin-top: 20px;
    font-size: 14px;
    color: #797979;
    font-weight: normal;
}

/* line 1454, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.p_star {
    display: inline-block;
    position: relative;
}

/* line 1459, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.p_star input {
    background: #fff;
}

/* line 1466, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.p_star input:focus+.placeholder {
    display: none;
}

/* line 1470, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.p_star .placeholder {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 30px;
    z-index: 1;
}

/* line 1478, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.p_star .placeholder::before {
    content: attr(data-placeholder);
    color: #777;
}

/* line 1483, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.p_star .placeholder::after {
    content: " *";
    color: tomato;
}

/* line 1537, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.billing_details h3 {
    font-size: 18px;
    color: #2a2a2a;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

/* line 1545, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.billing_details .contact_form .form-group {
    margin-bottom: 20px;

}

/* line 1548, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.billing_details .contact_form .form-group input {
    border-radius: 3px;
    color: #797979;
}

/* line 65, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_mixins.scss */
.billing_details .contact_form .form-group input.placeholder {
    color: #797979;
}

/* line 68, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_mixins.scss */
.billing_details .contact_form .form-group input:-moz-placeholder {
    color: #797979;
}

/* line 71, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_mixins.scss */
.billing_details .contact_form .form-group input::-moz-placeholder {
    color: #797979;
}

/* line 74, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_mixins.scss */
.billing_details .contact_form .form-group input::-webkit-input-placeholder {
    color: #797979;
}

/* line 1557, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.billing_details .contact_form .form-group textarea {
    height: 150px;
    border-radius: 3px;
    margin-top: 15px;
}

/* line 1563, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.billing_details .contact_form .form-group .country_select {
    width: 100%;
}

/* line 1566, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.billing_details .contact_form .form-group .country_select span {
    color: #797979;
}

/* line 1570, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.billing_details .contact_form .form-group .country_select .list {
    width: 100%;
    border-radius: 0px;
}

/* line 1574, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.billing_details .contact_form .form-group .country_select .list li {
    font-size: 14px;
    font-weight: normal;
}

/* line 1583, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.billing_details .contact_form .form-group .creat_account #f-option2 {
    margin-right: 5px;
}

/* line 1587, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.billing_details .contact_form .form-group .creat_account #f-option3 {
    margin-right: 5px;
}

/* line 1591, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.billing_details .contact_form .form-group .creat_account a {
    color: #ff3368;
}

/* line 1599, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.order_box {
    padding: 30px;
}

/* line 1603, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.order_box h2 {
    border-bottom: 1px solid #dddddd;
    font-size: 18px;
    font-weight: 500;
    color: #2a2a2a;
    padding-bottom: 15px;
}

/* line 1613, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.order_box .list li a {
    font-size: 14px;
    color: #797979;
    font-weight: normal;
    border-bottom: 1px solid #eeeeee;
    display: block;
    line-height: 42px;
}

/* line 1621, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.order_box .list li a span {
    float: right;
}

/* line 1625, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.order_box .list li a .middle {
    float: none;
    width: 50px;
    text-align: right;
    display: inline-block;
    margin-left: 30px;
    color: #2a2a2a;
}

/* line 1637, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.order_box .list li:nth-child(4) a .middle {
    margin-left: 48px;
}

/* line 1647, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.order_box .list_2 li a {
    text-transform: uppercase;
    color: #2a2a2a;
    font-weight: 500;
}

/* line 1652, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.order_box .list_2 li a span {
    color: #797979;
    text-transform: capitalize;
}

/* line 1660, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.order_box .list_2 li:last-child a span {
    color: #2a2a2a;
}

/* line 1669, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.order_box .payment_item h4 {
    font-size: 14px;
    text-transform: uppercase;
    color: #2a2a2a;
    font-weight: 500;
    padding-left: 22px;
    position: relative;
    margin-bottom: 15px;
    margin-top: 15px;
}

/* line 1679, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.order_box .payment_item h4:before {
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid #cdcdcd;
    background: #fff;
    display: block;
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}

/* line 1693, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.order_box .payment_item h4:after {
    content: "";
    height: 4px;
    width: 4px;
    background: #fff;
    border-radius: 50%;
    display: block;
    position: absolute;
    left: 5px;
    top: 8px;
}

/* line 1705, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.order_box .payment_item h4 img {
    padding-left: 60px;
}

/* line 1710, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.order_box .payment_item p {
    background: #fff;
    padding: 20px;
}

/* line 1717, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.order_box .payment_item.active h4:before {
    background: #ff3368;
    border-color: #ff3368;
}

/* line 1725, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.order_box .creat_account {
    margin: 15px 0;
}

/* line 1728, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.order_box .creat_account label {
    padding-left: 10px;
    font-size: 12px;
    color: #2a2a2a;
}

/* line 1734, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.order_box .creat_account a {
    color: #ff3368;
}

/* line 1739, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.order-box {
    margin-top: 10px;
}

.btn_3 {
    text-decoration: none;
    width: 300px;
    /* Atur lebar tombol */
    padding: 15px 0;
    text-transform: uppercase;
    text-align: center;
    border: none;
    border-radius: 30px;
    /* Membuat sudut melengkung */
    cursor: pointer;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    display: inline-block;
    background-image: linear-gradient(16deg, #031d34 0%, #054592 64%, #5280a2 100%);
    font-size: 15px;
    font-weight: 400;
    color: #fff !important;
}


@media (max-width: 991px) {

    /* line 1739, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
    .order_box .btn_3 {
        padding: 9px 34px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {

    /* line 1739, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
    .order_box .btn_3 {
        padding: 9px 34px;
    }
}

/* End Cart Area css
============================================================================================ */
/* line 1807, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.radion_btn input[type="radio"] {
    position: absolute;
    visibility: hidden;
}

/* line 1812, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.radion_btn {
    position: relative;
    margin-top: 10px;
    margin-bottom: 15px;
}

/* line 1817, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.radion_btn img {
    position: absolute;
    right: 40px;
    top: 0px;
}

/* line 1824, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.radion_btn label {
    display: block;
    position: relative;
    font-weight: 300;
    font-size: 1.35em;
    padding: 0px 25px 21px 25px;
    height: 14px;
    z-index: 9;
    cursor: pointer;
    -webkit-transition: all 0.25s linear;
    font-weight: 500;
    color: #2a2a2a;
    font-size: 13px;
    letter-spacing: 0.25px;
    text-transform: uppercase;
}

/* line 1842, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.radion_btn .check {
    display: block;
    position: absolute;
    border: 1px solid #cdcdcd;
    border-radius: 100%;
    height: 14px;
    width: 14px;
    top: 5px;
    left: 0px;
    background: #fff;
    z-index: 5;
    transition: border 0.25s linear;
    -webkit-transition: border 0.25s linear;
}

/* line 1857, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.radion_btn .check::before {
    display: block;
    position: absolute;
    content: "";
    border-radius: 100%;
    height: 4px;
    width: 4px;
    top: 4px;
    left: 4px;
    margin: auto;
    transition: background 0.25s linear;
    -webkit-transition: background 0.25s linear;
}

/* line 1871, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.radion_btn input[type="radio"]:checked~.check {
    border: 1px solid #ff3368;
    background: #ff3368;
}

/* line 1876, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.radion_btn input[type="radio"]:checked~.check::before {
    background: #fff;
}

/* line 1880, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_product.scss */
.radion_btn input[type="radio"]:checked~label {
    color: #000;
}

/************** confirmation part css **********************/
/* line 3, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_confirmation_part.scss */
.confirmation_part .confirmation_tittle {
    text-align: center;
    margin-bottom: 35px;
}

/* line 6, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_confirmation_part.scss */
.confirmation_part .confirmation_tittle span {
    color: #ff3368;
}

/* line 11, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_confirmation_part.scss */
.confirmation_part .single_confirmation_details {
    background-color: #ceeffb;
    /* #ecfdff */
    padding: 35px 40px;
}

@media (max-width: 991px) {

    /* line 11, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_confirmation_part.scss */
    .confirmation_part .single_confirmation_details {
        margin-bottom: 15px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {

    /* line 11, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_confirmation_part.scss */
    .confirmation_part .single_confirmation_details {
        margin-bottom: 30px;
    }
}

/* line 20, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_confirmation_part.scss */
.confirmation_part .single_confirmation_details h4 {
    font-size: 18px;
    font-weight: 500;
    color: #222222;
    text-transform: capitalize;
    margin-bottom: 16px;
}

/* line 28, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_confirmation_part.scss */
.confirmation_part .single_confirmation_details ul li {
    position: relative;
    text-transform: capitalize;
    padding-left: 55%;
    margin-bottom: 3px;
}

/* line 34, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_confirmation_part.scss */
.confirmation_part .single_confirmation_details ul li p {
    position: absolute;
    left: 0;
    top: 0;
    line-height: 21px;
    color: #777777;
}

/* line 41, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_confirmation_part.scss */
.confirmation_part .single_confirmation_details ul li span {
    color: #222222;
}

/* line 47, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_confirmation_part.scss */
.confirmation_part .order_details_iner {
    margin-top: 50px;
    margin-bottom: 5rem;
    background-color: #ceeffb;
    padding: 30px 30px 15px;
    text-transform: capitalize;
}

/* line 52, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_confirmation_part.scss */
.confirmation_part .order_details_iner h3 {
    font-size: 18px;
}

/* line 55, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_confirmation_part.scss */
.confirmation_part .order_details_iner .table thead th {
    color: #222222;
    font-size: 16px;
}

/* line 59, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_confirmation_part.scss */
.confirmation_part .order_details_iner span {
    color: #777777;
}

/* line 62, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_confirmation_part.scss */
.confirmation_part .order_details_iner thead {
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
}

/* line 66, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_confirmation_part.scss */
.confirmation_part .order_details_iner tfoot {
    border-top: 1px solid #dddddd;
}

/* line 69, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_confirmation_part.scss */
.confirmation_part .order_details_iner th {
    font-weight: 500;
}

/* line 75, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_elements.scss */
.sample-text-area {
    background: #fff;
    padding: 100px 0 70px 0;
}

/* line 80, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_elements.scss */
.text-heading {
    margin-bottom: 30px;
    font-size: 24px;
}

/* line 85, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_elements.scss */
b,
sup,
sub,
u,
del {
    color: #3a5662;
}

/* line 93, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_elements.scss */
h1 {
    font-size: 36px;
}

/* line 97, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_elements.scss */
h2 {
    font-size: 30px;
}

/* line 101, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_elements.scss */
h3 {
    font-size: 24px;
}

/* line 105, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_elements.scss */
h4 {
    font-size: 18px;
}

/* line 109, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_elements.scss */
h5 {
    font-size: 16px;
}

/* line 113, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_elements.scss */
h6 {
    font-size: 14px;
}

/* line 117, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_elements.scss */
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2em;
}

/* line 127, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_elements.scss */
.typography h1,
.typography h2,
.typography h3,
.typography h4,
.typography h5,
.typography h6 {
    color: #828bb2;
}

/* line 806, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_elements.scss */
.confirm-checkbox {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    background: #f9f9ff;
    position: relative;
    cursor: pointer;
}

/* line 813, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_elements.scss */
.confirm-checkbox input {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

/* line 822, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_elements.scss */
.confirm-checkbox input+label {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 3px;
    cursor: pointer;
    border: 1px solid #f1f1f1;
}

/* line 835, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_elements.scss */
.confirm-checkbox input:checked+label {
    background: url(../img/elements/success-check.png) no-repeat center center/cover;
    border: none;
}

/* line 843, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_elements.scss */
.disabled-checkbox {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    background: #f9f9ff;
    position: relative;
    cursor: pointer;
}

/* line 850, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_elements.scss */
.disabled-checkbox input {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

/* line 859, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_elements.scss */
.disabled-checkbox input+label {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 3px;
    cursor: pointer;
    border: 1px solid #f1f1f1;
}

/* line 871, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_elements.scss */
.disabled-checkbox input:disabled {
    cursor: not-allowed;
    z-index: 3;
}

/* line 876, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_elements.scss */
.disabled-checkbox input:checked+label {
    background: url(../img/elements/disabled-check.png) no-repeat center center/cover;
    border: none;
}

/* line 884, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_elements.scss */
.primary-radio {
    width: 16px;
    height: 16px;
    border-radius: 8px;
    background: #f9f9ff;
    position: relative;
    cursor: pointer;
}

/* line 891, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_elements.scss */
.primary-radio input {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

/* line 900, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_elements.scss */
.primary-radio input+label {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid #f1f1f1;
}

/* line 913, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_elements.scss */
.primary-radio input:checked+label {
    background: url(../img/elements/primary-radio.png) no-repeat center center/cover;
    border: none;
}

/* line 921, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_elements.scss */
.confirm-radio {
    width: 16px;
    height: 16px;
    border-radius: 8px;
    background: #f9f9ff;
    position: relative;
    cursor: pointer;
}

/* line 928, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_elements.scss */
.confirm-radio input {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

/* line 937, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_elements.scss */
.confirm-radio input+label {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid #f1f1f1;
}

/* line 950, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_elements.scss */
.confirm-radio input:checked+label {
    background: url(../img/elements/success-radio.png) no-repeat center center/cover;
    border: none;
}

/* line 958, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_elements.scss */
.disabled-radio {
    width: 16px;
    height: 16px;
    border-radius: 8px;
    background: #f9f9ff;
    position: relative;
    cursor: pointer;
}

/* line 965, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_elements.scss */
.disabled-radio input {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

/* line 974, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_elements.scss */
.disabled-radio input+label {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid #f1f1f1;
}

/* line 986, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_elements.scss */
.disabled-radio input:disabled {
    cursor: not-allowed;
    z-index: 3;
}

/* line 991, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_elements.scss */
.disabled-radio input:checked+label {
    background: url(../img/elements/disabled-radio.png) no-repeat center center/cover;
    border: none;
}

/* line 999, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_elements.scss */
.default-select {
    height: 40px;
}

/* line 1001, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_elements.scss */
.default-select .nice-select {
    border: none;
    border-radius: 0px;
    height: 40px;
    background: #f9f9ff;
    padding-left: 20px;
    padding-right: 40px;
}

/* line 1008, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_elements.scss */
.default-select .nice-select .list {
    margin-top: 0;
    border: none;
    border-radius: 0px;
    box-shadow: none;
    width: 100%;
    padding: 10px 0 10px 0px;
}

/* line 1015, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_elements.scss */
.default-select .nice-select .list .option {
    font-weight: 300;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    line-height: 28px;
    min-height: 28px;
    font-size: 12px;
    padding-left: 20px;
}

/* line 1022, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_elements.scss */
.default-select .nice-select .list .option.selected {
    color: #ff3368;
    background: transparent;
}

/* line 1026, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_elements.scss */
.default-select .nice-select .list .option:hover {
    color: #ff3368;
    background: transparent;
}

/* line 1033, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_elements.scss */
.default-select .current {
    margin-right: 50px;
    font-weight: 300;
}

/* line 1037, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_elements.scss */
.default-select .nice-select::after {
    right: 20px;
}


/**************** blog part css start ****************/
@media (max-width: 576px) {

    /* line 2, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_blog_part.scss */
    .blog_part {
        padding-bottom: 50px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {

    /* line 2, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_blog_part.scss */
    .blog_part {
        padding-bottom: 50px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

    /* line 2, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_blog_part.scss */
    .blog_part {
        padding-bottom: 50px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {

    /* line 2, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_blog_part.scss */
    .blog_part {
        padding-bottom: 50px;
    }
}

/* line 15, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_blog_part.scss */
.blog_part .card {
    border: 0px solid transparent;
}

/* line 18, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_blog_part.scss */
.blog_part .blog_right_sidebar .widget_title {
    font-size: 20px;
    margin-bottom: 40px;
    font-style: inherit !important;
}

@media (max-width: 576px) {

    /* line 23, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_blog_part.scss */
    .blog_part .single-home-blog {
        margin-bottom: 20px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {

    /* line 23, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_blog_part.scss */
    .blog_part .single-home-blog {
        margin-bottom: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

    /* line 23, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_blog_part.scss */
    .blog_part .single-home-blog {
        margin-bottom: 20px;
    }
}

/* line 36, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_blog_part.scss */
.blog_part .single-home-blog .card-img-top {
    border-radius: 0px;
}

/* line 39, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_blog_part.scss */
.blog_part .single-home-blog .card {
    border-radius: 0px;
    background-color: transparent;
    position: relative;
}

/* line 44, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_blog_part.scss */
.blog_part .single-home-blog .card .card-body {
    padding: 35px 30px 23px;
    background-color: #fff;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    border: 1px solid #edeff2;
}

/* line 49, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_blog_part.scss */
.blog_part .single-home-blog .card .card-body:hover {
    box-shadow: 0px 10px 30px 0px rgba(12, 46, 96, 0.1);
    border: 1px solid transparent;
}

@media (max-width: 576px) {

    /* line 44, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_blog_part.scss */
    .blog_part .single-home-blog .card .card-body {
        padding: 15px 10px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {

    /* line 44, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_blog_part.scss */
    .blog_part .single-home-blog .card .card-body {
        padding: 15px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {

    /* line 44, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_blog_part.scss */
    .blog_part .single-home-blog .card .card-body {
        padding: 20px;
    }
}

/* line 66, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_blog_part.scss */
.blog_part .single-home-blog .card .card-body .btn_4 {
    margin-bottom: 20px;
}

/* line 70, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_blog_part.scss */
.blog_part .single-home-blog .card .card-body a {
    color: #fff;
    text-transform: capitalize;
    -webkit-transition: 0.8s;
    transition: 0.8s;
}

/* line 76, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_blog_part.scss */
.blog_part .single-home-blog .card .dot {
    position: relative;
    padding-left: 20px;
}

/* line 79, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_blog_part.scss */
.blog_part .single-home-blog .card .dot:after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    top: 5px;
    left: 0;
    background-color: #ff3368;
    border-radius: 50%;
}

/* line 90, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_blog_part.scss */
.blog_part .single-home-blog .card span {
    color: #8a8a8a;
    margin-bottom: 10px;
    display: inline-block;
    margin-top: 10px;
}

@media (max-width: 576px) {

    /* line 90, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_blog_part.scss */
    .blog_part .single-home-blog .card span {
        margin-bottom: 5px;
        margin-top: 5px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {

    /* line 90, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_blog_part.scss */
    .blog_part .single-home-blog .card span {
        margin-bottom: 5px;
        margin-top: 5px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

    /* line 90, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_blog_part.scss */
    .blog_part .single-home-blog .card span {
        margin-bottom: 5px;
        margin-top: 5px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {

    /* line 90, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_blog_part.scss */
    .blog_part .single-home-blog .card span {
        margin-bottom: 5px;
        margin-top: 5px;
    }
}

/* line 112, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_blog_part.scss */
.blog_part .single-home-blog .card h5 {
    font-weight: 600;
    line-height: 1.5;
    font-size: 19px;
    -webkit-transition: 0.8s;
    transition: 0.8s;
    text-transform: capitalize;
}

@media (max-width: 576px) {

    /* line 112, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_blog_part.scss */
    .blog_part .single-home-blog .card h5 {
        margin-bottom: 5px;
        font-size: 17px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {

    /* line 112, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_blog_part.scss */
    .blog_part .single-home-blog .card h5 {
        margin-bottom: 10px;
        font-size: 16px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

    /* line 112, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_blog_part.scss */
    .blog_part .single-home-blog .card h5 {
        margin-bottom: 10px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {

    /* line 112, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_blog_part.scss */
    .blog_part .single-home-blog .card h5 {
        margin-bottom: 10px;
        font-size: 18px;
    }
}

/* line 133, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_blog_part.scss */
.blog_part .single-home-blog .card h5:hover {
    -webkit-transition: 0.8s;
    transition: 0.8s;
    color: #ff3368;
}

/* line 139, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_blog_part.scss */
.blog_part .single-home-blog .card ul {
    border-top: 1px solid #edeff2;
    padding-top: 20px;
    margin-top: 24px;
}

/* line 143, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_blog_part.scss */
.blog_part .single-home-blog .card ul li {
    display: inline-block;
    color: #8a8a8a;
    margin-right: 39px;
}

@media (max-width: 576px) {

    /* line 143, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_blog_part.scss */
    .blog_part .single-home-blog .card ul li {
        margin-right: 10px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {

    /* line 143, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_blog_part.scss */
    .blog_part .single-home-blog .card ul li {
        margin-right: 10px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

    /* line 143, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_blog_part.scss */
    .blog_part .single-home-blog .card ul li {
        margin-right: 10px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {

    /* line 143, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_blog_part.scss */
    .blog_part .single-home-blog .card ul li {
        margin-right: 10px;
    }
}

/* line 159, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_blog_part.scss */
.blog_part .single-home-blog .card ul li span {
    margin-right: 10px;
}

/*=================== contact form start ====================*/

/* line 50, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_contact.scss */
.form-contact .form-group {
    margin-bottom: 30px;
}

/* line 52, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_contact.scss */
/* .form-contact .form-group .button-contactForm {
  color: #fff !important;
} */

/* line 55, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_contact.scss */
/* .form-contact .form-group .btn_1 {
  margin-bottom: -30px;
  border: 1px solid #999999;
  border-radius: 0;
  color: #000;
  display: flex;
  align-items: center;
} */

@media (max-width: 991px) {

    /* line 55, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_contact.scss */
    .form-contact .form-group .btn_1 {
        margin-bottom: 20px;
    }
}

/* line 66, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_contact.scss */
.form-contact .form-group .btn_1 i {
    color: #000;
    width: 50px;
    height: 50px;
    display: inline-block;
    line-height: 50px;
    margin-left: 20px;
    background-size: 200% auto;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

/* line 77, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_contact.scss */
.form-contact .form-group .btn_1:hover {
    border: 1px solid #ff3368;
    color: #ff3368 !important;
}

/* line 80, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_contact.scss */
.form-contact .form-group .btn_1:hover i {
    color: #ff3368;
    color: #fff !important;
}

/* line 88, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_contact.scss */
.form-contact .form-control {
    border: 1px solid #f0e9ff;
    border-radius: 5px;
    height: 48px;
    padding-left: 18px;
    font-size: 13px;
    background: transparent;
}

/* line 96, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_contact.scss */
.form-contact .form-control:focus {
    outline: 0;
    box-shadow: none;
}

/* line 101, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_contact.scss */
.form-contact .form-control::placeholder {
    font-weight: 300;
    color: #999999;
}

/* line 107, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_contact.scss */
.form-contact textarea {
    border-radius: 12px;
    height: 100% !important;
}

@media (max-width: 576px) {

    /* line 119, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_contact.scss */
    .contact-section .btn_1 {
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {

    /* line 127, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_contact.scss */
    .contact-section .btn_1 {
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

    /* line 135, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_contact.scss */
    .contact-section .btn_1 {
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {

    /* line 143, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_contact.scss */
    .contact-section .btn_1 {
        margin-bottom: 0px !important;
        margin-top: 0px !important;
    }
}

/*=================== contact form end ====================*/
/* Contact Success and error Area css
============================================================================================ */
/* line 156, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_contact.scss */
.modal-message .modal-dialog {
    position: absolute;
    top: 36%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%) !important;
    margin: 0px;
    max-width: 500px;
    width: 100%;
}

/* line 165, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_contact.scss */
.modal-message .modal-dialog .modal-content .modal-header {
    text-align: center;
    display: block;
    border-bottom: none;
    padding-top: 50px;
    padding-bottom: 50px;
}

/* line 171, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_contact.scss */
.modal-message .modal-dialog .modal-content .modal-header .close {
    position: absolute;
    right: -15px;
    top: -15px;
    padding: 0px;
    color: #fff;
    opacity: 1;
    cursor: pointer;
}

/* line 180, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_contact.scss */
.modal-message .modal-dialog .modal-content .modal-header h2 {
    display: block;
    text-align: center;
    padding-bottom: 10px;
}

/* line 185, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_contact.scss */
.modal-message .modal-dialog .modal-content .modal-header p {
    display: block;
}

/* line 1, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_breadcrumb.scss */
.breadcrumb_bg {
    /* background-image: url("../img/breadcrumb.png"); */
    background-color: var(--primary-color) !important;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* line 5, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_breadcrumb.scss */
.breadcrumb {
    position: relative;
    z-index: 1;
    text-align: left;
}

/* line 10, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_breadcrumb.scss */
.breadcrumb .breadcrumb_iner {
    height: 475px;
    width: 100%;
    display: table;
}

/* line 15, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_breadcrumb.scss */
.breadcrumb .breadcrumb_iner .breadcrumb_iner_item {
    display: table-cell;
    vertical-align: middle;
}

/* line 19, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_breadcrumb.scss */
.breadcrumb .breadcrumb_iner .breadcrumb_iner_item h2 {
    color: var(--text-color);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: capitalize;
}

@media (max-width: 576px) {

    /* line 19, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_breadcrumb.scss */
    .breadcrumb .breadcrumb_iner .breadcrumb_iner_item h2 {
        font-size: 25px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {

    /* line 19, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_breadcrumb.scss */
    .breadcrumb .breadcrumb_iner .breadcrumb_iner_item h2 {
        font-size: 25px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

    /* line 19, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_breadcrumb.scss */
    .breadcrumb .breadcrumb_iner .breadcrumb_iner_item h2 {
        font-size: 40px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {

    /* line 19, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_breadcrumb.scss */
    .breadcrumb .breadcrumb_iner .breadcrumb_iner_item h2 {
        font-size: 50px;
    }
}

/* line 42, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_breadcrumb.scss */
.breadcrumb .breadcrumb_iner .breadcrumb_iner_item p {
    font-size: 15px;
    color: var(--text-color);
}

/* line 47, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_breadcrumb.scss */
.breadcrumb .breadcrumb_iner .breadcrumb_iner_item span {
    margin: 0px 5px;
    font-size: 12px;
}

/* line 57, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_breadcrumb.scss */
.breadcrumb {
    margin-bottom: 0px !important;
}

/**********************footer part css*******************/
/* line 2, ../../01 cl html template/03_jun 2019/188_Aranoz shop_html/sass/_footer.scss */
/* Pastikan elemen footer memiliki jarak yang cukup */
.footer_part {
    margin-bottom: 3rem;
    overflow-x: hidden;  /* Tambahkan margin bawah untuk memberikan jarak antar elemen */
}

.footer_part .copyright_part {
    margin-top: 4rem;
}

.info_section {
    margin-left: 2rem; /* Atau margin-left: 30px; */
}

.footer_part .single_footer_part {
    margin-bottom: 30px; /* Tambahkan margin bawah untuk memberikan jarak antar elemen */
}

iframe {
    border: 0;
    border-radius: 10px;
    height: 350px;
    width: 100%;
}

.footer_part .single_footer_part h4 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 500;
}

.footer_part .single_footer_part p {
    margin-bottom: 20px;
}

.footer_part .single_footer_part .list-unstyled li {
    margin-bottom: 10px; /* Tambahkan margin bawah untuk memberikan jarak antar item */
}

.footer_part .single_footer_part .list-unstyled li a {
    text-decoration: none;
    color: #7f7f7f;
    display: inline-block;
}

.footer_part .single_footer_part .list-unstyled li a:hover {
    color: #ff3368 !important;
}

@media (max-width: 768px) {
    .footer_part {
        text-align: center;
        padding: 0 15px;
    }
    .footer_icon a {
        margin: 5px;
    }
    .info_section {
        margin-left: 0; /* Atur margin-left menjadi 0 untuk layar kecil */
    }
    .footer_part .single_footer_part {
        margin-bottom: 20px; /* Tambahkan margin bawah untuk perangkat kecil */
    }
}

@media (max-width: 576px) {
    .footer_part .single_footer_part {
        margin-bottom: 15px; /* Tambahkan margin bawah untuk perangkat sangat kecil */
    }
}

/*# sourceMappingURL=style.css.map */
