/* animations css */

.text-left {
    opacity: 0;
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
    -webkit-animation: moveleft 0.3s ease-out forwards;
    animation: moveleft 0.3s ease-out forwards;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.text-left2 {
    opacity: 0;
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
}

.text-left2.animated {
    -webkit-animation: moveleft 0.3s ease-out forwards !important;
    animation: moveleft 0.3s ease-out forwards !important;
    /*     animation-delay: 0.3s; */
}

.text-right {
    opacity: 0;
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
    -webkit-animation: moveright 0.3s ease-out forwards;
    animation: moveright 0.3s ease-out forwards;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.text-right2 {
    opacity: 0;
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
}

.text-right2.animated {
    -webkit-animation: moveright 0.3s ease-out forwards !important;
    animation: moveright 0.3s ease-out forwards !important;
    /*     animation-delay: 0.3s !important; */
}

.up.jello.animated {
    opacity: 0;
    -webkit-animation: moveup 0.3s ease-out forwards !important;
    animation: moveup 0.3s ease-out forwards !important;
}

@-webkit-keyframes moveright {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}

@keyframes moveright {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}

@-webkit-keyframes moveleft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}

@keyframes moveleft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}

@-webkit-keyframes moveup {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@keyframes moveup {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

/* Popup 1 */

.popup1,
.popup2 {
    width: 100%;
    height: auto;
    background: #fff;
    padding: 40px 20px;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
    -webkit-box-shadow: 0px 0px 4px 4px rgb(0 0 0 / 8%);
    box-shadow: 0px 0px 4px 4px rgb(0 0 0 / 8%);
}

.popup2 {
    max-width: 736px;
    width: 100%;
    min-height: 650px;
    margin-left: auto;
    margin-right: auto;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: auto;
    z-index: 10001;
    border-radius: 10px;
    background-color: #FFF;
    -webkit-box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.15);
}

.popup2 .main-container {
    max-width: 624px;
    width: 100%;
    margin: auto;
}

.popup2 .main-container .heading-3 h3 {
    margin: 0;
    padding-bottom: 8px;
    margin-bottom: 24px;
    color: #202020;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    position: relative;
}

.popup2 .main-container .heading-3 h3:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 3px;
    background-color: #74AADC;
    z-index: 1;
    border-radius: 8px;
}

.popup2 .main-container .inner-container .desc ul {
    padding-left: 20px;
}

.popup2 .main-container .inner-container .desc p:first-child {
    margin-top: 0;
}

.popup2 .main-container .inner-container .desc p {
    margin-bottom: 0;
    margin-top: 8px;
}

.popup2 .main-container .inner-container .desc {
    color: #202020;
    font-family: "Open Sans", Sans-Serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.popup2 .main-container .heading-4 {
    margin-top: 24px;
    padding-bottom: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 16px;
    border-bottom: 1px solid #E5E5E5;
}

.popup2 .main-container .heading-4 h4 {
    display: inline-block;
    margin: 0;
    color: #3885CD;
    font-family: 'Poppins', Sans-Serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
}

.popup2 .main-container .heading-4 span {
    color: #202020;
    font-family: 'Open Sans', Sans-Serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 19px;
    white-space: nowrap;
    display: inline-block;
}

.popup2 .container {
    position: relative;
}

.popup2 .container .close {
    width: 20px;
    height: 20px;
    position: absolute;
    right: 4px;
    top: -24px;
    cursor: pointer;
    z-index: 6;
}

.popup2 .container .close svg {
    width: 100%;
    height: 100%;
}

.popup1 .container {
    max-width: 980px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.popup1 .col-left {
    width: 80%;
    padding-right: 20px;
}

.popup1 .col-right {
    width: 20%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.popup1 .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.popup1 .title .img {
    width: 35px;
    height: 35px;
    background: url("/wp-content/uploads/2023/02/Icon.svg") center/contain no-repeat;
    display: inline-block;
    margin-right: 10px;
}

.popup1 .title span {
    font-family: 'Poppins', Sans-Serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #4F4F4F;
    display: inline-block;
}

.popup1 .cookie-desc {
    font-family: 'Open Sans', Sans-Serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    color: #4F4F4F;
    margin-bottom: 0;
    margin-top: 16px;
    max-width: 740px;
    width: 100%;
}

.popup1 .cookie-desc p {
    margin: 0;
}

.popup1 .cookie-desc a {
    text-decoration: underline;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    color: #4F4F4F;
}

.popup1 .cookie-desc a:hover {
    color: #163552;
}

.popup1 .col-right button {
    min-width: 160px;
    min-height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid #163552;
    outline: none !important;
    font-family: 'Poppins', Sans-Serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #FFFFFF;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    padding: 8px;
    background-color: #163552;
    -webkit-box-shadow: 0px 2px 2px 1px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 2px 2px 1px rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    box-shadow: 0px 2px 2px 1px rgba(0, 0, 0, 0.08);
}

.popup1 .col-right button.accept:hover {
    background-color: #fff;
    color: #163552;
    border: 1px solid #163552;
    -webkit-box-shadow: 0px 2px 2px 1px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 2px 2px 1px rgba(0, 0, 0, 0.08);
}

.popup1 .col-right button.customize {
    margin-top: 16px;
    border: 1px solid #163552;
    background-color: #FFF;
    color: #163552;
    font-size: 12px;
    min-height: 32px;
    padding: 4px;
    -webkit-box-shadow: 0px 2px 2px 1px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 2px 2px 1px rgba(0, 0, 0, 0.08);
}

.popup1 .col-right button.customize:hover {
    background-color: #163552;
    color: #FFF;
    -webkit-box-shadow: 0px 2px 2px 1px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 2px 2px 1px rgba(0, 0, 0, 0.08);
}

.popup1 .buttons-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 16px;
}

.popup1 .buttons-group a,
.popup1 .buttons-group button {
    margin-right: 24px;
    display: inline-block;
    color: #0D0D0D;
    font-family: "Open Sans", Sans-Serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.popup1 .buttons-group button {
    margin-right: 0;
}

.popup1 .buttons-group button {
    border: none;
    background-color: transparent;
    outline: none;
    padding: 0;
}

.popup1 .buttons-group a:hover {
    color: #163552;
}

.popup1 .buttons-group a:last-child {
    margin-right: 0;
}

.inner-container .switchSmall {
    display: inline-block;
}
.inner-container .switchSmall input {
    display: none;
}
.inner-container .switchSmall small {
    display: inline-block;
    width: 42px;
    height: 20px;
    background: #E5E5E5;
    border-radius: 30px;
    position: relative;
    cursor: pointer;
    border: 1px solid #C7C7C7;
}
.inner-container .switchSmall small:before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    top: -1px;
    left: -1px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -webkit-box-shadow: -3px 0 3px rgba(0,0,0,0.1);
    box-shadow: -3px 0 3px rgba(0,0,0,0.1);
    border: 1px solid #C7C7C7;
}
.inner-container .switchSmall input:checked ~ small {
    background: #163552;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.inner-container  .switchSmall input:checked ~ small:before {
    -webkit-transform: translate(22px, 0px);
    -ms-transform: translate(22px, 0px);
    transform: translate(22px, 0px);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.main-container .button-container {
    text-align: center;
    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;
    margin-top: 32px;
}

.main-container .button-container .update-btn {
    border-radius: 5px;
    background-color: #163552;
    outline: none;
    -webkit-box-shadow: 0px 2px 2px 1px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 2px 2px 1px rgba(0, 0, 0, 0.08);
    padding: 6px;
    min-height: 44px;
    min-width: 148px;
    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;
    width: auto;
    text-align: center;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    color: #fff;
    font-family: 'Poppins', Sans-Serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    border: 1px solid #163552;
    cursor: pointer;
}

.main-container .button-container .update-btn:hover {
    background-color: #22507B;
    border-color: #22507B;
}

@media (max-width: 992px) {
    .popup1 {
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .popup1 .col-left {
        width: 75%;
    }

    .popup1 .col-right {
        width: 25%;
    }

    .popup2 {
        max-width: calc(100% - 40px);
    }
}

@media (max-width: 767px) {
    .popup1 .container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .popup1 .col-left {
        width: 100%;
    }

    .popup1 .col-right {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding-top: 20px;
    }

    .popup1 .title {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .popup1 .buttons-group {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .popup2 {
        overflow: hidden;
        overflow-y: auto;
        height: calc(100vh - 40px);
    }
}

#cookie-popup p a {
    /*color: #3885CD;*/
    text-decoration: underline;
}

body.postid-550 .single_feat_img_main  {
	display: none !important;
}
