.tour-details {
    background-color: var(--main-grey);
}

.tour-details__img img {
    min-width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

.accordion-button:not(.collapsed),
.accordion-button:focus {
    outline: none;
    border-color: transparent;
    box-shadow: none;
    background-color: transparent;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(0, 0, 0, .1) !important;
    color: var(--main-color) !important;
    font-weight: bold;
    transition: 0.3s ease-in-out;
    border-radius: 10px 10px 0 0 !important;
    transform: scale(1.01);
    margin-top: 20px;
}

.accordion-item:has(.accordion-button:not(.collapsed)) .accordion-body {
    transform: scale(1.01);
    transition: transform 0.3s ease-in-out;
    margin-bottom: 20px;

}

.accordion-button:not(.collapsed)::after {
    color: var(--white-color);
}

.accordion-button {
    font-size: 18px;
    overflow: hidden;
}

.accordion-header {
    border-radius: 10px !important;
}

.accordion-button::after {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background-color: var(--bs-danger);
    background-image: none !important;
    content: "\f124";
    font: var(--fa-font-solid);
    font-size: 13px;
    line-height: 30px;
    padding: 0px 8px;
}

.accordion-button.collapsed::after {
    background-color: rgba(0, 0, 0, .1);
}

.accordion-button span {
    color: var(--second-color);
    display: inline-block;
    margin-right: 15px;
    position: relative;
    z-index: 200;
}

.accordion-button.collapsed span::before {
    position: absolute;
    content: "";
    height: 0;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    background-color: transparent;
}

.accordion-button span::before {
    background-color: #0000002e;
    position: absolute;
    content: "";
    height: auto;
    width: calc(100% + 30px);
    left: -20px;
    top: -50px;
    bottom: -50px;
    border-radius: 10px 0 0 0;
    z-index: -1;
}

.tour-listing-details {
    background-color: var(--white-color);
    padding-bottom: 110px;
}

@media (max-width: 575px) {
    .tour-listing-details {
        padding-bottom: 70px;
    }
}

.tour-listing-details-right {
    padding-bottom: 110px;
}

@media (max-width: 1199px) {
    .tour-listing-details-right {
        padding-bottom: 120px;
    }
}

@media (max-width: 1199px) and (max-width: 575px) {
    .tour-listing-details-right {
        padding-bottom: 80px;
    }
}

.tour-listing-details__row {
    justify-content: center;
}

.tour-listing-details__title {
    font-size: 24px;
    text-transform: capitalize;
    line-height: 1.4;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 15px;
    color: var(--second-color);
    font-weight: 600;
}

.tour-listing-details__top-carousel-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    width: 50px;
    height: 50px;
    border-radius: 6px;
    font-size: 30px;
    background-color: var(--second-color);
    opacity: 0;
    transition: all 500ms ease;
}

@media (max-width: 1399px) {
    .tour-listing-details__top-carousel-btn {
        width: 40px;
        height: 40px;
    }
}

.tour-listing-details__top-carousel-btn:hover {
    background-color: var(--white-color);
}

.tour-listing-details__top-carousel-btn span {
    font-size: 17px;
}

@media (max-width: 1399px) {
    .tour-listing-details__top-carousel-btn span {
        font-size: 15px;
    }
}

.tour-listing-details__top-carousel-image:hover .tour-listing-details__top-carousel-btn {
    opacity: 1;
}

.tour-listing-details__destination {
    padding-top: 70px;
    padding-bottom: 75px;
    background-color: #eee;
    margin-bottom: 30px;
}

.tour-listing-details__destination-row {
    align-items: center;
}

@media (max-width: 1199px) {
    .tour-listing-details__destination-left {
        margin-bottom: 10px;
    }
}

.tour-listing-details__dastination-title {
    font-size: 30px;
    line-height: 1.4;
    margin-bottom: 16px;
    font-weight: 600;
}

.tour-listing-details__dastination-price {
    font-size: 24px;
    line-height: 1;
    margin-bottom: 0;
}

.tour-listing-details__dastination-price span:first-child {
    font-size: 30px;
    font-weight: 600;
    text-shadow: 0px 1px 4px rgb(0 0 0 / 30%);
    line-height: 1;
    margin-bottom: 0;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    -o-text-fill-color: transparent;
    -webkit-text-stroke-color: var(--turquoise-color);
    -webkit-text-stroke-width: 2px;
}

.tour-listing-details__dastination-person {
    position: relative;
    top: -1px;
    font-size: 18px;
    color: #736D75;
    margin-left: 4px;
}

.tour-listing-details__destination-right {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-left: 75px;
}

@media (max-width: 1399px) {
    .tour-listing-details__destination-right {
        padding-left: 0;
    }
}



.tour-listing-details__destination-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.tour-listing-details__destination-info i {
    font-size: 30px;
    color: var(--second-color);
}

.tour-listing-details__destination-info-top {
    font-size: 14px;
    color: #736D75;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 8px;
}

.tour-listing-details__destination-info-bottom {
    font-size: 16px;
    color: #2D2330;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 0;
}


.tour-listing-details__sidebar-post-box {
    border-radius: 20px;
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, .1);
    padding: 30px;
}

.tour-listing-details__sidebar-post-title {
    padding-bottom: 23px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--second-color);
}

.tour-listing-sidebar-post {
    margin: 0;
    padding: 0;
    list-style: none;
}

.tour-listing-sidebar-post__item {
    padding-top: 16px;
    padding-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

@media (max-width: 360px) {
    .tour-listing-sidebar-post__item {
        gap: 15px;
    }
}

.tour-listing-sidebar-post__item+.tour-listing-sidebar-post__item {
    border-top: 1px solid #EBE6DE;
}

.tour-listing-sidebar-post__image {
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.tour-listing-sidebar-post__image::after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: RGBA(45, 35, 48, 0.5);
    transform: scaleX(0);
    transform-origin: center;
    transform-style: preserve-3d;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.tour-listing-sidebar-post__image img {
    width: 80px !important;
    height: 80px !important;
    display: block;
    border-radius: 6px;
    object-fit: cover;
}

.tour-listing-sidebar-post__item:hover .tour-listing-sidebar-post__image::after {
    transform: scaleX(1);
}

.tour-listing-sidebar-post__price {
    line-height: 1;
    color: var(--second-color);
    margin-bottom: 0;
}

.tour-listing-sidebar-post__price i {
    color: var(--main-color);
    margin-right: 5px;
}

.tour-listing-sidebar-post__link {
    font-size: 16px;
    color: #2D2330;
    line-height: 1.4;
    text-transform: capitalize;
    margin-top: 8px;
    margin-bottom: 3px;
}

.tour-listing-sidebar-post__link a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.tour-listing-sidebar-post__link a:hover {
    background-size: 100% 1px;
}

.tour-listing-sidebar-post__link:hover {
    color: var(--second-color);
}

.tour-listing-sidebar-post__location {
    display: flex;
    align-items: flex-start;
}

.tour-listing-sidebar-post__location span {
    position: relative;
    top: 4px;
    font-size: 14px;
    color: var(--second-color);
    /* margin-right: 8px; */
}

.tour-listing-sidebar-post__location-text {
    margin-bottom: 0;
}

.tour-listing-sidebar-post__location-text i {
    margin-right: 5px;

}

/* .tour-details-package{
    position: sticky;
    top: 100px;
  } */

.tour-details-package-box input {
    position: relative;
    padding-left: 3rem;
}

.tour-details-package-box label {
    z-index: 20;
    position: absolute;
    top: -0.5rem;
    left: 1rem;
    font-size: 13px;
    background: var(--white-color);
    padding: 0 0.5rem;
}

.tour-details-package-box input[type="text"]:focus+label,
.tour-details-package-box input[type="email"]:focus+label,
.tour-details-package-box input[type="number"]:focus+label,
.tour-details-package-box textarea:focus+label,
.tour-details-package-box input[type="date"]:focus+label,
.tour-details-package-box input[type="text"]:not(:placeholder-shown)+label,
.tour-details-package-box textarea:valid+label,
.tour-details-package-box input[type="date"]:valid+label .tour-details-package-box input:not(:placeholder-shown)+label {
    top: -10px;
    left: 10px;
    font-size: 12px;
    color: var(--main-color);
}

.tour-details-package-box textarea:focus:not(:placeholder-shown)+label,
.tour-details-package-box textarea:focus:not(:empty)+label {
    top: -10px;
    left: 10px;
    font-size: 12px;
    color: var(--main-color);
}

.tour-details-package-box i {
    position: absolute;
    display: inline-block;
    font-size: 13px;
    color: var(--turquoise-color);
    top: 1rem;
    left: 15px;
    height: 100%;
    width: 15px;
}


.tour-details-package-item,
.tour-details-deals-box {
    border-radius: 20px;
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, .1);
}

.tour-details-package-item .g-recaptcha div {
    margin: auto;
}

.tour-details-package-title {
    text-align: center;
    background: rgba(0, 0, 0, .1);
    padding: 20px;
    width: 100%;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    color: var(--white-color);
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: var(--main-color);
}

.tour-details-package-box input {
    height: 50px !important;
}

.tour-details-package-box textarea {
    height: 100px;
}

.phone-number-box {
    display: flex;
    gap: 1rem;
}
.phone-number-box .tour-details-package-box:first-child {
    flex: 0 0 40%;
    .phone-code select{
        font-size: 14px !important;
    }
}
.phone-number-box .tour-details-package-box:last-child {
    flex: 0 0 60%;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="number"],
input[type="search"],
input[type="password"],
input[type="subject"] {
    background: var(--white-color);
    height: 60px;
    margin-bottom: 20px;
    color: var(--main-color);
}

.tour-details-deals-thumb img {
    width: 80px !important;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
    cursor: pointer;
}

.tour-side-price span {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font-heading);
    color: var(--main-color);
}

.related-price-box {
    position: absolute;
    bottom: 0;
    background-color: rgba(255, 255, 255, .8);
    color: var(--black-color);
    font-size: 13px;
    padding: 5px;
    border-radius: 0 5px 0 0;
}

.related-price-box span i {
    margin-right: 3px;
}

.form-control:focus {
    box-shadow: none;
    outline: 0;
}

.phone-code .telcode {
    height: 50px;
    /* width: 100px; */
}

h3.tour-details-deals-text {
    max-width: 250px;
}

h3.tour-details-deals-text a {
    color: var(--second-color);
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;

}

h3.tour-details-deals-text a:hover {
    background-size: 100% 2px;
    font-size: 18px;
}

.tour-details-package-content,
.tour-details-deals-content {
    padding: 30px;
    background: var(--white-color);
}

.tour-details-package-content {
    border-radius: 0 0 20px 20px;
}

.tour-details-deals-content {
    border-bottom: 1px solid #eee;
}

.itineraries-container,
.tour-listing-details__overview,
.include-exclude,
.tour-location,
.tour-prices,
.review-box {
    border-radius: 20px;
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, .1);
    padding: 30px;
    background-color: var(--white-color);
}

.tour-include li {
    display: block;
    margin-bottom: 1rem;
    flex: 1;
}

.tour-exclude li {
    display: block;
    margin-bottom: 1rem;
    flex: 1;
}

.tour-include ul li:before {
    display: inline-block;
    font: var(--fa-font-solid);
    content: "\f00c";
    width: 20px;
    height: 20px;
    color: var(--main-color);
    margin-right: 10px;
    font-size: 12px;
    background-color: #0165b533;
    line-height: 20px;
    border-radius: 50%;
    text-align: center;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.tour-exclude ul li:before {
    display: inline-block;
    font: var(--fa-font-solid);
    content: "\f00d";
    width: 20px;
    height: 20px;
    color: rgb(255, 110, 110);
    margin-right: 10px;
    font-size: 12px;
    background-color: #f0808054;
    line-height: 20px;
    border-radius: 50%;
    text-align: center;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.tour-details__img .swiper {
    width: 100%;
    height: 100%;
}

.tour-details__img .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.tour-details__img .swiper {
    width: 100%;
    /* height: 300px; */
    margin-left: auto;
    margin-right: auto;
}

.tour-details__img .swiper-slide {
    background-size: cover;
    background-position: center;
}

.tour-details__img .tour-big-swiper {
    height: 80%;
    width: 100%;
}

.tour-details__img .tour-big-swiper img {
    height: 500px !important;
    min-width: 100%;
}

.tour-details__img .thumbs-swiper {
    height: 20%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 10px 0;
}

.tour-details__img .thumbs-swiper .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
}

.tour-details__img .thumbs-swiper .swiper-slide-thumb-active {
    opacity: 1;
}

.tour-details__img .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
}

.tour-details__img .thumbs-swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 140px;
    -o-object-fit: cover;
    object-fit: cover;
}

.tour-img-preview {
    position: relative;
    width: 100%;
}

.tour-img-preview::before {
    position: absolute;
    content: "\f14e";
    font: var(--fa-font-solid);
    height: 50px;
    width: 50px;
    top: 20px;
    left: 20px;
    background-color: #0000006b;
    color: var(--white-color);
    line-height: 48px;
    border-radius: 5px;
}

.tour-details__img .swiper-button-prev,
.tour-details__img .swiper-button-next {
    background: rgba(255, 255, 255, 0.5);
    padding: 20px;
    color: var(--second-color);
    border-radius: 50%;
    font-size: 16px !important;
    backdrop-filter: blur(10px);
}

.tour-details__img .swiper-button-prev {
    left: 0;
    border-radius: 0 20px 20px 0;
}

.tour-details__img .swiper-button-next {
    right: 0;
    border-radius: 20px 0 0 20px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 16px;
    font-weight: 600;
}

.tour-details__img .swiper-slide-active {
    -webkit-animation: zoomIn;
    animation: zoomIn;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    animation-delay: -50ms;
}

.tour-prices-table {
    padding: 20px;
    box-shadow: var(--boxShadow);
    margin-top: 20px;
}

.tour-prices-table thead tr th,
.tour-prices-table tbody tr th,
.tour-prices-table tbody tr td {
    padding: 1rem;
}

.tour-prices-table thead tr th {
    color: var(--second-color);
    font-family: var(--font-heading);
    font-size: 18px;
}

.tour-prices-table tbody tr th {
    color: var(--second-color);
    font-family: var(--font-heading);
    font-size: 18px;
}

.tour-prices-table tbody tr td {
    color: var(--main-color);
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
}


.hotel-card {
    padding: 1rem;
    background: var(--main-grey) !important;
    border-radius: 10px;
    box-shadow: var(--boxShadow);
    border: 1px solid #eee;
}

.hotel-card a {
    display: inline-block;
    width: 100%;
    height: 100%;
    padding-bottom: 20px;
    position: relative;
}

.hotel-card img {
    border-radius: 10px;
    min-width: 100%;
    height: 150px;
}

.hotel-details {
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, .5);
    width: 100%;
    text-align: center;
    margin: auto;
    backdrop-filter: blur(5px);
    left: 0;
    padding: 0.5rem;
    border-radius: 0 0 10px 10px;
}

.hotel-card h3 {
    text-align: center;
    color: var(--white-color);
    margin-bottom: 5px;
}

.hotel-rating span {
    color: var(--second-color);
}

.tour-review-wrapper {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    padding-top: 20px;
}

.tour-review-wrapper:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.tour-review-wrapper .media {
    display: flex;
    align-items: start;
}

@media (max-width: 575.98px) {
    .tour-review-wrapper .media {
        flex-wrap: wrap;
        gap: 15px;
    }
}

.tour-details-rating-wrapper:first-child {
    flex-basis: 30%;
}

.tour-details-rating-wrapper:last-child {
    flex-basis: 70%;
}

.tour-review-wrapper .thumbnail a {
    display: inline-block;
}

.tour-review-wrapper .thumbnail a img {
    display: inline-block;
    max-height: 83px;
    min-width: 83px;
    object-fit: cover;
    border-radius: 100%;
}

.tour-review-wrapper .media-body {
    padding-left: 20px;
    width: 100%;
}

@media (max-width: 575.98px) {
    .tour-review-wrapper .media-body {
        padding-left: 0;
    }
}

.tour-review-wrapper .content {
    height: 90px;
    overflow: hidden;
}

.tour-review-wrapper .content .description {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tour-review-wrapper .author-info .title {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tour-review-wrapper .author-info .title:hover i {
    color: var(--bd-primary);
}

.tour-review-wrapper .author-info .title i {
    color: rgba(129, 129, 129, 0.5);
    transition: all 0.2s linear;
}

.tour-review-wrapper .bd-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.tour-review-wrapper .has-seperator {
    position: relative;
}

.tour-review-wrapper .has-seperator::before {
    position: absolute;
    content: " ";
    width: 1px;
    height: 14px;
    right: -10px;
    top: 50%;
    background: rgba(129, 129, 129, 0.2);
    transform: translateY(-50%);
}

.tour-review-wrapper .bd-meta li {
    list-style: none;
    font-size: 14px;
    color: #333;
    margin-right: 20px;
}

.tour-review-wrapper .rating a i {
    color: var(--second-color);
}

.tour-review-wrapper .description {
    margin-bottom: 10px;
    margin-top: 10px;
}

.price-title {
    color: var(--bd-primary);
}

.price-title span {
    color: var(--main-color);
    font-size: 16px;
    font-weight: 500;
}

.rating-box {
    border: 1.5px solid #eee;
    /* width: 165px; */
    text-align: center;
    padding: 30px 0;
    /* height: 165px; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 50px;
    box-shadow: var(--boxShadow);
    border-radius: 10px;
}

.rating-box .rating-number {
    font-size: 67px;
    line-height: 67px;
    color: var(--main-color);
    font-weight: 600;
    font-family: var(--font-heading);
}

a.hover-flip-item-wrapper {
    color: inherit;
    font-size: 22px;
    font-weight: 600;
}

.rating-box .rating {
    margin-top: 6px;
}

.rating-box .rating a i {
    font-size: 13px;
    color: var(--second-color);
}

.rating-box .sub-title {
    font-size: 14px;
    color: var(--main-color);
}

.tour-details-star-review-box {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.tour-details-star-review-box p {
    margin-bottom: 10px;
}

.tour-vista-ratings-two {
    display: flex;
    align-items: center;
    gap: 2px;
}

.tour-vista-ratings-two i {
    font-size: 16px;
    color: var(--second-color);
    transition: all 500ms ease;
}

.tour-vista-ratings-two i.hover,
.tour-vista-ratings-two i.active {
    color: var(--main-color);
}

.post-comment-form {
    border-top: 1px solid #ddd;
    padding-top: 20px;
    margin-top: 20px;
}

.single-progress-bar {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 15px;
    position: relative;
}

.single-progress-bar .rating-text {
    color: var(--main-color);
    font-weight: 600;
    flex-basis: 2%;
}

.single-progress-bar .progress {
    background-color: #f7f3ff;
}

.progress {
    width: 100%;
    border-radius: 0;
    height: 18px;
}

.progress .progress-bar.bg-1 {
    background-color: #07bb98;
}

.progress .progress-bar.bg-2 {
    background-color: #a5e562;
}

.progress .progress-bar.bg-3 {
    background-color: #ddef08;
}

.progress .progress-bar.bg-4 {
    background-color: #ffc107;
}

.progress .progress-bar.bg-5 {
    background-color: #ff6125;
}

.single-progress-bar .value-text {
    color: var(--second-color);
    font-weight: 600;
    width: 38px;
    font-family: var(--font-heading);
}

.single-progress-bar .number {
    color: var(--main-color);
    font-weight: 500;
}

.input-box label {
    position: absolute;
    top: 1rem;
    z-index: 20;
    left: 20px;
    font-size: 13px;
    color: var(--paragraph-color);

}

.input-box label::before {
    content: "";
    width: 100%;
    top: 0;
    height: 100%;
    background: transparent;
    position: absolute;
    z-index: -1
}

.input-box input:focus {
    margin-bottom: 20px;
}

.input-box input[type="date"]:focus+label,
.input-box input[type="date"]:valid+label,
.input-box input[type="number"]:focus+label,
.input-box input:not(:placeholder-shown)+label,
.input-box input[type="email"]:focus+label,
.input-box input[type="text"]:focus+label,
.input-box input[type="text"]:not(:placeholder-shown)+label,
.input-box textarea:focus+label,
.input-box textarea:not(:placeholder-shown)+label {
    left: 15px;
    top: -1.5rem;
    font-size: 14px;
    color: var(--white-color);
    padding: 3px 5px;
    background-color: var(--main-color);
    border-radius: 2px;
}

.hotel-card h3 {
    text-align: center;
    color: #212529;
    margin-bottom: 7px;
    position: absolute;
    bottom: -31px;
    left: 41px;
}