
/*.deal-wrap {*/
/*    display: none !important;*/
/*}*/


:root {
    --faq-sc-desktop-bg: #ffffff;
    --faq-sc-desktop-bg-hover: #f7f7f7;
    --faq-sc-desktop-bg-expanded: #f0f4ff;
    --faq-sc-desktop-border-color: #e0e0e0;
    --faq-sc-desktop-border-width: 1px;
    --faq-sc-desktop-question-min-height: 56px;
    --faq-sc-desktop-question-padding: 20px 52px 20px 20px;
    --faq-sc-desktop-question-padding-open: 20px 52px 20px 17px;
    --faq-sc-desktop-chevron-right: 20px;
    --faq-sc-desktop-gap-between-items: 20px;
    --faq-sc-desktop-answer-padding: 0 20px 20px 20px;
    --faq-sc-desktop-text-align: left;
    --faq-sc-desktop-btn-justify: flex-start;
   
    /* mobile */
    --faq-sc-mobile-bg: #ffffff;
    --faq-sc-mobile-bg-hover: #f7f7f7;
    --faq-sc-mobile-bg-expanded: #f0f4ff;
    --faq-sc-mobile-border-color: #e0e0e0;
    --faq-sc-mobile-border-width: 1px;
    --faq-sc-mobile-question-padding: 16px 52px 16px 16px;
    --faq-sc-mobile-question-padding-open: 16px 52px 16px 13px;
    --faq-sc-mobile-chevron-right: 20px;
    --faq-sc-mobile-gap-between-items: 0px;
    --faq-sc-mobile-answer-padding: 0 16px 16px 16px;
    --faq-sc-mobile-text-align: left;
    --faq-sc-mobile-btn-justify: flex-start;
    
    /* Common */
    --faq-sc-shared-panel-duration: 0.25s;
    --faq-sc-shared-panel-ease: ease-out;
    --faq-sc-shared-chevron-duration: 0.22s;
    --faq-sc-shared-chevron-ease: ease-out;
    --faq-sc-shared-hover-duration: 0.15s;
    --faq-sc-shared-hover-ease: ease;
    --faq-sc-shared-chevron-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23555555' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    --faq-sc-shared-chevron-size: 20px;
    --faq-sc-shared-focus-color: #000;
    --faq-sc-shared-focus-width: 3px;
    --faq-sc-shared-focus-offset: -3px;
    --faq-sc-shared-focus-radius: 2px;
    --faq-sc-shared-table-border: #d0d0d0;
    --faq-sc-shared-table-border-width: 1px;
    --faq-sc-shared-table-cell-padding: 10px 12px;
}


:is(.outer-page, .outerpage) .content_wrapper .no-gutter .simp-custom-faq-widget-in-single-container .question-part,
:is(.outer-page, .outerpage) .content_wrapper .no-gutter .simp-custom-faq-widget-in-single-container .answer-part,
.mobile .content_wrapper .no-gutter .simp-custom-faq-widget-in-single-container .question-part,
.mobile .content_wrapper .no-gutter .simp-custom-faq-widget-in-single-container .answer-part {
    height: auto !important;
}

/* ---------- desktop ------------ */

:is(.outer-page, .outerpage) .content_wrapper .no-gutter .simp-custom-faq-widget-in-single-container {
    background-color: var(--faq-sc-desktop-bg);
    padding: 30px 0;;
    display: flex;
    flex-direction: column;
}

:is(.outer-page, .outerpage) .content_wrapper .no-gutter .simp-custom-faq-widget-in-single-container-header + .simp-custom-faq-widget-in-single-container {
    padding-top: 0;
}

:is(.outer-page, .outerpage) .content_wrapper .no-gutter .simp-custom-faq-widget-in-single-container>div {
    width: 100%;
    padding: 0;
    min-height: unset;
}

:is(.outer-page, .outerpage) .content_wrapper .no-gutter .simp-custom-faq-widget-in-single-container .text-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--faq-sc-desktop-gap-between-items);
}

:is(.outer-page, .outerpage) .content_wrapper .no-gutter .simp-custom-faq-widget-in-single-container .faq-wrapper {
    border: var(--faq-sc-desktop-border-width) solid var(--faq-sc-desktop-border-color);
}

:is(.outer-page, .outerpage) .content_wrapper .no-gutter .simp-custom-faq-widget-in-single-container .faq-wrapper .question-part {
    position: relative;
    display: flex;
    align-items: center;
    min-height: var(--faq-sc-desktop-question-min-height);
    padding: var(--faq-sc-desktop-question-padding);
    cursor: pointer;
    user-select: none;
    text-align: var(--faq-sc-desktop-text-align);
    background-color: var(--faq-sc-desktop-bg);
    transition: background-color var(--faq-sc-shared-hover-duration) var(--faq-sc-shared-hover-ease);
    width: 100%;
    box-sizing: border-box;
}

:is(.outer-page, .outerpage) .content_wrapper .no-gutter .simp-custom-faq-widget-in-single-container .faq-wrapper .question-part:focus-visible {
    outline: var(--faq-sc-shared-focus-width) solid var(--faq-sc-shared-focus-color);
    outline-offset: var(--faq-sc-shared-focus-offset);
    border-radius: var(--faq-sc-shared-focus-radius);
}

:is(.outer-page, .outerpage) .content_wrapper .no-gutter .simp-custom-faq-widget-in-single-container .faq-wrapper .question-part:focus:not(:focus-visible) {
    outline: none;
}

:is(.outer-page, .outerpage) .content_wrapper .no-gutter .simp-custom-faq-widget-in-single-container .faq-wrapper .question-part::after {
    content: "";
    position: absolute;
    right: var(--faq-sc-desktop-chevron-right);
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    width: var(--faq-sc-shared-chevron-size);
    height: var(--faq-sc-shared-chevron-size);
    background-image: var(--faq-sc-shared-chevron-icon);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform var(--faq-sc-shared-chevron-duration) var(--faq-sc-shared-chevron-ease);
    flex-shrink: 0;
    pointer-events: none;
}

:is(.outer-page, .outerpage) .content_wrapper .no-gutter .simp-custom-faq-widget-in-single-container .faq-wrapper .question-part[aria-expanded="true"]::after {
    transform: translateY(-50%) rotate(180deg);
}

:is(.outer-page, .outerpage) .content_wrapper .no-gutter .simp-custom-faq-widget-in-single-container .faq-wrapper .answer-part {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows var(--faq-sc-shared-panel-duration) var(--faq-sc-shared-panel-ease);
}

:is(.outer-page, .outerpage) .content_wrapper .no-gutter .simp-custom-faq-widget-in-single-container .faq-wrapper .answer-part.faq-expanded {
    grid-template-rows: 1fr;
}

:is(.outer-page, .outerpage) .content_wrapper .no-gutter .simp-custom-faq-widget-in-single-container .faq-wrapper .answer-part>.faq-answer-inner {
    overflow: hidden;
    padding: var(--faq-sc-desktop-answer-padding);
}

:is(.outer-page, .outerpage) .content_wrapper .no-gutter .simp-custom-faq-widget-in-single-container .faq-wrapper .answer-part:not(.faq-expanded)>.faq-answer-inner {
    padding-bottom: 0;
}

:is(.outer-page, .outerpage) .content_wrapper .no-gutter .simp-custom-faq-widget-in-single-container .question-part p:empty,
:is(.outer-page, .outerpage) .content_wrapper .no-gutter .simp-custom-faq-widget-in-single-container .answer-part p:empty {
    display: none;
}

:is(.outer-page, .outerpage) .content_wrapper .no-gutter .simp-custom-faq-widget-in-single-container .faq-wrapper .answer-part .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 10px 0;
}

:is(.outer-page, .outerpage) .content_wrapper .no-gutter .simp-custom-faq-widget-in-single-container .faq-wrapper .answer-part table {
    width: 100%;
    border-collapse: collapse;
}

:is(.outer-page, .outerpage) .content_wrapper .no-gutter .simp-custom-faq-widget-in-single-container .faq-wrapper .answer-part :is(th, td) {
    padding: var(--faq-sc-shared-table-cell-padding);
    border: var(--faq-sc-shared-table-border-width) solid var(--faq-sc-shared-table-border);
}

:is(.outer-page, .outerpage) .content_wrapper .no-gutter .simp-custom-faq-widget-in-single-container .txt-wdgt-btn-wrapper {
    display: flex;
    justify-content: var(--faq-sc-desktop-btn-justify);
}

:is(.outer-page, .outerpage) .content_wrapper .no-gutter .simp-custom-faq-widget-in-single-container .faq-wrapper.faq-empty .question-part {
    cursor: default;
    pointer-events: none;
}

:is(.outer-page, .outerpage) .content_wrapper .no-gutter .simp-custom-faq-widget-in-single-container .faq-wrapper.faq-empty .question-part::after {
    display: none;
}

/* mobile */
.mobile .content_wrapper .no-gutter .simp-custom-faq-widget-in-single-container {
    background-color: var(--faq-sc-mobile-bg);
    padding: 20px 0;
    margin: 0;
}

.mobile .content_wrapper .no-gutter .simp-custom-faq-widget-in-single-container-header + .simp-custom-faq-widget-in-single-container {
    padding-top: 0;
}

.mobile .content_wrapper .no-gutter .simp-custom-faq-widget-in-single-container .text-content {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.mobile .content_wrapper .no-gutter .simp-custom-faq-widget-in-single-container .faq-wrapper {
    border: var(--faq-sc-desktop-border-width) solid var(--faq-sc-desktop-border-color);
}

.mobile .content_wrapper .no-gutter .simp-custom-faq-widget-in-single-container .faq-wrapper .question-part {
    position: relative;
    display: flex;
    align-items: center;
    padding: var(--faq-sc-mobile-question-padding);
    cursor: pointer;
    user-select: none;
    text-align: var(--faq-sc-mobile-text-align);
    background-color: var(--faq-sc-mobile-bg);
    transition: background-color var(--faq-sc-shared-hover-duration) var(--faq-sc-shared-hover-ease);
    width: 100%;
    box-sizing: border-box;
    min-height: 44px;
}

.mobile .content_wrapper .no-gutter .simp-custom-faq-widget-in-single-container .faq-wrapper .question-part:focus-visible {
    outline: var(--faq-sc-shared-focus-width) solid var(--faq-sc-shared-focus-color);
    outline-offset: var(--faq-sc-shared-focus-offset);
    border-radius: var(--faq-sc-shared-focus-radius);
}

.mobile .content_wrapper .no-gutter .simp-custom-faq-widget-in-single-container .faq-wrapper .question-part:focus:not(:focus-visible) {
    outline: none;
}

.mobile .content_wrapper .no-gutter .simp-custom-faq-widget-in-single-container .faq-wrapper .question-part::after {
    content: "";
    position: absolute;
    right: var(--faq-sc-mobile-chevron-right);
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    width: var(--faq-sc-shared-chevron-size);
    height: var(--faq-sc-shared-chevron-size);
    background-image: var(--faq-sc-shared-chevron-icon);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform var(--faq-sc-shared-chevron-duration) var(--faq-sc-shared-chevron-ease);
    flex-shrink: 0;
    pointer-events: none;
}

.mobile .content_wrapper .no-gutter .simp-custom-faq-widget-in-single-container .faq-wrapper .question-part[aria-expanded="true"]::after {
    transform: translateY(-50%) rotate(180deg);
}

.mobile .content_wrapper .no-gutter .simp-custom-faq-widget-in-single-container .faq-wrapper .answer-part {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows var(--faq-sc-shared-panel-duration) var(--faq-sc-shared-panel-ease);
    margin: 0 !important;
}

.mobile .content_wrapper .no-gutter .simp-custom-faq-widget-in-single-container .faq-wrapper .answer-part.faq-expanded {
    grid-template-rows: 1fr;
}

.mobile .content_wrapper .no-gutter .simp-custom-faq-widget-in-single-container .faq-wrapper .answer-part>.faq-answer-inner {
    overflow: hidden;
    padding: var(--faq-sc-mobile-answer-padding);
}

.mobile .content_wrapper .no-gutter .simp-custom-faq-widget-in-single-container .faq-wrapper .answer-part:not(.faq-expanded)>.faq-answer-inner {
    padding-bottom: 0;
}

.mobile .content_wrapper .no-gutter .simp-custom-faq-widget-in-single-container .question-part p:empty,
.mobile .content_wrapper .no-gutter .simp-custom-faq-widget-in-single-container .answer-part p:empty {
    display: none;
}

.mobile .content_wrapper .no-gutter .simp-custom-faq-widget-in-single-container .faq-wrapper .answer-part .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 10px 0;
}

.mobile .content_wrapper .no-gutter .simp-custom-faq-widget-in-single-container .faq-wrapper .answer-part table {
    width: 100%;
    border-collapse: collapse;
}

.mobile .content_wrapper .no-gutter .simp-custom-faq-widget-in-single-container .faq-wrapper .answer-part :is(th, td) {
    padding: var(--faq-sc-shared-table-cell-padding);
    border: var(--faq-sc-shared-table-border-width) solid var(--faq-sc-shared-table-border);
}

.mobile .content_wrapper .no-gutter .simp-custom-faq-widget-in-single-container .txt-wdgt-btn-wrapper {
    display: flex;
    justify-content: var(--faq-sc-mobile-btn-justify);
}

.mobile .content_wrapper .no-gutter .simp-custom-faq-widget-in-single-container .faq-wrapper.faq-empty .question-part {
    cursor: default;
    pointer-events: none;
}

.mobile .content_wrapper .no-gutter .simp-custom-faq-widget-in-single-container .faq-wrapper.faq-empty .question-part::after {
    display: none;
}

@media (prefers-reduced-motion: reduce) {

    :is(.outer-page, .outerpage) .content_wrapper .no-gutter .simp-custom-faq-widget-in-single-container .faq-wrapper .answer-part,
    :is(.outer-page, .outerpage) .content_wrapper .no-gutter .simp-custom-faq-widget-in-single-container .faq-wrapper .question-part::after,
    .mobile .content_wrapper .no-gutter .simp-custom-faq-widget-in-single-container .faq-wrapper .answer-part,
    .mobile .content_wrapper .no-gutter .simp-custom-faq-widget-in-single-container .faq-wrapper .question-part::after {
        transition: none;
    }

}

/* ----- header --- */
.mobile .content_wrapper .no-gutter .simp-custom-faq-widget-in-single-container-header .text-content :is(h1, h2, h3):only-child {
    padding: 0;
    margin: 0;
}







/* For 2-text-box */
.simp-custom-hideRightBoxTwoText .right-box{
    display:none;
}
.simp-custom-hideLeftBoxTwoText .left-box{
    display:none;
}
.mobile .simp-custom-hideRightBoxTwoText .col-xs-12:nth-of-type(2){
    display:none;
}
.mobile .simp-custom-hideLeftBoxTwoText .col-xs-12:nth-of-type(1){
    display:none;
}
/* For 3-text-box */
.mobile .simp-custom-hideRightBox .col-xs-12:nth-of-type(3){
    display:none;
}
.mobile .simp-custom-hideLeftBox .col-xs-12:nth-of-type(1){
    display:none;
}
.simp-custom-hideRightBox .right-box{
    display:none !important;
}
.simp-custom-hideLeftBox .left-box{
    display:none !important;
}
.simp-custom-center{
    display:flex;
    justify-content:center;
}



/* move book button in mobile to adjust konverse chatbot */
/*.mobile .fab_book_button {*/
/*    right: 100%;*/
/*    left: 15px;*/
/*}*/

/* move back to top button to the left to adjust konverse chatbot */
/*.outer-page #back-top {*/
/*    right: 100%;*/
/*    left: 10px;*/
/*}*/

/*Dining*/
.mobile .widget-wrapper[data-widget-id="2123884"] .col-xs-12, .mobile .widget-wrapper[data-widget-id="2112158"] .col-xs-12, .mobile .widget-wrapper[data-widget-id="2112162"] .col-xs-12, .mobile .widget-wrapper[data-widget-id="2112160"] .col-xs-12 {
    background-image: url(https://assets.simplotel.com/simplotel/image/upload/x_0,y_0,w_2089,h_4753,r_0,c_crop,q_90,fl_progressive/w_400,f_auto,c_fit/barefoot-at-havelock/Dining_in_Havelock_Barefoot_at_Havelock_Resort_srtuin) !important;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 12px;
    padding: 100px 40px;
}
.mobile .widget-wrapper[data-widget-id="2123884"] .col-xs-12 .img-responsive.image-content, .mobile .widget-wrapper[data-widget-id="2112158"] .col-xs-12 .img-responsive.image-content, .mobile .widget-wrapper[data-widget-id="2112162"] .col-xs-12 .img-responsive.image-content, .mobile .widget-wrapper[data-widget-id="2112160"] .col-xs-12 .img-responsive.image-content {
    display:none;
}

/*spa*/
.mobile .widget-wrapper[data-widget-id="2122065"] {
    background-image: url(https://assets.simplotel.com/simplotel/image/upload/w_2941,h_5000/x_0,y_0,w_2941,h_5000,r_0,c_crop,q_90,fl_progressive/w_400,f_auto,c_fit/barefoot-at-havelock/Spa_Image-01-01_c1jeio_mdsfiu) !important;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 12px;
    padding: 100px 40px;
}
.mobile .widget-wrapper[data-widget-id="2122065"] .col-xs-12 .img-responsive.image-content {
    display: none;
}
.mobile .clearfix.widget-wrapper[data-widget-id="2122065"] .btn.btn-forlink {
    float: none;
    font-weight: 300;
    letter-spacing: 4.8px;
    font-size: 14px;
    border-radius: 7px;
    background-color: white;
    border: none;
    width: 166px;
    padding: 18px 0;
    height: 50px;
    color: rgb(115, 108, 104)!important;
    text-transform: uppercase;
    margin-bottom: 130px;
}
.mobile .clearfix.widget-wrapper[data-widget-id="2122065"] .btn.btn-forlink span {
    color: rgb(115, 108, 104)!important;
}

.mobile .clearfix.widget-wrapper[data-widget-id="2122065"] .col-xs-12.one-col:last-child .btn {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    float: none;
    background-color: white;
    border: none;
    letter-spacing: 4.86px;
    font-size: 18px;
    padding: 50px 35px;
    text-transform: uppercase;
    margin-bottom: 0;
    position: relative;
    line-height: 30px!important;
}
.mobile .clearfix.widget-wrapper[data-widget-id="2122065"] .col-xs-12.one-col:last-child .btn:before {
   content: "";
    width: 110%;
    height: 110%;
    display: block;
    position: absolute;
    top: 0;
    left: -5%;
    right: 0;
    bottom: 0;
    margin: auto;
    border: 1px solid white;
    border-radius: 50%;
}

/*Grid Css*/
.mobile .boxHolderForImg1 {
    height: 165px;
    width: 40vw;
    background-size: 250%;
}

.mobile .boxHolderForImg2 {
    height: 320px;
    width: 40vw;
    background-size: 450%;
}

.mobile .boxHolderForImg3 {
    grid-column: 1 / 2;
    grid-row: 5 / 7;
    height: 390px;
    background-size: 350%;
}

.mobile .boxHolderForImg4 {
    grid-column: 2 / 3;
    grid-row: 5 / 6;
    height: 240px;
    background-size: 390%;
}

.mobile .boxHolderForImg5 {
    grid-column: 1 / 2;
    grid-row: 2 / 4;
    height: 266px;
    background-size: 220%;
}

.mobile .boxHolderForImg6 {
    grid-column: 2 / 3;
    grid-row: 3 / 5;
    height: 304px;
    background-size: 450%;
}

.mobile .boxHolderForImg7 {
    grid-column: 1 / 2;
    grid-row: 7 / 9;
    height: 226px;
    background-size: 350%;
}

.mobile .boxHolderForImg8 {
    grid-column: 2 / 3;
    grid-row: 6 / 8;
    height: 270px;
    background-size: 400%;
}

.mobile .boxHolderForImg9 {
    grid-column: 1 / 2;
    grid-row: 4 / 5;
    height: 160px;
    background-size: 250%;
}

.mobile .boxHolderForImg10 {
    grid-column: 2 / 3;
    grid-row: 8 / 9;
    height: 80px;
}

.mobile .gridClassHolder {
    width: 40vw;
    /*background-size: cover;*/
    background-repeat: no-repeat;
}

.mobile .gridStructureHolder {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: auto auto;
}
.mobile .clearfix.widgetwrapperHolder {
    padding: 100px 0 80px;
}
.mobile .clearfix.widgetwrapperHolder .one-col {
    padding: 0 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile .textContentHolder{
    font-size: 12px;
    letter-spacing: 2.2px; 
}
.mobile .nav-wrap .navBtnBorder .min-price-div{
   display: flex; 
   justify-content: center;
}
.min-price-div .price-msg {
    padding: 0px 3px;
}
.mobile .simp-custom-cardfullwidget { 
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.2);
}
.mobile .simp-custom-cardfullwidget:hover { 
	box-shadow: 0 6px 16px 0 rgba(0,0,0,0.3)
} 

.mobile .simp-custom-cardfullwidget ul {
    margin: 15px 20px !important;
}

.mobile .content_wrapper .simp-custom-stayLongerHalf-offers p{
    margin: 0 0 10px 0 !important;
}



:is(.outer-page,.outerpage) .content_wrapper .no-gutter .widget-wrapper.simp-custom-faq{
    width:80% !important;
    max-width:1340px !important;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    border:1px solid #0006;
    padding:0;
    margin:clamp(10px,0.967vw,15px) 0;
}

:is(.outer-page,.outerpage) .content_wrapper .no-gutter .widget-wrapper.simp-custom-faq .fullWidthWidgetWrapper {
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    margin:0;
    width:100%;
}

:is(.outer-page,.outerpage) .content_wrapper .no-gutter .widget-wrapper.simp-custom-faq .left-box{
    padding:20px 50px 20px 20px;
    cursor:pointer;
    width:100%;
}

:is(.outer-page,.outerpage) .content_wrapper .no-gutter .simp-custom-faq .left-box :is(h1,h2,h3,h4,h5,h6,p){
    margin:0;
    padding:0;
    text-align:left;
}

:is(.outer-page,.outerpage) .content_wrapper .no-gutter .simp-custom-faq .left-box:after {
    content: "\f078";
    font-family: 'Font Awesome 5 Pro';
    color: #667382;
    font-size: clamp(15px,.938vw,18px);
    position: absolute;
    right: 30px;
    top: 15px;
    font-weight: 400;
    transition: all .5s ease;
}
:is(.outer-page,.outerpage) .content_wrapper .no-gutter .simp-custom-faq .left-box.active:after {
    transform: rotate(180deg);
    transition: all .5s ease;
}
:is(.outer-page,.outerpage) .content_wrapper .no-gutter .widget-wrapper.simp-custom-faq .right-box{
    padding: 0 50px 0 20px;
    position:relative;
    width:100%;  
}
:is(.outer-page,.outerpage) .content_wrapper .no-gutter .simp-custom-faq .text-content .text-content-wrapper{
    display:flex;
    flex-direction:column;
}
:is(.outer-page,.outerpage) .content_wrapper .no-gutter .simp-custom-faq .text-content .text-content-wrapper p{
    padding: 0;
    margin:0;
}
:is(.outer-page,.outerpage) .content_wrapper .no-gutter .simp-custom-faq .text-content .text-content-wrapper p+p{
    margin-top:8px;
}
:is(.outer-page,.outerpage) .content_wrapper .no-gutter .simp-custom-faq .text-content .text-content-wrapper :is(h1,h2,h3,h4,h5,h6,p) {
    text-align: left;
}
:is(.outer-page,.outerpage) .content_wrapper .no-gutter .simp-custom-faq .text-content .text-content-wrapper ul {
    padding: 0 0 0 20px !important;
}
:is(.outer-page,.outerpage) .content_wrapper .no-gutter .simp-custom-faq .right-box:not(.active) .text-content-wrapper {
    transition: max-height .1s linear,padding .1s ease-in-out;
}
:is(.outer-page,.outerpage) .content_wrapper .no-gutter .simp-custom-faq .right-box.active .text-content-wrapper {
    display: flex;
    flex-direction:column;
    overflow: hidden;
    padding: 0 50px 0 20px;
    flex-grow: 0;
    max-height: 0;
    transition: max-height 1s linear,padding 1s linear;
}
:is(.outer-page,.outerpage) .content_wrapper .no-gutter .simp-custom-faq .right-box {
    display: flex;
    overflow: hidden;
    padding: 0 50px 0 20px;
    flex-grow: 0;
    max-height: 0;
    transition: max-height 1s linear,padding 1s linear
}
@keyframes fadess {
    from {
        opacity: 0;
        transform: translateY(-10px)
    }

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


/*mobile*/
.mobile .content_wrapper .no-gutter .simp-custom-faq{
    margin:15px 0;
    border: 1px solid #0006;
}
.mobile .content_wrapper .no-gutter .simp-custom-faq .col-xs-12:first-of-type{
    display: flex;
    padding: 15px 30px 15px 15px;
    flex-direction: column;
    position:relative;
}
.mobile .content_wrapper .no-gutter .simp-custom-faq .col-xs-12:first-of-type::after{
    content: "\f078";
    font-family: 'Font Awesome 5 Pro';
    color: #667382;
    font-size: 12px;
    display:flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 10px;
    top: 16px;
    font-weight: 600;
    transition: all .5s ease
}
.mobile .content_wrapper .no-gutter .simp-custom-faq .active.col-xs-12:first-of-type:after {
    transform: rotate(180deg);
    transition: all .5s ease;
}
.mobile .content_wrapper .no-gutter .simp-custom-faq .col-xs-12:first-of-type :is(h1,h2,h3,h4,h5,h6){
    padding:0;
    margin:0;
    text-align:left;
}
.mobile .content_wrapper .no-gutter .simp-custom-faq .col-xs-12:last-of-type {
    margin:0 !important;
    padding:0 30px 15px 15px;
}
.mobile .content_wrapper .no-gutter .simp-custom-faq .col-xs-12:last-of-type ul{
    padding: 0 0 0 20px !important
}
.mobile .content_wrapper .no-gutter .simp-custom-faq .col-xs-12:last-of-type p + p{
    margin-top:8px;
}
.mobile .content_wrapper .no-gutter .simp-custom-faq .col-xs-12:last-of-type :is(h1,h2,h3,h4,h5,h6){
    text-align:left;
}


.mobile .content_wrapper .no-gutter .simp-custom-faq .col-xs-12:last-of-type {
    display: flex;
    overflow: hidden;
    padding: 0 15px 0;
    flex-grow: 0;
    max-height: 0;
    transition: max-height 1s linear;
    flex-direction: column;
}
.mobile .content_wrapper .no-gutter .simp-custom-faq .active.col-xs-12:last-of-type {
    animation: Mobilefadess 1s ease-in-out;
    height: max-content;
    padding: 0 30px 15px 15px;
    max-height: 1000px !important;
    flex-grow: 1;
    flex-direction: column;
}
.mobile .content_wrapper .no-gutter .simp-custom-faq .col-xs-12:last-of-type:not(.active) {
    transition: max-height .1s linear,padding .1s linear;
}


@keyframes Mobilefadess {
    from {
        opacity: 0;
        transform: translateY(-10px)
    }

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

/*header faq*/
:is(.outer-page,.outerpage) .content_wrapper .no-gutter .widget-wrapper.simp-custom-faq-header {
    max-width:1340px !important;
}
:is(.outer-page,.outerpage) .content_wrapper .no-gutter .simp-custom-faq-header .text-content{
    padding:0;
}
:is(.outer-page,.outerpage) .content_wrapper .no-gutter .simp-custom-faq-header :is(h1,h2,h3,h4,h5,h6,p){
    text-align:left;
}
.mobile .content_wrapper .no-gutter .simp-custom-faq-header {
    margin:0;
}
.mobile .content_wrapper .no-gutter .simp-custom-faq-header :is(h1,h2,h3,h4,h5,h6,p){
    text-align:left;
    padding:0;
    border: none;
}






.container-fluid .simp-custom-widget-hide {
    display: none!important;
}
.mobile .simp-custom-mobile-widget-hide {
    display: none!important;
}

.simp-custom-btn-font a.btn {
    font-family: 'Josefin Sans',sans-serif !important;
    text-transform: uppercase;
}

.mobile .simp-custom-josefin h1,
.mobile .simp-custom-josefin h2,
.mobile .simp-custom-josefin h3 {
    font-family: 'Josefin Sans',sans-serif !important;
}
.simp-custom-josefin h1, .simp-custom-josefin h2, .simp-custom-josefin h3{
    font-family:'Josefin Sans',sans-serif !important;
}







a.False{
    display:none !important;
}
.footer-right-block .footer-manageBook {
    display:none;
}
.mobile .footer-cancel-button{
    display:none;
    
}
.mobile .footer-menu span{
    display:none;
}








