@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;

    font-family: "Fira Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    color: #001f35;
}

nav {
    background-color: #c2e7ff;
    box-shadow: none;
    height: 80px;
    line-height: 80px;
}

nav ul a {
    color: #001f35;
    font-weight: 600;
}

nav .brand-logo {
    height: 80px;
    display: flex;
    align-items: center;
    font-weight: 900;
    color: #001f35;
    /* color: #699f3d; */
    text-wrap: nowrap;
}

nav .brand-logo img {
    height: 50px;
    margin-right: 10px;
}

nav .sidenav-trigger {
    height: 40px;
    width: 40px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #001f35;
    border: 2px solid #001f3533;
    margin: 0;
}

.breadcrumbs {
    background-color: transparent;
    height: 60px;
    line-height: 60px;
}

.breadcrumbs a {
    color: #525252;
    font-style: italic;
}

.breadcrumb:last-child {
    color: #525252;
}

.breadcrumbs .breadcrumb {
    font-size: 0.9rem;
}

.breadcrumb:before {
    content: '/';
    color: #c4c4c4;
}

.breadcrumbs .nav-wrapper i {
    height: 60px;
    line-height: 60px;
    font-size: 0.9rem;
}

main {
    flex: 1 0 auto;
    padding-top: 20px;
}

h1.home-page-title {
    font-weight: 500;
    font-size: 2.8rem;
    margin: 40px 0;
}

h1.page-title {
    font-weight: 500;
    font-size: 2.8rem;
    margin: 0;
}

h2.content-title {
    font-weight: 500;
    font-size: 2.2rem;
    margin-bottom: 0;
}

.squiggle[_ngcontent-oau-c18] {
    position: relative;
    width: 100%;
    height: 8px;
    margin-bottom: 20px;
}

.container {
    width: 96%;
    max-width: 1280px;
}

.gradient {
    background: radial-gradient(140% 107.13% at 50% 10%,transparent 37.41%,#63e 69.27%,#fff 100%);
}

.card-price {
    font-size: 40px;
    font-weight: 700;
}

.list-line {
    height: 80px;
}

.br24 {
    border-radius: 24px;
}

.br12 {
    border-radius: 12px;
}

.card {
    box-shadow: none;
    border-radius: 24px;
    overflow: hidden;
    /* background-color: #ecf4ff; */
    transition: background-color .3s ease-in-out;
}

.card .card-image {
    width: 100%;
    aspect-ratio: 5/4;
    background-position: center;
    background-size: cover;
    border-radius: 24px 24px 0 0;
}

.person-card .card-image {
    aspect-ratio: 1/1;
}

.card .card-content {
    position: relative;
    margin-top: -40px;
    padding: 24px;
    border-radius: 0;
    height: 160px;
    background-color: #ecf4ff;
    border-radius: 40px 0 0 0;
    transition: 0.5s;
}

.card .card-content .card-arc {
    width: 80px;
    height: 80px;
    position: absolute;
    bottom: 100%;
    right: 0;      
    z-index: 1;
}

.card .card-content path {
    fill: #ecf4ff;
    d: path("M 40 80 c 22 0 40 -22 40 -40 v 40 Z");
    transition: 0.5s;
}  

.card:hover .card-content {
    background-color: #c4eed0;
    margin-top: -60px;
    height: 180px;
}

.card:hover .card-content path {
    fill: #c4eed0;
}  

.card .card-content-price {
    color: white;
    font-weight: 500;
    font-size: 1.4rem;
    background-color: #001f358a;
    padding: 4px 24px;
    border-radius: 50px;
    position: absolute;
    top: 20px;
    right: 20px;
}

.card.card-user-page .card-content {
    height: 110px;
}

.card.card-user-page:hover .card-content {
    background-color: #c4eed0;
    margin-top: -80px;
    height: 150px;
}

.person-card .card-content {
    border-radius: 40px 40px 0 0;;
}

.card-no-person .card-content {
    height: 132px;
}

.card .card-content .title {
    font-size: 1.4rem;
    color: #001f35;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 20px;
}

.card .card-content .chip {
    background-color: transparent;
}

.user-title {
    font-size: 2rem;
}

.user-avatar {
    border-radius: 24px;
}

.user-link  {
    box-shadow: none;
    border-radius: 24px;
    padding: 24px;
    overflow: hidden;
    background-color: #f8fafd;
    transition: background-color .3s ease-in-out;
    color: #001f35;
    font-weight: 500;
}

.user-link:hover {
    background-color: #c4eed0;
}

.user-link .avatar {
    max-width: 100px;
    margin-right: 20px;
    
}

.user-link .title {
    font-size: 20px;
}

.filter {
    font-weight: 400;
    font-style: italic;
    margin-left: -8px;
}

.filter > i {
    margin-right: 10px;
}

.aside-menu {
    border-left: 2px solid #e0e0e0;
    padding-left: 20px !important;
}

.aside-menu li a {
    display: flex;
    align-items: center;
    height: 56px;
    line-height: 1;
    margin: 0 0 16px;
    padding: 0 24px;
    border-radius: 100px;
    color: #001f35;
    font-weight: 500;
}

.aside-menu li a img {
    height: 32px;
    margin-right: 10px;
}

.aside-menu li a:hover {
    background-color: #eff1f4;
}

.aside-menu li.active a {
    background-color: #c4eed0;
}

.aside-mobile-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.aside-mobile-menu a {
    height: 60px;
    width: 60px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.aside-mobile-menu li.active a {
    border-color: #c4eed0;
}

.aside-mobile-menu a img {
    height: 32px;
    margin: 0 10px;
}

.mt10 {
    margin-top: 10px;
}

.button {
    padding: 18px 32px;
    display: inline-block;
    border-radius: 9px;
    background-color: #c4eed0;
    color: #001f35;
}

.button-blue {
    background-color: #c2e7ff;
}

.modal-phone {
    width: 400px;
    border-radius: 16px;
}

.modal-phone strong {
    font-size: 2rem;
    font-weight: 700;
}

.info-list {
    border-left: 2px solid #e0e0e0;
    padding-left: 20px !important;
}

.info-list li  {
    display: flex;
    align-items: flex-start;
    line-height: 1;
    margin: 0 0 20px;
    color: #001f35;
    font-weight: 500;
    flex-direction: column;
    justify-content: center;
}

.info-list li b {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 0.9rem;
    color: #9fc5aa;
}

.content {
    text-align: justify;
    line-height: 1.6;
    h3 {
        font-size: 2rem;
        font-weight: 500;
    }
    ul {
        li {
            position: relative;
            padding-left: 16px;
            &::before {
                content: "";
                display: block;
                position: absolute;
                width: 6px;
                height: 6px;
                left: 0px;
                top: 9px;
                border-radius: 50%;
                background-color: #9fc5aa;
            }
        }
    }
}


.page-footer {
    padding-top: 20px;
    color: #001f35;
    background-color: #d7ccc8;
    margin-top: 40px;
}

.page-footer a {
    color: #001f35; 
    padding-bottom: 2px;
    border-bottom: dashed 1px transparent;
    transition: 0.5s;
}

.page-footer a:hover {
    border-color: #001f35;
}

.page-footer .footer-copyright {
    color: #001f35;
}


@media only screen and (max-width: 600px) {
    nav .nav-wrapper {
        display: flex;
        align-items: center;
        height: 80px;
    }

    nav .brand-logo img {
        height: 30px;
    }

    nav .sidenav-trigger i {
        font-size: 20px;
    }

    h1.page-title {
        font-size: 2rem;
        margin-top: 20px;
    }
    
}

/* @media only screen and (min-width: 601px) {
    .breadcrumbs .nav-wrapper i {
        height: 60px;
        line-height: 60px;
        color: #699f3d;
    }
} */



/*detail slider*/
.det-slider {
    position: relative;
    padding-left: 35px;
    padding-right: 35px;
}


.slider-for__item {
    opacity: 0;
}

.slider-for__item a {
    display: block;
    width: 100%;
    padding-bottom: 65%;
    outline: none !important;
}

.slider-for__item img {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    max-width: calc(100% - 5px);
    max-height: 100%;
    border-radius: 24px;
}

.slider-for__prev {
    position: relative;
}

.slider-for__next {
    position: relative;
}


.slider-for__next,
.slider-for__prev {
    width: 20px;
    height: 20px;
    position: absolute;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 12px;
    margin-right: 12px;
    z-index: 60;
}

.slider-for__prev {
    left: 0;
}

.slider-for__next {
    right: 0;
}

.slider-for__prev:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(/assets/img/arr-left.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.slider-for__next:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(/assets/img/arr-right.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.catalog.detail .galery .inner {
    padding-left: 0;
    padding-right: 0;
}


.det-slider-nav__cont {
    max-width: 210px;
    margin: 0 auto;
    margin-top: 30px;
    overflow: hidden;
}

.slider-nav {
    max-width: 170px;
    margin: 0 auto;
}

.det-slider-nav--smll .det-slider-nav__cont {
    max-width: 170px;
}

.det-slider-nav--smll .slick-track {
    transform: translate3d(0px, 0px, 0px) !important;
}


.slider-nav__item.slick-current {
    opacity: 0.2;
}

.slider-nav__item {
    text-align: center;
    width: 100%;
    aspect-ratio: 3/2;
    background-repeat: no-repeat;
    background-size:cover;
    background-position: center;
    border: 2px solid transparent;
    margin-right:20px;
    border-radius: 8px;
}


.body .slider-nav ul li:before {
    display: none;
}

.slider-nav .slick-dots li {
    width: 14px;
    height: 14px;
}

.slider-nav .slick-dots li button {
    width: 14px;
    height: 14px;
}

.slider-nav .slick-dots li button:before {
    content: "";
    font-size: 0;
    background: #cad2d6;
    box-shadow: none;
    width: 8px;
    height: 8px;
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 100%;
    transform: translateX(-50%) translateY(-50%);
}

.slider-nav li.slick-active button:before {
    background: #067EEA;
    opacity: 1;
}

.slider-nav .slick-list {
    overflow: visible;
}

.det-slider-nav .popup_video {
    margin-top: 20px;
}

.slider-for__item.slick-slide {
    opacity: 1;
}

@media (max-width: 767px) {
    .det-slider {
        padding-left: 0;
        padding-right: 0;
    }

    .slider-for__arr {
        display: none !important;
    }

    .det-slider-nav .popup_video {
        display: none;
    }

    .det-slider-nav {
        margin-bottom: 20px;
    }

}
