/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */
/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap");
@import url("https://pro.fontawesome.com/releases/v5.10.0/css/all.css?ver=5.7.1");

.modal-open {
    overflow: hidden;
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1070 !important;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
    /* background: #0202024a; */
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none;
}

.modal.fade .modal-dialog {
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition:
        transform 0.3s ease-out,
        -webkit-transform 0.3s ease-out;
    -webkit-transform: translate(0, -50px);
    transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
    .modal.fade .modal-dialog {
        -webkit-transition: none;
        transition: none;
    }
}

.modal.show .modal-dialog {
    -webkit-transform: none;
    transform: none;
}

.modal.modal-static .modal-dialog {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
}

.modal-dialog-scrollable {
    height: calc(100% - 1rem);
}

.modal-dialog-scrollable .modal-content {
    max-height: 100%;
    overflow: hidden;
}

.modal-dialog-scrollable .modal-body {
    overflow-y: auto;
}

.modal-dialog-centered {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - 1rem);
}

/* Відступ модалки від верху, щоб не перекривати хедер */
.modal-dialog.modal-dialog-centered {
    margin-top: 70px;
}

.modal-content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    outline: 0;
}

/* .modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1060 !important;
    width: 100vw;
    height: 100vh;
    background-color: #000;
} */

.modal-backdrop.fade {
    opacity: 0;
}

.modal .close span {
    font-size: 28px;
}

.modal.fade.show {
    background: rgba(0, 0, 0, 0.379);
}

.modal-backdrop.show {
    opacity: 0.4;
}

.modal-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px);
}

.modal-header .btn-close {
    padding: 0.5rem 0.5rem;
    margin: -0.5rem -0.5rem -0.5rem auto;
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
}

.modal-body {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem;
}

.modal-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 0.75rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: calc(0.3rem - 1px);
    border-bottom-left-radius: calc(0.3rem - 1px);
}

.modal-footer > * {
    margin: 0.25rem;
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }

    .modal-dialog-scrollable {
        height: calc(100% - 3.5rem);
    }

    .modal-dialog-centered {
        min-height: calc(100% - 3.5rem);
    }

    .modal-sm {
        max-width: 300px;
    }
}

@media (min-width: 992px) {
    .modal-lg,
    .modal-xl {
        max-width: 800px;
    }
}

@media (min-width: 1200px) {
    .modal-xl {
        max-width: 1140px;
    }
}

.modal-fullscreen {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
}

.modal-fullscreen .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
}

.modal-fullscreen .modal-header {
    border-radius: 0;
}

.modal-fullscreen .modal-body {
    overflow-y: auto;
}

.modal-fullscreen .modal-footer {
    border-radius: 0;
}

@media (max-width: 575.98px) {
    .modal-fullscreen-sm-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

    .modal-fullscreen-sm-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }

    .modal-fullscreen-sm-down .modal-header {
        border-radius: 0;
    }

    .modal-fullscreen-sm-down .modal-body {
        overflow-y: auto;
    }

    .modal-fullscreen-sm-down .modal-footer {
        border-radius: 0;
    }
}

@media (max-width: 767.98px) {
    .modal-fullscreen-md-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

    .modal-fullscreen-md-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }

    .modal-fullscreen-md-down .modal-header {
        border-radius: 0;
    }

    .modal-fullscreen-md-down .modal-body {
        overflow-y: auto;
    }

    .modal-fullscreen-md-down .modal-footer {
        border-radius: 0;
    }
}

@media (max-width: 991.98px) {
    .modal-fullscreen-lg-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

    .modal-fullscreen-lg-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }

    .modal-fullscreen-lg-down .modal-header {
        border-radius: 0;
    }

    .modal-fullscreen-lg-down .modal-body {
        overflow-y: auto;
    }

    .modal-fullscreen-lg-down .modal-footer {
        border-radius: 0;
    }
}

@media (max-width: 1199.98px) {
    .modal-fullscreen-xl-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

    .modal-fullscreen-xl-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }

    .modal-fullscreen-xl-down .modal-header {
        border-radius: 0;
    }

    .modal-fullscreen-xl-down .modal-body {
        overflow-y: auto;
    }

    .modal-fullscreen-xl-down .modal-footer {
        border-radius: 0;
    }
}

@media (max-width: 1399.98px) {
    .modal-fullscreen-xxl-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

    .modal-fullscreen-xxl-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }

    .modal-fullscreen-xxl-down .modal-header {
        border-radius: 0;
    }

    .modal-fullscreen-xxl-down .modal-body {
        overflow-y: auto;
    }

    .modal-fullscreen-xxl-down .modal-footer {
        border-radius: 0;
    }
}

.accordion-button {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    background-color: #fff;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    -webkit-transition:
        color 0.15s ease-in-out,
        background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out,
        border-radius 0.15s ease,
        -webkit-box-shadow 0.15s ease-in-out;
    transition:
        color 0.15s ease-in-out,
        background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out,
        border-radius 0.15s ease,
        -webkit-box-shadow 0.15s ease-in-out;
    transition:
        color 0.15s ease-in-out,
        background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out,
        box-shadow 0.15s ease-in-out,
        border-radius 0.15s ease;
    transition:
        color 0.15s ease-in-out,
        background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out,
        box-shadow 0.15s ease-in-out,
        border-radius 0.15s ease,
        -webkit-box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .accordion-button {
        -webkit-transition: none;
        transition: none;
    }
}

.accordion-button:not(.collapsed) {
    color: #0c63e4;
    background-color: #e7f1ff;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.accordion-button::after {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    -webkit-transition: -webkit-transform 0.2s ease-in-out;
    transition: -webkit-transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out;
    transition:
        transform 0.2s ease-in-out,
        -webkit-transform 0.2s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .accordion-button::after {
        -webkit-transition: none;
        transition: none;
    }
}

.accordion-button:hover {
    z-index: 2;
}

.accordion-button:focus {
    z-index: 3;
    border-color: #86b7fe;
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.accordion-header {
    margin-bottom: 0;
}

.accordion-item {
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.125);
}

.accordion-item:first-of-type {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px);
}

.accordion-item:last-of-type {
    margin-bottom: 0;
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

.accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: calc(0.25rem - 1px);
    border-bottom-left-radius: calc(0.25rem - 1px);
}

.accordion-item:last-of-type .accordion-collapse {
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

.accordion-body {
    padding: 1rem 1.25rem;
}

.accordion-flush .accordion-collapse {
    border-width: 0;
}

.accordion-flush .accordion-item {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
}

.accordion-flush .accordion-item:first-child {
    border-top: 0;
}

.accordion-flush .accordion-item:last-child {
    border-bottom: 0;
}

.accordion-flush .accordion-item .accordion-button {
    border-radius: 0;
}

.fade {
    -webkit-transition: opacity 0.15s linear;
    transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
    .fade {
        -webkit-transition: none;
        transition: none;
    }
}

.fade:not(.show) {
    opacity: 0;
}

.collapse:not(.show) {
    display: none;
}

.collapsing {
    height: 0;
    overflow: hidden;
    -webkit-transition: height 0.35s ease;
    transition: height 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
    .collapsing {
        -webkit-transition: none;
        transition: none;
    }
}

.nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    width: 100%;
}

.nav-link {
    display: block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    -webkit-transition:
        color 0.15s ease-in-out,
        background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out;
    transition:
        color 0.15s ease-in-out,
        background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .nav-link {
        -webkit-transition: none;
        transition: none;
    }
}

.nav-link.disabled {
    color: #6c757d;
    pointer-events: none;
    cursor: default;
}

.nav-tabs {
    border-bottom: 1px solid #dee2e6;
}

.nav-tabs .nav-link {
    margin-bottom: -1px;
    background: none;
    border: 1px solid transparent;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
    border-color: #e9ecef #e9ecef #dee2e6;
    isolation: isolate;
}

.nav-tabs .nav-link.disabled {
    color: #6c757d;
    background-color: transparent;
    border-color: transparent;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
    color: #495057;
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
}

.nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.nav-pills .nav-link {
    background: none;
    border: 0;
    border-radius: 0.25rem;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    color: #fff;
    background-color: #0d6efd;
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    text-align: center;
}

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
    width: 100%;
}

.tab-content > .tab-pane {
    display: none;
}

.tab-content > .active {
    display: block;
}

html {
    color: #5e5e5e;
    line-height: 1.4;
}

html,
body {
    font-family: "Lato", sans-serif;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */
::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */
fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
    resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Hide visually and from screen readers
 */
.hidden,
[hidden] {
    display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */
.sr-only {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
    /* 1 */
}

/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */
.sr-only.focusable:active,
.sr-only.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    white-space: inherit;
    width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */
.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix::before,
.clearfix::after {
    content: " ";
    display: table;
}

.clearfix::after {
    clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */
@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print,
    (-webkit-min-device-pixel-ratio: 1.25),
    (min-resolution: 1.25dppx),
    (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */
@media print {
    *,
    *::before,
    *::after {
        background: #fff !important;
        color: #000 !important;
        /* Black prints faster */
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]::after {
        content: " (" attr(href) ")";
    }

    abbr[title]::after {
        content: " (" attr(title) ")";
    }

    /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
    a[href^="#"]::after,
    a[href^="javascript:"]::after {
        content: "";
    }

    pre {
        white-space: pre-wrap !important;
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
   */
    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

.tabbed {
    overflow-x: hidden;
    /* so we could easily hide the radio inputs */
    margin: 10px;
    margin-top: 70px;
}

.tabbed [type="radio"] {
    /* hiding the inputs */
    display: none;
}

.tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    list-style: none;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.tab > label {
    display: block;
    margin-bottom: -1px;
    padding: 12px 15px;
    border: 1px solid #ccc;
    background: #ffffff4a;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border: none;
    outline: none;
    border-radius: 5px 5px 0 0;
    margin-right: 2px;
}

.tab:hover label {
    border-top-color: #333;
    color: #333;
    border: none;
    outline: none;
}

.tab-content {
    display: none;
    color: white;
}

.tab-content nav ul {
    text-align: center;
}

.tab-content ul {
    list-style: none;
    text-align: center;
    padding: 0;
}

.tab-content ul.lang-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.tab-content ul.lang-menu li:first-child {
    position: relative;
}

.tab-content ul.lang-menu li:first-child:after {
    content: "|";
    color: white;
    position: absolute;
    top: 10px;
    right: -2px;
}

.tab-content ul.lang-menu li.current-menu-item a {
    color: #ffd500;
}

.tab-content ul.lang-menu li a {
    padding: 10px;
}

.tab-content ul li a {
    color: white;
    text-transform: uppercase;
    text-decoration: none;
    display: block;
    padding: 10px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.tab-content ul li a:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* As we cannot replace the numbers with variables or calls to element properties, the number of this selector parts is our tab count limit */
.tabbed [type="radio"]:nth-of-type(1):checked ~ .tabs .tab:nth-of-type(1) label,
.tabbed [type="radio"]:nth-of-type(2):checked ~ .tabs .tab:nth-of-type(2) label,
.tabbed [type="radio"]:nth-of-type(3):checked ~ .tabs .tab:nth-of-type(3) label,
.tabbed [type="radio"]:nth-of-type(4):checked ~ .tabs .tab:nth-of-type(4) label,
.tabbed
    [type="radio"]:nth-of-type(5):checked
    ~ .tabs
    .tab:nth-of-type(5)
    label {
    border-bottom-color: #fff;
    border-top-color: #b721ff;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: none;
    outline: none;
    border-radius: 5px 5px 0 0;
}

.tabbed [type="radio"]:nth-of-type(1):checked ~ .tab-content:nth-of-type(1),
.tabbed [type="radio"]:nth-of-type(2):checked ~ .tab-content:nth-of-type(2),
.tabbed [type="radio"]:nth-of-type(3):checked ~ .tab-content:nth-of-type(3),
.tabbed [type="radio"]:nth-of-type(4):checked ~ .tab-content:nth-of-type(4) {
    display: block;
    border: none;
    outline: none;
}

#site-content {
    padding-top: 40px;
}

/* .container: defined in Tailwind (theme max-width 1200px) */

/* [BEM] home-page layout: see Tailwind + .home-page, .home-page__left, .home-page__right */

.home-left {
    margin-top: 35px;
    padding: 0 20px;
}

.home-left h1 {
    font-weight: 800;
    font-size: 1.3125rem;
    margin-bottom: 20px;
    line-height: 1.5625rem;
}

.home-left ul {
    margin: 0;
    padding: 0;
    padding-left: 30px;
}

.home-left ul li {
    list-style: none;
    position: relative;
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.25rem;
}

.home-left ul li:before {
    display: block;
    width: 15px;
    height: 15px;
    content: "";
    background: url(../img/bullet.svg) no-repeat center;
    position: absolute;
    left: -25px;
    top: 3px;
}

ul.gold-listing li.card .additional-details {
    padding: 5px 13px;
}

ul.gold-listing li.card .additional-details p.additional-text {
    color: #586c85;
    line-height: 1;
}

ul.gold-listing li.card .links-wrap {
    padding: 0 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

ul.gold-listing li.card .links-wrap > div,
ul.gold-listing li.card .links-wrap a {
    display: block;
    width: 30px;
    height: 30px;
    background: #d1ddec;
    margin-right: 5px;
    text-align: center;
    line-height: 30px;
    border-radius: 3px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

ul.gold-listing li.card .links-wrap > div svg,
ul.gold-listing li.card .links-wrap a svg {
    width: 13px;
    height: 30px;
    fill: #283673;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

ul.gold-listing li.card .links-wrap > div svg.icon-tr-mob,
ul.gold-listing li.card .links-wrap a svg.icon-tr-mob {
    width: 10px;
}

ul.gold-listing li.card .links-wrap > div:hover,
ul.gold-listing li.card .links-wrap a:hover {
    background: #ff4343;
}

ul.gold-listing li.card .links-wrap > div:hover svg,
ul.gold-listing li.card .links-wrap a:hover svg {
    fill: white;
}

ul.gold-listing li.card .links-wrap > div {
    position: relative;
}

ul.gold-listing li.card .links-wrap > div:hover > ul,
ul.gold-listing li.card .links-wrap > div:focus-within > ul,
ul.gold-listing li.card .links-wrap > div ul:hover,
ul.gold-listing li.card .links-wrap > div ul:focus {
    visibility: visible;
    opacity: 1;
    display: block;
}

ul.gold-listing li.card .links-wrap > div ul {
    margin: 0;
    padding: 0;
    list-style: none;
    position: absolute;
    background: red;
    left: 0;
    z-index: 99;
    width: 105px;
    display: none;
    visibility: visible;
    opacity: 1;
}

ul.gold-listing li.card .links-wrap > div ul li {
    width: auto;
    height: auto;
    width: 105px;
    min-height: auto;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    border-radius: 0;
}

ul.gold-listing li.card .links-wrap > div ul li a {
    display: block;
    padding: 10px;
    background: #d1ddec;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #283673;
    text-decoration: none;
    border-radius: 0;
    line-height: 1;
}

ul.gold-listing li.card .links-wrap > div ul li a:hover {
    color: white;
}

ul.gold-listing li.card.ad1-template .links-wrap {
    position: absolute;
    bottom: 10px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

ul.gold-listing li.card.ad2-template .agency-logo-wrap {
    float: right;
    overflow: hidden;
}

ul.gold-listing li.card.ad2-template .foot-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 0px 0 10px;
    position: absolute;
    bottom: 0px;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

ul.gold-listing li.card.ad2-template .user-info {
    padding: 43px 13px 10px 20px;
}

ul.gold-listing li.card.ad2-template p.country-name,
ul.gold-listing li.card.ad2-template p.additional-text {
    margin-bottom: 5px;
}

ul.gold-listing li.card.ad2-template .foot-wrap .links-wrap {
    padding: 0;
}

ul.gold-listing li.card.ad2-template .foot-wrap .links-wrap a:last-child {
    margin-right: 0;
}

ul.gold-listing li.card.ad3-template .country-name {
    position: absolute;
    top: 19px;
    right: 20px;
    right: 4px;
    width: 100px;
    white-space: break-spaces;
    text-align: center;
}

ul.gold-listing li.card.ad3-template .agency-logo-wrap {
    width: 95px;
    height: 95px;
}

ul.gold-listing li.card.ad3-template .card-wrap a {
    text-align: center;
    color: #586c85;
    margin: 0 auto;
}

ul.gold-listing li.card.ad3-template .card-wrap a.user-info {
    text-decoration: none;
}

ul.gold-listing li.card .foot-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 10px;
    padding: 0 10px;
    bottom: 10px;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

ul.gold-listing li.card .foot-wrap .links-wrap {
    padding: 0;
}

ul.gold-listing li.card .foot-wrap .links-wrap a:last-child {
    margin-right: 0;
}

ul.gold-listing li.card .user-info-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

ul.gold-listing li.card .user-info-wrap .img-wrap {
    background: rgba(209, 221, 236, 0.3);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 120px;
    height: 100%;
    height: 120px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

ul.gold-listing li.card .user-info-wrap .img-wrap img {
    width: 100%;
    height: auto;
}

ul.gold-listing li.card .user-info-wrap .user-info-right {
    padding: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: calc(100% - 112px);
}

ul.gold-listing li.card .user-info-wrap .user-info-right a.linkwrap {
    text-decoration: none;
    color: #5e5e5e;
}

ul.gold-listing li.card img.user-profile {
    background: #eee;
    padding: 0;
    display: block;
    width: 120px;
}

ul.gold-listing li.card .user-info-right {
    width: 100%;
    padding: 10px;
    padding-left: 0;
}

ul.silver-listing li {
    width: 311px;
    width: 48%;
    background: white;
    border: 1px solid #d1ddec;
    position: relative;
    margin-left: 5px;
    margin-right: 5px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 10px;
    display: flex;
}

@media (max-width: 630px) {
    ul.silver-listing li {
        width: 100%;
    }
}

ul.silver-listing li a {
    text-decoration: none;
    color: #586c85;
    display: block;
}

ul.silver-listing li .user-type {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

ul.silver-listing li .user-type svg {
    width: 71px;
    height: 51px;
}

ul.silver-listing li.card .user-info-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

ul.silver-listing li.card .user-info-wrap .img-wrap {
    background: rgba(209, 221, 236, 0.4);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 120px;
    height: 100%;
    height: 120px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
}

ul.silver-listing li.card .user-info-wrap .img-wrap img {
    width: 100%;
}

ul.silver-listing li.card .user-info-wrap .user-info {
    padding: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: calc(100% - 112px);
}

ul.silver-listing li.card p {
    margin: 0;
    padding: 0;
}

ul.silver-listing li.card p.country-name {
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: bold;
}

ul.silver-listing li.card p.user-name {
    color: #586c85;
    font-size: 1.125rem;
    font-weight: bold;
    line-height: 1.1875rem;
}

ul.silver-listing li.card p.user-language {
    margin-top: 15px;
    line-height: 1.0625rem;
}

ul.premium-listing li {
    width: 311px;
    width: 48%;
    background: white;
    border: 1px solid #d1ddec;
    position: relative;
    margin-left: 5px;
    margin-right: 5px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 10px;
    height: 85px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 550px) {
    ul.premium-listing li {
        width: 100%;
    }
}

ul.premium-listing li a {
    text-decoration: none;
    color: #586c85;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

ul.premium-listing li .user-type {
    position: absolute;
    top: 0;
    left: 0;
}

ul.premium-listing li .user-type svg {
    width: 71px;
    height: 51px;
}

ul.premium-listing li.card {
    padding: 10px;
    padding-left: 50px;
}

ul.premium-listing li.card p {
    margin: 0;
    padding: 0;
}

ul.premium-listing li.card p.user-name {
    color: #586c85;
    font-size: 1.125rem;
    font-weight: bold;
    line-height: 1.1875rem;
}

ul.premium-listing li.card p.user-language {
    line-height: 1.0625rem;
}

/* [BEM] search-form: see Tailwind + .search-form, .search-form__field, .search-form__submit */

input {
    padding: 10px;
    border: 1px solid #bbbbbb;
    border-radius: 4px;
    display: block;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

::-webkit-input-placeholder {
    /* Edge */
    color: #666;
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #666;
}

::-ms-input-placeholder {
    color: #666;
}

::placeholder {
    color: #666;
}

footer {
    padding-bottom: 30px;
}

footer ul.footer-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul.footer-menu li a {
    display: block;
    padding: 10px;
    font-size: 0.875rem;
    line-height: 1.0625rem;
    color: #283673;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

footer ul.footer-menu li a:hover {
    color: #ff4343;
}

footer p.contact-details {
    text-align: center;
    margin: 0;
}

footer p.contact-details a {
    display: inline-block;
    padding: 10px 0;
    font-size: 0.875rem;
    line-height: 1.0625rem;
    color: #283673;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

footer p.contact-details a:hover {
    color: #ff4343;
}

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

/* css added by pradnya */
@media (max-width: 767px) {
    .home #site-content {
        padding-top: 20px;
    }
}

.scrolltotop {
    position: fixed;
    bottom: -50px;
    right: 20px;
    height: 40px;
    width: 40px;
    line-height: 40px;
    color: #fff;
    background-color: #283673;
    border-radius: 50%;
    background-clip: padding-box;
    text-align: center;
    cursor: pointer;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    opacity: 0;
    z-index: 999999;
    /* padding: 13px 5px; */
    font-size: 12px;
    text-transform: uppercase;
}

.show-to-top {
    opacity: 1;
    bottom: 15px;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    bottom: 5%;
}

.scrolltotop:hover {
    background-color: rgba(40, 54, 115, 0.7);
}

@media (max-width: 767px) {
    ul.basic-listing,
    ul.premium-listing,
    ul.silver-listing,
    ul.gold-listing {
        justify-content: center;
    }
}

.no-results-found {
    font-size: 2rem;
    text-align: center;
    margin: 5rem;
    margin-bottom: 8rem;
}

.page-id-31 .woocommerce-notices-wrapper {
    display: block;
}

@media (max-width: 767px) {
    .no-results-found {
        font-size: 1.5rem;
        text-align: center;
        margin: 2rem;
        margin-bottom: 1rem;
    }
}

.justify-content-center {
    justify-content: center !important;
}

.woocommerce-terms-and-conditions-wrapper {
    display: none;
}

.woocommerce-notices-wrapper {
    /* display: none; */
}

.form-wrapper input,
.form-wrapper select {
    color: #999;
}

ul.gold-listing li.ad3-template {
    padding-bottom: 0;
}

@media (min-width: 768px) and (max-width: 1040px) {
    .home .container {
        width: 95%;
    }
}

@media (max-width: 767px) {
    .home-left h1 {
        font-size: 1.125rem;
    }

    .home .container {
        width: 100%;
    }

    .home .home-left-wrapper,
    .home footer {
        padding-left: 10px;
        padding-right: 10px;
    }
}

ul.gold-listing li.card .user-info-wrap a.img-wrap {
    overflow: hidden;
}

p.dev-credits {
    text-align: center;
}

/* added by rishi on 11th June, 2021 */
.woocommerce-MyAccount-content .ads-wrapper {
    width: 690px;
}

.woocommerce-MyAccount-content .gold-ad-listing li,
.woocommerce-MyAccount-content .other-add-listing li {
    width: 320px;
}

.woocommerce-MyAccount-content p {
    line-height: 1rem;
}

.gold-ad-listing .input-btn .ad2-template .card-wrap .card-left .country-name,
.gold-ad-listing
    .input-btn
    .ad2-template
    .card-wrap
    .card-left
    .additional-text {
    margin-bottom: 5px;
}

.card .card-wrap p {
    font-size: 0.875rem;
}

ul.silver-listing {
    background: rgba(255, 250, 223, 0.5);
    padding: 20px;
}

ul.premium-listing {
    background: #eee;
    padding: 20px;
}

ul.gold-listing {
    background: #fffadf;
    padding: 20px;
}

.home-right-wrapper {
    background: none;
    padding: 0;
}

/* css added by vishal - 16-07-21 */
.home .left-nav .current_page_item a {
    background: rgba(255, 255, 255, 0.1);
    color: #ffd500 !important;
}

p.user-name {
    text-transform: capitalize;
}

p.dev-credits a {
    color: #283673;
}

.page-id-2525 #site-content,
.page-id-2518 #site-content {
    padding-top: 0;
}

.wpcf7-form .button-wrap input[type="submit"] {
    display: block;
    width: 100%;
    padding: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 4px;
    background: #283673;
    outline: none;
    border: none;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.125rem;
    cursor: pointer;
}

:target {
    scroll-margin-top: 100px;
}

@media (max-width: 820px) {
    :target {
        scroll-margin-top: 65px;
    }
}

@media (max-width: 767px) {
    :target {
        scroll-margin-top: 50px;
    }
}
.woocommerce-checkout
    .select2-container
    .select2-selection--single
    .select2-selection__rendered {
    font-size: 0.9rem;
}

.user-profile-detail
    .container
    .detail-wrapper
    .review-form-wrapper
    .right-review-list
    .auth
    .count-cap {
    text-transform: capitalize;
}

.regi-text-wrapper .right .right-user p {
    margin-bottom: 10px !important;
}

.woocommerce-input-wrapper .para2 {
    margin-top: 8px;
}

a.thankyou,
.login-page-btn {
    color: #fff !important;
}

.media-frame-router .media-menu-item.active {
    background: #00a8ff;
    color: white;
}

.regi-text-wrapper .btn.as-button {
    width: 285px !important;
}

@media (max-width: 820px) {
    .regi-text-wrapper .btn.as-button {
        width: 215px !important;
        font-size: 0.65rem !important;
    }
}

.contact-detail.my-order {
    padding-top: 12px;
}

.acf-form-fields .num-instruct .acf__tooltip {
    display: none !important;
}
.acf-form-fields .num-instruct .acf-label {
    display: flex !important;
}
.acf-form-fields .num-instruct .description.tooltip__hidden {
    display: inline-block !important;
    color: #8b8989 !important;
    margin-top: 0 !important;
    padding-left: 5px !important;
}

.accordion .card-header {
    cursor: pointer !important;
}

.select2-container .select2-dropdown,
.select2-container .select2-selection {
    font-size: 1rem !important;
}

.checkout.woocommerce-checkout #billing_country_field .country_select,
.checkout.woocommerce-checkout #billing_country_field .select2-container {
    pointer-events: none;
}

.checkout.woocommerce-checkout
    #billing_country_field
    .select2-selection__rendered {
    cursor: not-allowed;
    background: #e1e1e1;
}

/* css changes by shradha */
.ads-wrapper .other-add-listing li a {
    pointer-events: none !important;
}
.woocommerce-account .post-inner .woocommerce .login-wrap form {
    max-width: 400px !important;
    margin: 0 auto;
}
.ywsbs-subscription-info-item.resubscribe {
    margin: 35px 7px;
}
.ywsbs-subscription-info-item.resubscribe a,
.top-notificatin-band a {
    padding: 10px 33px;
    cursor: pointer;
    background: #283673;
    color: #ffffff !important;
    border-radius: 4px;
    text-align: center;
    text-decoration: none !important;
}

.ywsbs-subscription-info-item.resubscribe a:hover,
.top-notificatin-band a:hover {
    background: #00a8ff;
    color: #ffffff !important;
    text-decoration: none !important;
}
.woocommerce-checkout
    .woocommerce
    form.woocommerce-checkout
    #customer_details
    .woocommerce-billing-fields__field-wrapper {
    justify-content: space-between;
}
.woocommerce-checkout
    .woocommerce
    form.woocommerce-checkout
    #customer_details
    .woocommerce-billing-fields__field-wrapper
    > p:not(.address_book) {
    width: 48% !important;
    margin-right: 10px !important;
    margin-bottom: 10px !important;
}
.woocommerce-checkout p#billing_address_book_field {
    width: 48% !important;
}
.woocommerce-checkout
    .woocommerce
    form.woocommerce-checkout
    #customer_details
    .woocommerce-billing-fields__field-wrapper
    > p#billing_country_field
    span {
    line-height: 2.1em !important;
}
.woocommerce-checkout
    .select2-container
    .select2-selection--single
    .select2-selection__rendered {
    line-height: 2.3em !important;
}
.woocommerce-checkout
    .woocommerce
    form.woocommerce-checkout
    #customer_details
    .woocommerce-billing-fields__field-wrapper
    > p#billing_address_1_field
    input {
    height: 50px !important;
}
.woocommerce-checkout
    .woocommerce
    form.woocommerce-checkout
    #customer_details
    #billing_agreement_field {
    margin-top: 15px !important;
}
.woocommerce-checkout
    .woocommerce
    form.woocommerce-checkout
    #customer_details
    .woocommerce-billing-fields
    p {
    padding-left: 2px !important;
}
@media (max-width: 912px) {
    .woocommerce-checkout
        .woocommerce
        form.woocommerce-checkout
        #customer_details
        .woocommerce-billing-fields__field-wrapper
        > p:not(.address_book) {
        width: 47% !important;
    }
    .woocommerce-checkout p#billing_address_book_field {
        width: 47% !important;
    }
}
@media (max-width: 768px) {
    .woocommerce-checkout
        .woocommerce
        form.woocommerce-checkout
        #customer_details
        .woocommerce-billing-fields__field-wrapper
        > p:not(.address_book) {
        width: 100% !important;
    }
    .woocommerce-checkout p#billing_address_book_field {
        width: 100% !important;
    }
    .woocommerce-checkout
        .woocommerce
        form.woocommerce-checkout
        #customer_details
        .woocommerce-billing-fields__field-wrapper
        > p:not(.address_book) {
        /* width: 49% !important; */
        margin-right: 0px !important;
    }
}

textarea.wpcf7-form-control.wpcf7-textarea {
    width: 100% !important;
    border: 1px solid #bbbbbb !important;
}
.media-frame-router {
    top: 90px !important;
}
.media-frame-content {
    top: 135px !important;
}
.media-frame-title p {
    font-size: 16px !important;
    color: #586c85 !important;
    padding: 0 16px;
}

.uploader-inline-content {
    top: 20% !important;
}

ul.gold-listing li.card .links-wrap {
    padding-bottom: 10px !important;
}
ul.silver-listing li.card .user-info-wrap {
    padding: 10px !important;
    box-sizing: border-box;
}
.media-router {
    padding: 0 17px !important;
}

.wp-core-ui .quicktags-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}
.wp-core-ui .quicktags-toolbar input.button.button-small {
    flex: 0 0 auto;
    width: auto;
    padding: 8px !important;
}

.woocommerce-MyAccount-content
    .subscription-info
    .ywsbs-subscription-info-item
    .ywsbs-dropdown-wrapper
    .ywsbs-dropdown
    .ywsbs-dropdown-item
    p {
    color: #ffd500 !important;
}

.card.ad2-template .user-info .additional-text,
.card.ad2-template .user-info .work-langauge,
.card.ad2-template .user-info .user-language {
    /* text-transform: uppercase !important; */
}
