/*   #region   ===== CSS Reset ===== */

:root {
    --loader: rgba(165, 165, 165, 0.2);
    --loader-bg: #777;
}

* {
    margin: 0px;
    padding: 0px;
    font-family: 'Arial', sans-serif;
}

html:not([data-accessibility-use='plugin_and_html']) *:focus {
    outline: none;
}

html.ssp-inner_scroll:not([data-device="mobile"]):not([data-browser="safari"]) {
    overflow-y: hidden;
}

html.ssp-inner_scroll.ssp-outer_scroll:not([data-device="mobile"]):not([data-browser="safari"]), html.ssp-inner_scroll.ssp-outer_scroll:not([data-device="mobile"]):not([data-browser="safari"]) #header[data-position="fixed"] #header_bar_wrapper {
    width: calc(100% - 17px);
    /* browser scrollbar width = 17px */
}

html {
    height: 100%;
    overflow-y: auto;
}

body {
    /*overflow-y: hidden;*/ /* Removed on 18-06-21 */
    position: relative;
    min-height: 100%;
}

[data-device="mobile"][data-browser="safari"] body {
    overflow-y: hidden;
}

html, body {
    min-width: 100%;
    /*height: 100%;*/ /* Removed for footer */
    -webkit-overflow-scrolling: touch;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    /*overflow-x: hidden; /* To prevent scroll on flip effect */ /* Removed on 18-06-21 */
    display: inline-block; /* Added on 18-06-21 */
    vertical-align: top; /* Solves unnecessary scrollbar when using 'inline-block' */
    touch-action: manipulation; /* Prevent resizing page on mobile, on double tap and inputs focus */
}

html[data-router-state="moving"], html[data-router-state="moving"] body {
    overflow-x: hidden;
}

html[data-router-state="moving"] body {
    overflow-y: hidden;
}

a:not(:disabled), button:not(:disabled), select:not(:disabled) {
    cursor: pointer;
}

textarea {
    vertical-align: top;
    /* Remove extra space under textarea */
}

input, textarea, select, option {
    font-family: 'Arial', sans-serif !important;
    /* Input fields must use only system fonts */
}

textarea::-webkit-input-placeholder, input::-webkit-input-placeholder, textarea:-moz-placeholder, input:-moz-placeholder, textarea::-moz-placeholder, input::-moz-placeholder, textarea:-ms-input-placeholder, input:-ms-input-placeholder, textarea::-ms-input-placeholder, input::-ms-input-placeholder, textarea::input-placeholder, input::input-placeholder {
    font-family: 'Arial', sans-serif !important;
    /* Input fields must use only system fonts */
}

input::placeholder, textarea::placeholder {
    font-family: 'Arial', sans-serif !important;
    /* Input fields must use only system fonts */
}

[data-direction="rtl"] textarea::-webkit-input-placeholder, [data-direction="rtl"] input::-webkit-input-placeholder, [data-direction="rtl"] textarea:-moz-placeholder, [data-direction="rtl"] input:-moz-placeholder, [data-direction="rtl"] textarea::-moz-placeholder, [data-direction="rtl"] input::-moz-placeholder, [data-direction="rtl"] textarea:-ms-input-placeholder, [data-direction="rtl"] input:-ms-input-placeholder, [data-direction="rtl"] textarea::-ms-input-placeholder, [data-direction="rtl"] input::-ms-input-placeholder, [data-direction="rtl"] textarea::input-placeholder, [data-direction="rtl"] input::input-placeholder, [data-direction="rtl"] input::placeholder, [data-direction="rtl"] textarea::placeholder {
    text-align: right;
    direction: rtl;
}

.ssp-radio_fieldset {
    position: relative;
    display: inline-block;
}

::-webkit-file-upload-button {
    cursor:pointer;
}

/*   #endregion   */

/*   #region   ===== Elements ===== */

.ssp-loader, [data-mode='loading']:before {
    display: block;
    margin: auto;
    overflow: hidden;
    border-radius: 150%;
    -webkit-animation: loader 1s linear infinite;
    -moz-animation: loader 1s linear infinite;
    -ms-animation: loader 1s linear infinite;
    animation: loader 1s linear infinite;
    width: 30px;
    height: 30px;
    
    border: 5px solid #777;/* default supported fallback style */
    border-right: 5px solid rgba(165, 165, 165, 0.2); /* default supported fallback style */
    border-bottom: 5px solid rgba(165, 165, 165, 0.2); /* default supported fallback style */
    border-left: 5px solid rgba(165, 165, 165, 0.2); /* default supported fallback style */

    border: 5px solid var(--loader-bg);
    border-right: 5px solid var(--loader);
    border-bottom: 5px solid var(--loader);
    border-left: 5px solid var(--loader);
}

[data-mode='loading']:before,
[data-mode='success']:before {
    box-sizing: border-box;
    position: absolute;
}

[data-mode='loading']:before {
    content: '';
}

[data-mode='success']:before {
    display: block;
    margin: auto;
    /*content: '\d7';*/ /* X */
    content: '\2713'; /* V */
    color: rgb(0, 255, 0);
    font-weight: bold;
    display: block;
    /*font-size: 36px;*/
}

[data-mode='loading'],
[data-mode='success'] {
    cursor: default;
    pointer-events: none;
    /*display: inline-flex;*/
    align-items: center;
    justify-content: center;
    color: transparent !important;
    text-shadow: none !important;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

[data-mode='loading'][data-loading-display='inline'],
[data-mode='success'][data-loading-display='inline'] {
    display: inline-flex;
}

[data-mode='loading'][data-loading-display='block'],
[data-mode='success'][data-loading-display='block'] {
    display: flex !important;
}

[data-browser="msie"] [data-mode='loading']:before,
[data-browser="msie"] [data-mode='success']:before {
    position: relative;
}

[data-browser="msie"] [data-mode='loading'],
[data-browser="msie"] [data-mode='success'] {
    font-size: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
    display: inline-flex;
}

@-webkit-keyframes loader {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes loader {
    from {
        -moz-transform: rotate(0deg);
    }
    to {
        -moz-transform: rotate(360deg);
    }
}

@-ms-keyframes loader {
    from {
        -ms-transform: rotate(0deg);
    }
    to {
        -ms-transform: rotate(360deg);
    }
}

@keyframes loader {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.ssp-checkbox_fieldset, .ssp-radio_fieldset {
    position: relative;
    display: inline-flex;
    align-items: center
}
.ssp-checkbox_fieldset[data-checked-image-src] input:checked[type="checkbox"],
.ssp-radio_fieldset[data-checked-image-src] input:checked[type="radio"],
.ssp-checkbox_fieldset[data-unchecked-image-src] input:not(:checked)[type="checkbox"],
.ssp-radio_fieldset[data-unchecked-image-src] input:not(:checked)[type="radio"] {
    opacity: 0;
    z-index: -1;
}
.ssp-checkbox_fieldset[data-checked-image-src] label.ssp-checkbox_label::before,
.ssp-radio_fieldset[data-checked-image-src] label.ssp-radio_label::before,
.ssp-checkbox_fieldset[data-unchecked-image-src] label.ssp-checkbox_label::before,
.ssp-radio_fieldset[data-unchecked-image-src] label.ssp-radio_label::before {
    width: 20px;
    height: 20px;
    transition: all 250ms cubic-bezier(.27,.01,.38,1.06);
    box-shadow: none;
    position: absolute;
    display: block;
    content: "";
}
.ssp-checkbox_fieldset[data-checked-image-src] label,
.ssp-radio_fieldset[data-checked-image-src] label,
.ssp-checkbox_fieldset[data-unchecked-image-src] label,
.ssp-radio_fieldset[data-unchecked-image-src] label
{
    line-height: 20px;
}
.ssp-checkbox_fieldset[data-checked-image-src] label.ssp-checkbox_label::before {
    border-radius: 2px;
}
.ssp-radio_fieldset[data-checked-image-src] label.ssp-radio_label::before {
    border-radius: 50%;
}
[data-direction="rtl"] .ssp-checkbox_fieldset[data-checked-image-src] label.ssp-checkbox_label::before,
[data-direction="rtl"] .ssp-radio_fieldset[data-checked-image-src] label.ssp-radio_label::before,
[data-direction="rtl"] .ssp-checkbox_fieldset[data-unchecked-image-src] label.ssp-checkbox_label::before,
[data-direction="rtl"] .ssp-radio_fieldset[data-unchecked-image-src] label.ssp-radio_label::before {
    right: 0;
}
.ssp-checkbox_fieldset[data-checked-image-src] input:checked~.ssp-checkbox_label::before,
.ssp-radio_fieldset[data-checked-image-src] input:checked~.ssp-radio_label::before,
.ssp-checkbox_fieldset[data-unchecked-image-src] .ssp-checkbox_label::before,
.ssp-radio_fieldset[data-unchecked-image-src] .ssp-radio_label::before {
    border-color: transparent;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

/*   #endregion   */

/*   #region   ===== Navigation Menu ===== */

#navigation {
    position: fixed;
    top: 0px;
    left: 100%;
    width: 100%;
    height: 101%;
    z-index: 10011;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: none;
}

#navigation {
    /* used because of accessibility issues - menu should be "display: none" before clicking it */
    display: none;
}

#navigation[data-state="active"] {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
}

#navigation.ssp-display {
    /* used because of accessibility issues - menu should be "display: none" before clicking it */
    display: block;
}


/*   #endregion   */

/*   #region   ===== Header ===== */

#header {
    width: 100%;
    overflow: hidden;
    display: none;
}

#header[data-position="fixed"] #header_btns, #header[data-position="fixed"] #header_bar_wrapper, #header_btns[data-position="fixed"] {
    position: fixed !important;
    top: 0;
}

#header_btns {
    position: relative;
    /*width: 100vw;*/
    width: 100%;
    z-index: 10012;
}

.ssp-nav_opened #header_btns {
    position: fixed;
    top: 0;
}

#header_btns #menu_btn {
    position: absolute;
}

#header_btns #menu_btn span.ssp-pass {
    position: absolute;
}

[data-device="mobile"][data-browser="safari"].ssp-nav_opened body, html[data-device="mobile"][data-browser="chrome"].ssp-nav_opened {
    overflow: hidden;
}

#header_bar_wrapper {
    width: 100%;
    z-index: 10010;
}

#header_bar_content {
    width: calc(100vw - 17px);
    /* browser scrollbar width = 17px */
}

#header_bar {
    margin: auto;
}

#header_bar_logo {
    float: left;
}

#header_bar_links {
    float: right;
}

#header_bar_links ul {
    list-style: none
}

#header_bar_links li {
    float: left;
}

#header_bar_links li:first-child {
    margin-left: 0px;
}

[data-device="mobile"] #header_bar_links {
    display: none;
}


/*   #endregion   */

/*   #region   ===== Footer ===== */

#footer {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
    z-index: 10000;
}

#footer[data-position="fixed"] {
    position: fixed;
}

[data-browser="safari"] #footer {
    /* Solve 1px space at bottom safari bug */
    -webkit-transform: translateY(3px);
    -moz-transform: translateY(3px);
    -o-transform: translateY(3px);
    transform: translateY(3px);
}


/*   #endregion   */

/*   #region   ===== Accessibility ===== */

#header_btns #accessibility_btn {
    position: absolute;
    cursor: pointer;
    padding: 0;
    border: none;
    background: none;
}

#header_btns #accessibility_btn img {
    width: 100%;
    height: 100%;
}

/*   #endregion   */

/*   #region   ===== Pages ===== */

#main_loader {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.ssp-page {
    display: none;
}

.ssp-page[data-state="active"] {
    display: block;
}


/*   #endregion   */

/*   #region   ===== Popup ===== */

#popup {
    position: fixed;
    display: none;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 99999;
    overflow-x: hidden;
    overflow-y: auto;
    opacity: 0;
}

#popup[data-state="active"] {
    opacity: 1;
}

#popup #popup_container {
    position: absolute;
    text-align: center;
    width: 100%;
    height: 100%;
}

#popup #popup_container:before {
    content: '';
    vertical-align: middle;
    height: 100%;
    display: inline-block;
}

#popup #popup_container #popup_content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 20px;
    max-width: 90%;
}

.ssp-popup {
    font-size: 18px;
    position: relative;
    display: none;
    margin: auto;
    opacity: 0;
}

[data-direction="rtl"] .ssp-popup {
    direction: rtl;
}

.ssp-popup[data-state="active"] {
    display: inline-block;
    opacity: 1;
    transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
}

.ssp-close_popup {
    font-family: Arial !important;
    position: absolute;
    top: 0px;
    right: 0px;
    border-radius: 150%;
    z-index: 999;
    cursor: pointer;
}

.ssp-close_popup:before {
    content: '\d7';
    position: relative;
}


/*   #endregion   */

/*   #region   ===== Special browsers ===== */

@media \0screen {
    /* IE8 only */
    #popup {
        background-color: #4c4c4c;
    }
    #header_btns {
        width: 100%;
    }
    #navigation {
        background-color: black;
    }
    #navigation[data-state="active"] {
        left: 0px;
    }
    #header_btns #menu_btn span.ssp-pass.ssp-pass-4, #header_btns #menu_btn[data-state="open"] span.ssp-pass.ssp-pass-4 {
        top: -15px;
    }
    #header_btns #menu_btn[data-state="open"] span.ssp-pass.ssp-pass-1 {
        top: 0px;
    }
    #header_btns #menu_btn[data-state="open"] span.ssp-pass.ssp-pass-1, #header_btns #menu_btn[data-state="open"] span.ssp-pass.ssp-pass-4 {
        width: 100%;
        left: 0;
    }
    .ssp-loader {
        border: none;
        width: 80px;
    }
    .ssp-loader:after {
        content: 'Loading...';
    }
}


/*   #endregion   */

/*   #region   ===== Page Move Animations ===== */

/* Move with Fade Up */

@-webkit-keyframes float_with_fade_up_out {
    0% {
        -webkit-transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-25px);
        opacity: 0;
    }
}

@-webkit-keyframes float_with_fade_up_in {
    0% {
        -webkit-transform: translateY(25px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
    }
}

@-ms-keyframes float_with_fade_up_out {
    0% {
        -ms-transform: translateY(0);
    }
    100% {
        -ms-transform: translateY(-25px);
        opacity: 0;
    }
}

@-ms-keyframes float_with_fade_up_in {
    0% {
        -ms-transform: translateY(25px);
        opacity: 0;
    }
    100% {
        -ms-transform: translateY(0);
    }
}

/* Move with Fade Down */

@-webkit-keyframes float_with_fade_down_out {
    0% {
        -webkit-transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(25px);
        opacity: 0;
    }
}

@-webkit-keyframes float_with_fade_down_in {
    0% {
        -webkit-transform: translateY(-25px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
    }
}

@-ms-keyframes float_with_fade_down_out {
    0% {
        -ms-transform: translateY(0);
    }
    100% {
        -ms-transform: translateY(25px);
        opacity: 0;
    }
}

@-ms-keyframes float_with_fade_down_in {
    0% {
        -ms-transform: translateY(-25px);
        opacity: 0;
    }
    100% {
        -ms-transform: translateY(0);
    }
}

/* Move with Fade Left */

@-webkit-keyframes float_with_fade_left_out {
    0% {
        -webkit-transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-25px);
        opacity: 0;
    }
}

@-webkit-keyframes float_with_fade_left_in {
    0% {
        -webkit-transform: translateX(25px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateX(0);
    }
}

@-ms-keyframes float_with_fade_left_out {
    0% {
        -ms-transform: translateX(0);
    }
    100% {
        -ms-transform: translateX(-25px);
        opacity: 0;
    }
}

@-ms-keyframes float_with_fade_left_in {
    0% {
        -ms-transform: translateX(25px);
        opacity: 0;
    }
    100% {
        -ms-transform: translateX(0);
    }
}

/* Move with Fade Right */

@-webkit-keyframes float_with_fade_right_out {
    0% {
        -webkit-transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(25px);
        opacity: 0;
    }
}

@-webkit-keyframes float_with_fade_right_in {
    0% {
        -webkit-transform: translateX(-25px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateX(0);
    }
}

@-ms-keyframes float_with_fade_right_out {
    0% {
        -ms-transform: translateX(0);
    }
    100% {
        -ms-transform: translateX(25px);
        opacity: 0;
    }
}

@-ms-keyframes float_with_fade_right_in {
    0% {
        -ms-transform: translateX(-25px);
        opacity: 0;
    }
    100% {
        -ms-transform: translateX(0);
    }
}

/* Burst with Fade */

@-webkit-keyframes burst_with_fade_out {
    0% {
        -webkit-transform: scale(1);
    }
    100% {
        -webkit-transform: scale(1.2);
        opacity: 0;
    }
}

@-webkit-keyframes burst_with_fade_in {
    0% {
        -webkit-transform: scale(0.8);
        opacity: 0;
    }
    100% {
        -webkit-transform: scale(1);
    }
}

@-ms-keyframes burst_with_fade_out {
    0% {
        -ms-transform: scale(1);
    }
    100% {
        -ms-transform: scale(1.2);
        opacity: 0;
    }
}

@-ms-keyframes burst_with_fade_in {
    0% {
        -ms-transform: scale(0.8);
        opacity: 0;
    }
    100% {
        -ms-transform: scale(1);
    }
}

/* Shrink with Fade */

@-webkit-keyframes shrink_with_fade_out {
    0% {
        -webkit-transform: scale(1);
    }
    100% {
        -webkit-transform: scale(0.8);
        opacity: 0;
    }
}

@-webkit-keyframes shrink_with_fade_in {
    0% {
        -webkit-transform: scale(1.2);
        opacity: 0;
    }
    100% {
        -webkit-transform: scale(1);
    }
}

@-ms-keyframes shrink_with_fade_out {
    0% {
        -ms-transform: scale(1);
    }
    100% {
        -ms-transform: scale(0.8);
        opacity: 0;
    }
}

@-ms-keyframes shrink_with_fade_in {
    0% {
        -ms-transform: scale(1.2);
        opacity: 0;
    }
    100% {
        -ms-transform: scale(1);
    }
}

/* Flip From Top */

@-webkit-keyframes flip_from_top_out {
    0% {
        -webkit-transform: rotateX(0deg);
    }
    100% {
        -webkit-transform: rotateX(-90deg);
    }
}

@-webkit-keyframes flip_from_top_in {
    0% {
        -webkit-transform: rotateX(-270deg);
    }
    100% {
        -webkit-transform: rotateX(-360deg);
    }
}

@-ms-keyframes flip_from_top_out {
    0% {
        -ms-transform: rotateX(0deg);
    }
    100% {
        -ms-transform: rotateX(-90deg);
    }
}

@-ms-keyframes flip_from_top_in {
    0% {
        -ms-transform: rotateX(-271deg);
    }
    100% {
        -ms-transform: rotateX(-359deg);
    }
}

/* Flip From Right */

@-webkit-keyframes flip_from_right_out {
    0% {
        -webkit-transform: rotateY(0deg);
    }
    100% {
        -webkit-transform: rotateY(-90deg);
    }
}

@-webkit-keyframes flip_from_right_in {
    0% {
        -webkit-transform: rotateY(-270deg);
    }
    100% {
        -webkit-transform: rotateY(-360deg);
    }
}

@-ms-keyframes flip_from_right_out {
    0% {
        -ms-transform: rotateY(0deg);
    }
    100% {
        -ms-transform: rotateY(-90deg);
    }
}

@-ms-keyframes flip_from_right_in {
    0% {
        -ms-transform: rotateY(-271deg);
    }
    100% {
        -ms-transform: rotateY(-359deg);
    }
}

/* Flip From Left */

@-webkit-keyframes flip_from_left_out {
    0% {
        -webkit-transform: rotateY(0deg);
    }
    100% {
        -webkit-transform: rotateY(90deg);
    }
}

@-webkit-keyframes flip_from_left_in {
    0% {
        -webkit-transform: rotateY(270deg);
    }
    100% {
        -webkit-transform: rotateY(359deg);
    }
}

@-ms-keyframes flip_from_left_out {
    0% {
        -ms-transform: rotateY(0deg);
    }
    100% {
        -ms-transform: rotateY(90deg);
    }
}

@-ms-keyframes flip_from_left_in {
    0% {
        -ms-transform: rotateY(271deg);
    }
    100% {
        -ms-transform: rotateY(359deg);
    }
}

/* Flip With Bounce From Right */

@-webkit-keyframes flip_with_bounce_from_right_out {
    0% {
        -webkit-transform: rotateY(0deg);
    }
    100% {
        -webkit-transform: rotateY(-90deg);
    }
}

@-webkit-keyframes flip_with_bounce_from_right_in {
    0% {
        -webkit-transform: rotateY(-270deg);
    }
    50% {
        -webkit-transform: rotateY(-370deg);
    }
    70% {
        -webkit-transform: rotateY(-352deg);
    }
    80% {
        -webkit-transform: rotateY(-360deg);
    }
    95% {
        -webkit-transform: rotateY(-358deg);
    }
    100% {
        -webkit-transform: rotateY(-360deg);
    }
}

@-ms-keyframes flip_with_bounce_from_right_out {
    0% {
        -ms-transform: rotateY(0deg);
    }
    100% {
        -ms-transform: rotateY(-90deg);
    }
}

@-ms-keyframes flip_with_bounce_from_right_in {
    0% {
        -ms-transform: rotateY(-271deg);
    }
    50% {
        -ms-transform: rotateY(-370deg);
    }
    70% {
        -ms-transform: rotateY(-352deg);
    }
    80% {
        -ms-transform: rotateY(-360deg);
    }
    95% {
        -ms-transform: rotateY(-358deg);
    }
    100% {
        -ms-transform: rotateY(-359deg);
    }
}

/* Flip With Bounce From Left */

@-webkit-keyframes flip_with_bounce_from_left_out {
    0% {
        -webkit-transform: rotateY(0deg);
    }
    100% {
        -webkit-transform: rotateY(90deg);
    }
}

@-webkit-keyframes flip_with_bounce_from_left_in {
    0% {
        -webkit-transform: rotateY(270deg);
    }
    50% {
        -webkit-transform: rotateY(370deg);
    }
    70% {
        -webkit-transform: rotateY(352deg);
    }
    80% {
        -webkit-transform: rotateY(360deg);
    }
    95% {
        -webkit-transform: rotateY(358deg);
    }
    100% {
        -webkit-transform: rotateY(360deg);
    }
}

@-ms-keyframes flip_with_bounce_from_left_out {
    0% {
        -ms-transform: rotateY(0deg);
    }
    100% {
        -ms-transform: rotateY(90deg);
    }
}

@-ms-keyframes flip_with_bounce_from_left_in {
    0% {
        -ms-transform: rotateY(271deg);
    }
    50% {
        -ms-transform: rotateY(370deg);
    }
    70% {
        -ms-transform: rotateY(352deg);
    }
    80% {
        -ms-transform: rotateY(360deg);
    }
    95% {
        -ms-transform: rotateY(358deg);
    }
    100% {
        -ms-transform: rotateY(359deg);
    }
}

/* Page Turn From Top */

@-webkit-keyframes page_turn_from_top_out {
    0% {
        -webkit-transform: rotateX(0deg);
    }
    100% {
        -webkit-transform: rotateX(-90deg);
    }
}

@-webkit-keyframes page_turn_from_top_in {
    0% {
        -webkit-transform: rotateX(90deg);
    }
    100% {
        -webkit-transform: rotateX(0deg);
    }
}

@-ms-keyframes page_turn_from_top_out {
    0% {
        -ms-transform: rotateX(0deg);
    }
    100% {
        -ms-transform: rotateX(-90deg);
    }
}

@-ms-keyframes page_turn_from_top_in {
    0% {
        -ms-transform: rotateX(90deg);
    }
    100% {
        -ms-transform: rotateX(0deg);
    }
}

/* Page Turn From Right */

@-webkit-keyframes page_turn_from_right_out {
    0% {
        -webkit-transform: rotateY(0deg);
    }
    100% {
        -webkit-transform: rotateY(110deg);
    }
}

@-webkit-keyframes page_turn_from_right_in {
    0% {
        -webkit-transform: rotateY(-110deg);
    }
    100% {
        -webkit-transform: rotateY(0deg);
    }
}

@-ms-keyframes page_turn_from_right_out {
    0% {
        -ms-transform: rotateY(0deg);
    }
    100% {
        -ms-transform: rotateY(110deg);
    }
}

@-ms-keyframes page_turn_from_right_in {
    0% {
        -ms-transform: rotateY(-110deg);
    }
    100% {
        -ms-transform: rotateY(0deg);
    }
}

/* Page Turn From Left */

@-webkit-keyframes page_turn_from_left_out {
    0% {
        -webkit-transform: rotateY(0deg);
    }
    100% {
        -webkit-transform: rotateY(-110deg);
    }
}

@-webkit-keyframes page_turn_from_left_in {
    0% {
        -webkit-transform: rotateY(110deg);
    }
    100% {
        -webkit-transform: rotateY(0deg);
    }
}

@-ms-keyframes page_turn_from_left_out {
    0% {
        -ms-transform: rotateY(0deg);
    }
    100% {
        -ms-transform: rotateY(-110deg);
    }
}

@-ms-keyframes page_turn_from_left_in {
    0% {
        -ms-transform: rotateY(110deg);
    }
    100% {
        -ms-transform: rotateY(0deg);
    }
}

/* Page Turn With Bounce From Top */

@-webkit-keyframes page_turn_with_bounce_from_top_out {
    0% {
        -webkit-transform: rotateX(0deg);
    }
    100% {
        -webkit-transform: rotateX(-90deg);
    }
}

@-webkit-keyframes page_turn_with_bounce_from_top_in {
    0% {
        -webkit-transform: rotateX(90deg);
    }
    50% {
        -webkit-transform: rotateX(-10deg);
    }
    70% {
        -webkit-transform: rotateX(8deg);
    }
    80% {
        -webkit-transform: rotateX(0deg);
    }
    95% {
        -webkit-transform: rotateX(2deg);
    }
    100% {
        -webkit-transform: rotateX(0deg);
    }
}

@-ms-keyframes page_turn_with_bounce_from_top_out {
    0% {
        -ms-transform: rotateX(0deg);
    }
    100% {
        -ms-transform: rotateX(-90deg);
    }
}

@-ms-keyframes page_turn_with_bounce_from_top_in {
    0% {
        -ms-transform: rotateX(90deg);
    }
    50% {
        -ms-transform: rotateX(-10deg);
    }
    70% {
        -ms-transform: rotateX(8deg);
    }
    80% {
        -ms-transform: rotateX(0deg);
    }
    95% {
        -ms-transform: rotateX(2deg);
    }
    100% {
        -ms-transform: rotateX(0deg);
    }
}

/* Page Turn With Bounce From Right */

@-webkit-keyframes page_turn_with_bounce_from_right_out {
    0% {
        -webkit-transform: rotateY(0deg);
    }
    100% {
        -webkit-transform: rotateY(110deg);
    }
}

@-webkit-keyframes page_turn_with_bounce_from_right_in {
    0% {
        -webkit-transform: rotateY(-110deg);
    }
    50% {
        -webkit-transform: rotateY(10deg);
    }
    70% {
        -webkit-transform: rotateY(-8deg);
    }
    80% {
        -webkit-transform: rotateY(0deg);
    }
    95% {
        -webkit-transform: rotateY(-2deg);
    }
    100% {
        -webkit-transform: rotateY(0deg);
    }
}

@-ms-keyframes page_turn_with_bounce_from_right_out {
    0% {
        -ms-transform: rotateY(0deg);
    }
    100% {
        -ms-transform: rotateY(110deg);
    }
}

@-ms-keyframes page_turn_with_bounce_from_right_in {
    0% {
        -ms-transform: rotateY(-110deg);
    }
    50% {
        -ms-transform: rotateY(10deg);
    }
    70% {
        -ms-transform: rotateY(-8deg);
    }
    80% {
        -ms-transform: rotateY(0deg);
    }
    95% {
        -ms-transform: rotateY(-2deg);
    }
    100% {
        -ms-transform: rotateY(0deg);
    }
}

/* Page Turn With Bounce From Left */

@-webkit-keyframes page_turn_with_bounce_from_left_out {
    0% {
        -webkit-transform: rotateY(0deg);
    }
    100% {
        -webkit-transform: rotateY(-110deg);
    }
}

@-webkit-keyframes page_turn_with_bounce_from_left_in {
    0% {
        -webkit-transform: rotateY(110deg);
    }
    50% {
        -webkit-transform: rotateY(-10deg);
    }
    70% {
        -webkit-transform: rotateY(8deg);
    }
    80% {
        -webkit-transform: rotateY(0deg);
    }
    95% {
        -webkit-transform: rotateY(2deg);
    }
    100% {
        -webkit-transform: rotateY(0deg);
    }
}

@-ms-keyframes page_turn_with_bounce_from_left_out {
    0% {
        -ms-transform: rotateY(0deg);
    }
    100% {
        -ms-transform: rotateY(-110deg);
    }
}

@-ms-keyframes page_turn_with_bounce_from_left_in {
    0% {
        -ms-transform: rotateY(110deg);
    }
    50% {
        -ms-transform: rotateY(-10deg);
    }
    70% {
        -ms-transform: rotateY(8deg);
    }
    80% {
        -ms-transform: rotateY(0deg);
    }
    95% {
        -ms-transform: rotateY(2deg);
    }
    100% {
        -ms-transform: rotateY(0deg);
    }
}

/* Custom 1 */

@-webkit-keyframes custom_1_out {
    0% {}
    100% {
        opacity: 0;
    }
}

@-webkit-keyframes custom_1_in {
    0% {
        opacity: 0;
    }
    100% {}
}

@-ms-keyframes custom_1_out {
    0% {}
    100% {
        opacity: 0;
    }
}

@-ms-keyframes custom_1_in {
    0% {
        opacity: 0;
    }
    100% {}
}

/* Custom 2 */

@-webkit-keyframes custom_2_out {
    0% {}
    100% {
        opacity: 0;
    }
}

@-webkit-keyframes custom_2_in {
    0% {
        opacity: 0;
    }
    100% {}
}

@-ms-keyframes custom_2_out {
    0% {}
    100% {
        opacity: 0;
    }
}

@-ms-keyframes custom_2_in {
    0% {
        opacity: 0;
    }
    100% {}
}

/* Custom 3 */

@-webkit-keyframes custom_3_out {
    0% {}
    100% {
        opacity: 0;
    }
}

@-webkit-keyframes custom_3_in {
    0% {
        opacity: 0;
    }
    100% {}
}

@-ms-keyframes custom_3_out {
    0% {}
    100% {
        opacity: 0;
    }
}

@-ms-keyframes custom_3_in {
    0% {
        opacity: 0;
    }
    100% {}
}


/*   #endregion   */

/*   #region   ===== Form ===== */

.ssp-form_field_wrap label, .ssp-form_field_wrap input, .ssp-form_field_wrap select, .ssp-form_field_wrap textarea {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.ssp-form_field_wrap input, .ssp-form_field_wrap select, .ssp-form_field_wrap textarea {
    resize: none;
    overflow: hidden;
}

.ssp-form_field_wrap[data-state="error"] {
    position: relative;
}

.ssp-form_field_wrap::before {
    content: '';
    display: none;
}

.ssp-form_field_wrap[data-state="error"]::before {
    position: absolute;
    display: block;
    left: 0px;
    bottom: -16px;
    font-size: 12px;
    width: auto;
    height: 16px;
    z-index: 10;
    color: red;
    padding-left: 5px;
    padding-right: 5px;
    pointer-events: none;
}

[data-direction="rtl"] .ssp-form_field_wrap[data-state="error"]::before {
    right: 0px;
    left: auto;
}

.ssp-form_field[data-state="error"]::before {
    position: absolute;
    display: block;
    left: 0px;
    bottom: -16px;
    font-size: 12px;
    width: auto;
    height: 16px;
    z-index: 10;
    color: red;
    padding-left: 5px;
    padding-right: 5px;
    pointer-events: none;
}

.ssp-error_label {
    display: none;
}

[data-direction="rtl"] .ssp-error_label {
    direction: rtl;
}

.ssp-error_label[data-state="active"] {
    display: block;
}

.ssp-error_label.ssp-animation, .ssp-form_field_wrap[data-state="error"].ssp-animation::before {
    animation: ssp-error_label_animation 0.6s linear;
    -moz-animation: ssp-error_label_animation 0.6s linear;
    -webkit-animation: ssp-error_label_animation 0.6s linear;
    -o-animation: ssp-error_label_animation 0.6s linear;
    -ms-animation: ssp-error_label_animation 0.6s linear;
}

@keyframes ssp-error_label_animation {
    0% {
        opacity: 1;
    }
    25% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    75% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


/*   #endregion   */

/*   #region   ===== FAQ ===== */

#faq .ssp-faq_item {
    margin-top: 10px;
}
#faq .ssp-faq_item button {
    position: relative;
    width: 100%;
}
body:not([data-direction="rtl"]) #faq .ssp-faq_item button {
    text-align: left;
    padding: 10px 45px 10px 10px;
}
[data-direction="rtl"] #faq .ssp-faq_item button {
    text-align: right;
    padding: 10px 10px 10px 45px;
}
#faq .ssp-faq_item button:after{
    content: '';
    position: absolute;
    margin: auto 5px;
    top: 0px;
    bottom: 0px;
    height: 0px;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}
[data-direction="rtl"] #faq .ssp-faq_item button:after{
    left: 10px;
}
body:not([data-direction="rtl"]) #faq .ssp-faq_item button:after{
    right: 10px;
}
#faq .ssp-faq_item button[data-state="active"]:after{
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
#faq .ssp-faq_item div {
    position: relative;
    display: none;
    padding: 10px;
    background-color: #ffffff;
}
[data-direction="rtl"] #faq .ssp-faq_item div p {
    text-align: right;
    direction: rtl;
}


/*   #endregion   */

/*   #region   ===== Loading Page ===== */

.ssp-page[data-name="loading"] {
    height: calc(100vh - 180px);
}

.ssp-page[data-name="loading"]>div {
    height: 100%;
    /*display: table-cell;*/
    display: flex;
}

/*   #endregion   */

/*   #region   ===== Custom CSS ===== */

.ssp-page[data-name="examples"] a {
    direction: ltr;
    /*display: inline-block;*/
}

.ssp-page[data-name="examples"] strong {
    font-size: 20px;
}

.popup-1 {
    background-color: green !important;
    background-image: none !important;
    color: white;
    font-size: 16px;
    border-radius: 10px;
}

.popup-1:before, .popup-4:before {
    content: none !important;
}

.popup-2 {
    background-color: transparent !important;
    color: white;
    font-size: 16px;
    direction: ltr !important;
}

.popup-4 {
    background-color: transparent !important;
    background-image: url('../assets/images/samples/designed_popup.png');
    width: 300px;
    height: 381px;
    padding: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

#popup[active-popup=".popup-4"] .ssp-close_popup {
    margin-top: 10px;
    margin-right: -10px;
    width: 30px;
    height: 30px;
    background-image: url('../assets/images/samples/designed_popup_close_btn.png');
    border-radius: 0px;
    border: none;
    background-color: transparent;
    box-shadow: none;
}

#popup[active-popup=".popup-4"] .ssp-close_popup:before {
    display: none;
}

.popup-4 .content {
    width: 75%;
    padding-top: 60px;
    padding-left: 20px;
    color: white;
    font-size: 20px;
    margin: auto;
}

#form_submit_btn_container {
    min-height: 100px;
    margin-top: 15px;
}

/*   #endregion   */



/*** Global ***/
:root {
    --loader: rgba(0, 111, 230, 0.2);
    --loader-bg: #007bff;
}
* {
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
}
body {
    background: #ffffff;
}

/* Inputs */
textarea:-moz-placeholder,
input:-moz-placeholder,
textarea::-moz-placeholder,
input::-moz-placeholder,
textarea:-ms-input-placeholder,
input:-ms-input-placeholder,
textarea::-ms-input-placeholder,
input::-ms-input-placeholder,
textarea::input-placeholder,
input::input-placeholder {
    color: #858d95;
}
textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder,
input::placeholder,
textarea::placeholder {
    color: #858d95;
}
[data-direction="rtl"] select,
[data-direction="rtl"] input,
[data-direction="rtl"] textarea {
    direction: rtl;
}
input[type="color"] {
    padding: 0px;
}
input[type="checkbox"],
input[type="radio"]
{
    width: 20px; height: 20px;
    position: absolute;
    opacity: 0;
    z-index: -1;
}
body:not([data-direction="rtl"]) .ssp-radio_fieldset,
body:not([data-direction="rtl"]) .ssp-checkbox_fieldset {
    padding-left: 25px;
}
[data-direction="rtl"] .ssp-radio_fieldset,
[data-direction="rtl"] .ssp-checkbox_fieldset {
    padding-right: 25px;
}
body:not([data-direction="rtl"]) .ssp-radio_fieldset {
    padding-right: 8px;
}
[data-direction="rtl"] .ssp-radio_fieldset {
    padding-left: 8px;
}
.ssp-checkbox_fieldset {
    position: relative;
}
label.ssp-checkbox_label,
label.ssp-radio_label {
    width: auto;
    margin-bottom: 0;
    box-sizing: border-box;
}
label.ssp-checkbox_label::before,
label.ssp-radio_label::before {
    width: 1.125rem;
    height: 1.125rem;
    background-color: #fff;
    border: 1px solid #becad6;
    transition: all 250ms cubic-bezier(.27,.01,.38,1.06);
    box-shadow: none;
    position: absolute;
    display: block;
    content: "";
}
label.ssp-checkbox_label::before {
    top: 1px;
    border-radius: 2px;
}
label.ssp-radio_label::before {
    top: 2px;
    border-radius: 50%;
}
body:not([data-direction="rtl"]) label.ssp-checkbox_label::before,
body:not([data-direction="rtl"]) label.ssp-radio_label::before {
    left: 0;
}
[data-direction="rtl"] label.ssp-checkbox_label::before,
[data-direction="rtl"] label.ssp-radio_label::before {
    right: 0;
}
input:checked~.ssp-checkbox_label::before,
input:checked~.ssp-radio_label::before {
    background-color: #007bff;
    border-color: transparent;
}
input:active~.ssp-checkbox_label::before,
input:active~.ssp-radio_label::before {
    color: #fff;
    background-color: #b3d7ff;
    box-shadow: none;
}
label.ssp-checkbox_label::after {
    content: '';
    position: absolute;
    top: 4px;
    width: 4px;
    height: 10px;
    opacity: 0;
    -webkit-transform: rotate(45deg) scale(0);
    transform: rotate(45deg) scale(0);
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transition: border 250ms cubic-bezier(.27,.01,.38,1.06),-webkit-transform 250ms cubic-bezier(.27,.01,.38,1.06);
    transition: transform 250ms cubic-bezier(.27,.01,.38,1.06),border 250ms cubic-bezier(.27,.01,.38,1.06);
    transition: transform 250ms cubic-bezier(.27,.01,.38,1.06),border 250ms cubic-bezier(.27,.01,.38,1.06),-webkit-transform 250ms cubic-bezier(.27,.01,.38,1.06);
    transition-delay: .1s;
}
label.ssp-radio_label::after {
    content: '';
    border-radius: 50%;
    -webkit-transform: scale(0);
    transform: scale(0);
    background-image: none!important;
    position: absolute;
    background: #fff;
    width: 8px;
    height: 8px;
    top: 8px;
    /*left: 5px;*/
    transition: all 250ms cubic-bezier(.27,.01,.38,1.06);
    transition-delay: .1s;
    opacity: 0;
    transform: scale(0);
}
body:not([data-direction="rtl"]) label.ssp-checkbox_label::after {
    left: 7px;
}
[data-direction="rtl"] label.ssp-checkbox_label::after {
    right: 7px;
}
body:not([data-direction="rtl"]) label.ssp-radio_label::after {
    left: 6px;
}
[data-direction="rtl"] label.ssp-radio_label::after {
    right: 6px;
}
input:checked~.ssp-checkbox_label::after {
    opacity: 1;
    -webkit-transform: rotate(45deg) scale(1);
    transform: rotate(45deg) scale(1);
}
input:checked~.ssp-radio_label::after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
input,
select,
textarea{
    padding: .5rem 1rem;
    font-size: .95rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: 1px solid #becad6;
    font-weight: 300;
    will-change: border-color,box-shadow;
    border-radius: .375rem;
    box-shadow: none;
    transition: box-shadow 250ms cubic-bezier(.27,.01,.38,1.06), border 250ms cubic-bezier(.27,.01,.38,1.06);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
[data-browser="msie"] input,
[data-browser="msie"] textarea {
    padding: 6px 12px 12px 6px;
}
[data-browser="msie"] select {
    padding: 6px;
}
select::-ms-expand {
    display: none;
}
input:hover,
select:hover,
textarea:hover{
    border-color: #8fa4b8;
}
input:focus,
select:focus,
textarea:focus {
    color: #495057;
    background-color: #fff;
    border-color: #007bff;
    box-shadow: 0 0.313rem 0.719rem rgba(0,123,255,.1), 0 0.156rem 0.125rem rgba(0,0,0,.06);
}
/* Cancel Chrome autocomplete blue background */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:active  {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    transition: none !important;
}
input:-webkit-autofill:focus  {
    -webkit-box-shadow: 0 0.313rem 0.719rem rgba(0,123,255,.1), 0 0.156rem 0.125rem rgba(0,0,0,.06), 0 0 0 30px white inset !important;
    transition: none !important;
}
select {
    -webkit-appearance: none;
    height: calc(2.425rem + 2px);
    /*padding: .375rem 1.75rem .375rem .75rem;*/
    line-height: 1.2;
    color: #495057;
    border: 1px solid #becad6;
    font-weight: 300;
    font-size: .95rem;
    transition: box-shadow 250ms cubic-bezier(.27,.01,.38,1.06),border 250ms cubic-bezier(.27,.01,.38,1.06);
    border-radius: .375rem;
    background-size: 8px 10px;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
}
[data-direction="rtl"] select {
    background-position: left .75rem center;
}
body:not([data-direction="rtl"]) select {
    background-position: right .75rem center;
}

/*** Loader ***/

[data-mode='loading']:before {
    mix-blend-mode: color-burn;
}

/* Buttons */

.ssp-button {
    color: black;

    /*border-color: #007bff;
    background-color: #007bff;*/
    background: rgb(44,161,200);
    background: linear-gradient(180deg, rgba(145,204,220,1) 0%, rgba(75,171,198,1) 50%, rgba(144,204,219,1) 100%);
    box-shadow: none;
    font-weight: 400;
    border: 3px solid rgb(075,171,198);
    padding: 10px 30px;
    font-size: 24px;
    line-height: 1.125;
    border-radius: 14px;
    transition: all 250ms cubic-bezier(.27,.01,.38,1.06);
    filter: brightness(1) drop-shadow(2px 4px 0px rgb(032,088,102));
}
.ssp-button:not(:disabled):not(.disabled):hover {
    filter: brightness(1.15) drop-shadow(2px 4px 0px rgb(032,088,102));
    box-shadow: 0 5px 15px rgba(0,0,0,.05), 0 4px 10px rgba(0,123,255,.25);
}
.ssp-button:not(:disabled):not(.disabled):active {
    border-color: rgb(51, 128, 150);
    box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
}
.ssp-button:focus {
    box-shadow: 0 0 0 3px rgba(0,123,255,.15), 0 3px 15px rgba(0,123,255,.2), 0 2px 5px rgba(0,0,0,.1);
    outline: 0;
}


.ssp-button.ssp-red {
    background: rgb(237,207,207);
    background: linear-gradient(180deg, rgba(237,207,207,1) 0%, rgba(230,187,186,1) 100%);
    border-color: rgb(217 149 148);
    filter: brightness(1) drop-shadow(2px 4px 0px rgb(176,145,145));
}
.ssp-button.ssp-red:not(:disabled):not(.disabled):hover {
    filter: brightness(1.15) drop-shadow(2px 4px 0px rgb(176,145,145));
    box-shadow: 0 5px 15px rgba(0,0,0,.05), 0 4px 10px rgba(237,207,207,.25);
}
.ssp-button.ssp-red:not(:disabled):not(.disabled):active {
    border-color: rgb(182, 117, 116);
}



.ssp-button.ssp-green {
    background: rgb(209, 237, 207);
    background: linear-gradient(180deg, rgba(193,213,154,1) 0%, rgba(156,187,91,1) 50%, rgba(192,213,152,1) 100%);
    border-color: rgb(155,187,089);
    filter: brightness(1) drop-shadow(2px 4px 0px rgb(145, 176, 147));
}
.ssp-button.ssp-green:not(:disabled):not(.disabled):hover {
    filter: brightness(1.15) drop-shadow(2px 4px 0px rgb(145, 176, 145));
    box-shadow: 0 5px 15px rgba(0,0,0,.05), 0 4px 10px rgba(207, 237, 207, 0.25);
}
.ssp-button.ssp-green:not(:disabled):not(.disabled):active {
    border-color: rgb(75, 209, 86)4,1);
}




.ssp-button.ssp-blue_green:focus {
}

.ssp-button.ssp-blue_green {
    border-color: #00b8d8;
    background-color: #00b8d8;
}
.ssp-button.ssp-blue_green:not(:disabled):not(.disabled):hover {
    background-color: #00a2bf;
    border-color: #00a2bf;
    box-shadow: 0 5px 15px rgba(0,0,0,.05), 0 4px 10px rgba(0,184,216,.25);
}
.ssp-button.ssp-blue_green:not(:disabled):not(.disabled):active {
    background-color: #00a2bf;
    border-color: #00a2bf;
}
.ssp-button.ssp-blue_green:focus {
    box-shadow: 0 0 0 3px rgba(0,184,216,.15), 0 3px 15px rgba(0,184,216,.2), 0 2px 5px rgba(0,0,0,.1);
}


.ssp-button.ssp-brown {
    border-color: #755302;
    background-color: #755302;
}
.ssp-button.ssp-brown:not(:disabled):not(.disabled):hover {
    background-color: #5b4000;
    border-color: #5b4000;
    box-shadow: 0 5px 15px rgba(0,0,0,.05), 0 4px 10px rgba(117, 83, 2,.25);
}
.ssp-button.ssp-brown:not(:disabled):not(.disabled):active {
    background-color: #5b4000;
    border-color: #7c5a08;
}
.ssp-button.ssp-brown:focus {
    box-shadow: 0 0 0 3px rgba(117, 83, 2,.15), 0 3px 15px rgba(117, 83, 2,.2), 0 2px 5px rgba(0,0,0,.1);
}


.ssp-button.ssp-orange {
    border-color: #ffb400;
    background-color: #ffb400;
}
.ssp-button.ssp-orange:not(:disabled):not(.disabled):hover {
    background-color: #e6a200;
    border-color: #e6a200;
    box-shadow: 0 5px 15px rgba(0,0,0,.05), 0 4px 10px rgba(255,180,0,.25);
}
.ssp-button.ssp-orange:not(:disabled):not(.disabled):active {
    background-color: #e6a200;
    border-color: #cc9000;
}
.ssp-button.ssp-orange:focus {
    box-shadow: 0 0 0 3px rgba(255,180,0,.15), 0 3px 15px rgba(255,180,0,.2), 0 2px 5px rgba(0,0,0,.1);
}
button::-moz-focus-inner {
    border: 0;
}

/*** Navigation Menu ***/

#navigation {
    background-color: rgba(0, 43, 91, 0.95);
    -webkit-transition: 0.4s all ease;
    -moz-transition: 0.4s all ease;
    -o-transition: 0.4s all ease;
    -ms-transition: 0.4s all ease;
    transition: 0.4s all ease;
}
#navigation ul {
    margin: 10px auto;
    list-style-type: none;
}
#navigation h1 {
    color: #fff;
    text-align: center;
    margin: 50px auto;
    font-weight: 400;
}
[data-direction="rtl"] #navigation ul li{
    direction: rtl;
}
#navigation ul li {
    margin-top: 40px;
    text-align: center;
}
#navigation ul li a {
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    color: rgba(255,255,255,.75);
    transition: all 250ms cubic-bezier(.27,.01,.38,1.06);
}
#navigation ul li a:hover {
    color: rgba(255,255,255,.95);
}
#navigation ul li a[data-state="active"] {
    /*font-weight: bold;*/
    color: #fff;
}

/*** Header ***/

#header, #header_bar_wrapper {
    height: 60px;
}
/*
#header, #header_bar_wrapper, #header_btns {
    display: none;
}
*/
#pages {
    padding-bottom: 60px;
    padding-left: 10px; padding-right: 10px;
}
#header_btns #menu_btn {
    top: 12px;
    right: 25px;
    background-color: transparent;
    border: none;
    width: 35px;
    height: 35px;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    -ms-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}
#header_btns #menu_btn span.ssp-pass {
    width: 100%;
    height: 4px;
    background-color: #86beff;
    border-radius: 9px;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    -ms-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
#header_btns #menu_btn:hover span.ssp-pass {
    background-color: #c1ddff;
}
#header_btns #menu_btn[data-state="open"] span.ssp-pass {
    background-color: #fff;
}
#header_btns #menu_btn span.ssp-pass.ssp-pass-1{
    top: 3px;
}
#header_btns #menu_btn span.ssp-pass.ssp-pass-2 {
    top: 15px;
}
#header_btns #menu_btn span.ssp-pass.ssp-pass-3 {
    top: 15px;
}
#header_btns #menu_btn span.ssp-pass.ssp-pass-4 {
    top: 28px;
}
#header_btns #menu_btn[data-state="open"] span.ssp-pass.ssp-pass-1,
#header_btns #menu_btn[data-state="open"] span.ssp-pass.ssp-pass-4 {
    top:15px;width: 0%;left: 50%;
}
#header_btns #menu_btn[data-state="open"] span.ssp-pass.ssp-pass-2 {
    -webkit-transform: rotate(45deg) scale(1.2);
    -moz-transform: rotate(45deg) scale(1.2);
    -o-transform: rotate(45deg) scale(1.2);
    -ms-transform: rotate(45deg) scale(1.2);
    transform: rotate(45deg) scale(1.2);
}
#header_btns #menu_btn[data-state="open"] span.ssp-pass.ssp-pass-3 {
    -webkit-transform: rotate(-45deg) scale(1.2);
    -moz-transform: rotate(-45deg) scale(1.2);
    -o-transform: rotate(-45deg) scale(1.2);
    -ms-transform: rotate(-45deg) scale(1.2);
    transform: rotate(-45deg) scale(1.2);
}
#header_bar_wrapper {
    background-color: #007bff;
}
#header_bar {
    width: 65%;
    max-width: 970px;
    color: #fff;
}
#header_bar #header_bar_logo,
#header_bar #header_bar_links
{
    margin-top: 20px;
}
#header_bar_links li {
    margin-left: 16px;
}
#header_bar_links a {
    color: rgba(255,255,255,.5);
    text-decoration: none;
    transition: all 250ms cubic-bezier(.27,.01,.38,1.06);
}
#header_bar_links a:hover {
    color: rgba(255,255,255,.75);
}
#header_bar_links a[data-state="active"] {
    color: #fff;
}

/*** Footer ***/

#footer {
    height: 40px;
    background-color: #3e4246;
    color: white;
    text-align: center;
}
#footer div {
    padding-top: 10px;
    font-size: 14px;
}
[data-browser="edge"] #footer, [data-browser="msie"] #footer {
    box-shadow: #3e4246 0px 1px 0px; /* Solve 1px space at bottom ie+edge bug */
}


/*** Accessibility ***/

#header_btns #accessibility_btn {
    top: 12px;
    right: 70px;
    width: 35px;
    height: 35px;
}
#accessibility {
    top: 8px !important;
    right: 75px !important;
}


/*** Pages ***/

.ssp-page {
    margin: auto;
}
.ssp-page[data-name="loading"] {
    width: 100%;
}

/*** Popup ***/

#popup {
    background-color: rgba(0,0,0,0.5);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
}
#popup #popup_container #popup_content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 20px;
    max-width: 90%;
}
.ssp-popup {
    padding: 25px;
    background-color: #fff;
    min-width: 150px;
    word-break: break-word;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -webkit-transform: scale(0.8);
    border: none;
    border-radius: .625rem;
}

html:not([data-browser="edge"]):not([data-browser="msie"]) .ssp-popup {
    box-shadow: 0 0.46875rem 2.1875rem rgba(90,97,105,.1), 0 0.9375rem 1.40625rem rgba(90,97,105,.1), 0 0.25rem 0.53125rem rgba(90,97,105,.12), 0 0.125rem 0.1875rem rgba(90,97,105,.1);

}
.ssp-close_popup {
    margin-right: -5px;
    margin-top: 15px;
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: none;
    transition: all 250ms cubic-bezier(.27,.01,.38,1.06);
}
.ssp-close_popup:hover {
    /*background-color: #16181b;
    box-shadow: 0 5px 15px rgba(0,0,0,.05), 0 4px 10px rgba(33,37,41,.25);*/
}
.ssp-close_popup:active {
    /*background-color: #16181b;
    box-shadow: inset 0 3px 5px rgba(0,0,0,.125)!important;*/
}
.ssp-close_popup:before {
    font-size: 24px;
    color: #000000;
    /*top: -1px;*/
}
.ssp-close_popup:hover:before {
    color: #8c949d;
}



/*** Form ***/

.ssp-form_field_wrap input,
.ssp-form_field_wrap select,
.ssp-form_field_wrap textarea {
    width: 100%;
}
.ssp-form_field_wrap {
    margin-top: 15px;
    width: 100%;
    position: relative;
}
[data-direction="rtl"] .ssp-form_field_wrap {
    direction: rtl;
}
.ssp-form_field_wrap label:not(.ssp-checkbox_label) {
    width: 100%;
    font-size: 16px;
    padding-bottom: 6px;
    display: inline-block;
    /*padding: 5px;*/
    /*margin-bottom: 3px;*/
}
.ssp-form_field_wrap .ssp-checkbox_fieldset {
    padding-bottom: 6px;
}
.ssp-form_field_wrap input[data-state="error"]:focus,
.ssp-form_field_wrap select[data-state="error"]:focus,
.ssp-form_field_wrap textarea[data-state="error"]:focus {
    box-shadow: 0 5px 11.5px rgba(196,24,60,.1), 0 1px 1px 0.1rem rgba(196,24,60,.2);
}
input.ssp-form_field[data-state="error"],
select.ssp-form_field[data-state="error"],
textarea.ssp-form_field[data-state="error"]{
    animation: error 1s linear;
    -moz-animation: error 1s linear;
    -webkit-animation: error 1s linear;
    -o-animation: error 1s linear;
    -ms-animation: error 1s linear;
    border: 1px solid #c4183c;
    color: #c4183c;
    box-shadow: 0 5px 11.5px rgba(196,24,60,.1);
}
@keyframes error {
    0% {
        border: 1px solid #afafaf;
        color: black;
    }
    20% {
        border: 1px solid #c4183c;
        color: #c4183c;
    }
    40% {
        border: 1px solid #afafaf;
        color: black;
    }
    60% {
        border: 1px solid #c4183c;
        color: #c4183c;
    }
    80% {
        border: 1px solid #afafaf;
        color: black;
    }
    100% {
        border: 1px solid #c4183c;
        color: #c4183c;
    }
}
.ssp-error_label {
    font-size: 12px;
    color: #c4183c;
    height: 15px;
}



/*** Uploader ***/

.slash_uploader .uploader_drop_area {
	border: 1px solid #007bff !important;
    color: #007bff !important;
    transition: background-color .3s ease;
}
.slash_uploader.hover .uploader_drop_area {
	background: #007bff !important;
	color: white !important;
}
.slash_uploader.dragged_enter .uploader_drop_area {
	background: #0069da !important;
	color: white !important;
	border: 2px dashed white !important;
}
.slash_uploader.dragged_over .uploader_drop_area {
	background: #005abb !important;
	color: white !important;
	border: 2px dashed white !important;
}
.slash_uploader .uploader_drop_area_bottom {
	background: #99caff !important;
}
.slash_uploader .uploader_spinner {
	border: 2px solid #007bff !important;
	border-right: 2px solid rgba(1, 123, 254, 0.25) !important;
	border-bottom: 2px solid rgba(1, 123, 254, 0.25) !important;
	border-left: 2px solid rgba(1, 123, 254, 0.25) !important;
}
.slash_uploader .uploader_result_file a {
	color: #007bff !important;
}
.slash_uploader .uploader_progress_container .uploader_progress_bar>div>div {
	background: #007bff !important;
}


/*** FAQ ***/

#faq .ssp-faq_item {
    background-color: transparent;
    border: 1px solid #e9ecef;
}
#faq .ssp-faq_item button {
    font-size: 22px;
    color: #212529;
    border: none;
    background-color: #e9ecef;
    transition: all 250ms cubic-bezier(.27,.01,.38,1.06);
}
#faq .ssp-faq_item button:hover {
    background-color: #dadfe4;
    box-shadow: 0 5px 15px rgba(0,0,0,.05), 0 4px 10px rgba(233,236,239,.25);
}
#faq .ssp-faq_item button:active {
    background-color: #dadfe4;
    border-color: #cbd3da;
    background-image: none;
    box-shadow: inset 0 3px 5px rgba(0,0,0,.125)!important;
}
#faq .ssp-faq_item button:after{
    border-left: 5px solid transparent;
    border-top: 7px solid #000;
    border-right: 5px solid transparent;
    border-bottom: 0px solid transparent;
}
#faq .ssp-faq_item button[data-state="active"]:after{
    border-top-color: #979797;
}
#faq .ssp-faq_item div {
    background-color: #ffffff;
}
#faq .ssp-faq_item div p {
    color: #000000;
}
#faq .ssp-faq_item button,
#faq .ssp-faq_item div,
#faq .ssp-faq_item {
    border-radius: 10px;
}
#faq .ssp-faq_item div {
    border-top-right-radius: 0px;
    border-top-left-radius: 0px;
}









/*** Custom CSS ***/


/*** Components ***/

.ssp-container {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 20px;

    background-color: #fff;
    border: none;
    border-radius: .625rem;
    box-shadow: 0 0.46875rem 2.1875rem rgba(90,97,105,.1), 0 0.9375rem 1.40625rem rgba(90,97,105,.1), 0 0.25rem 0.53125rem rgba(90,97,105,.12), 0 0.125rem 0.1875rem rgba(90,97,105,.1);
}
[data-direction="rtl"] .ssp-container {
    direction: rtl;
}
.ssp-container .ssp-container_title {
    padding: 10px;
    border-top-right-radius: .625rem;
    border-top-left-radius: .625rem;
    border-bottom: 1px solid #f0f2f5;
}
.ssp-container .ssp-container_content {
    padding: 10px;
}
.ssp-container
{
    /* solves CSS animation issues that causes right border to disappear */
    /* Removed because is causes some problems
    -ms-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    */
}

/*** Form ***/

#example_form {
    margin: auto;
    width: 80%;
    padding-bottom: 40px;
}
#example_form #file_uploader {
    width: 100%;
}
#example_form button {
    width: 100%;
    height: 50px;
    font-size: 20px !important;
}

/*** Uploader ***/

#uploader-page .uploader-btn-1 {
    width: 100%;
}
#uploader-page .uploader-btn-2 {
    background-color: green;
    text-align: center;
    width: 200px;
    padding: 20px;
    margin: auto;
    cursor: pointer;
}
#uploader-page .uploader-btn-2:hover {
    background-color: yellow;
    transition: all 2s;
    -webkit-transition: all 2s;
    -ms-transition: all 2s;
    -o-transition: all 2s;
    -moz-transition: all 2s;
}
#uploader-page .uploader-btn-2-cancel {
    padding-top: 10px;
}
#uploader-page .uploader-btn-2-result {
    text-align: left;
    padding-left: 20px;
}


/*** Youtube ***/

.youtube_advanced_example {
    height: 300px;
}
.youtube_advanced_example_video, .youtube_advanced_example_links {
    float: left;
}
.youtube_advanced_example_links {
    padding-left: 15px;
}
.youtube_advanced_example .youtube-2 {
    width: 250px; height: 250px;
}




#pages h1 {
    text-align: center;
    font-weight: 400;
    font-size: 24px;
}
[data-direction="rtl"] #pages h1 {
    direction: rtl;
}

/*** Media Screen Queries ***/

@media (orientation:portrait) {}
@media (orientation:landscape) {}
@media (max-width: 640px){}


#navigation h1 {
    direction: rtl;
}
#header_bar #header_bar_logo {
    margin-top: 1px;
}
#header_bar_logo {
    cursor: pointer;
}

#header_bar_wrapper {
    background-color: #b7cfe6;
}
#header_btns #menu_btn span.ssp-pass {
    background-color: #002249;
}

#header_btns #menu_btn:hover span.ssp-pass {
    background-color: #093970;
}
#header_btns #menu_btn[data-state="open"]:hover span.ssp-pass {
    background-color: white;
}
#header_bar_logo img {
    mix-blend-mode: multiply;
    width: 145px;
}
#header_bar {
    width: 97%;
}
#footer {
    height: 60px;
    padding-top: 0px;
}
.footer_image {
    height: 38px;
    vertical-align: middle;
    /*
    position: relative;
    top: 4px;*/
}
#footer a {
    color: white;
}

#pages h1 {
    /*padding-top: 40px;*/
    font-size: 28px;
}
.ssp-button {
    font-size: 20px;
}
#popup .ssp-button {
    font-size: 14px;
    margin-bottom: 15px;
}
select,
select option {
  color: #000000;
}
select:invalid,
select option[value=""] {
  color: #999999;
}

.ssp-page {
    max-width: 1280px;
}
.ssp-page[data-name="loading"][data-state="active"] {
    display: flex;
}
.ssp-page[data-name="loading"] div {
    width: 40px; height: 40px;
}
.ssp-page[data-name="homepage"] .main_img {
    mix-blend-mode: darken;
    max-width: 100%;
    max-height: 200px;
}
.ssp-page[data-name="homepage"] .bottom_main_img {
    max-width: 40%;
    max-height: 60px;
}
.ssp-page[data-name="homepage"] #start_btn {
    /*float: right;
    position: relative;
    top: -105px;*/
}
.ssp-page[data-name="homepage"],
.ssp-page[data-name="logged_main"],
.ssp-page[data-name="call_details"] {
    text-align: center;
}

[data-active-page="homepage"] #footer {
    display: none !important;
}
.ssp-page[data-name="homepage"] h1 {
    font-weight: bold !important;
}
button[name="form_submit_btn"] {
    width: 100%;
}
.ssp-page[data-name="logged_main"] p {
    direction: rtl;
    font-size: 18px;
    margin-bottom: 40px;
}
.ssp-page[data-name="logged_main"] button {
    padding-top: 30px;
    padding-bottom: 30px;
    min-width: 200px;
}
.buttons_sep {
    width: 20px;
    height: 20px;
    display: inline-block;
}
@media (max-width: 410px){
    .buttons_sep {
        display: none;
    }
    .ssp-page[data-name="logged_main"] button {
        margin-top: 20px;
    }
}
.ssp-page[data-name="provide_service"] {
    text-align: center;
}
.ssp-page[data-name="provide_service"] .ssp-container_content {
    display: flex;
    align-items: center;
}
.ssp-page[data-name="provide_service"] .ssp-container_content div {
    font-size: 18px;
    line-height: 26px;
}
.ssp-page[data-name="provide_service"] .ssp-container_content div.content {
    width: 100%;
    padding-left: 15px;
}
.ssp-page[data-name="provide_service"] .ssp-container_content div.btn {
    width: 120px;
    text-align: center;
}
.ssp-page[data-name="provide_service"] .ssp-container_content div button {
    font-size: 14px;
    padding: 0.75rem 0.5rem;
    width: 120px;
}
.ssp-page[data-name="provide_service"] .call_box {
    cursor: pointer;
}
.ssp-page[data-name="provide_service"] table {
    width: 100%;
    border-collapse: collapse;
}
.ssp-page[data-name="provide_service"] table td,
.ssp-page[data-name="provide_service"] table th
{
    text-align: center;
    border: 1px solid rgb(87, 87, 87);
    padding: 5px;
}
.ssp-page[data-name="provide_service"] table td
{
    font-size: 14px;
}
.ssp-page[data-name="provide_service"] table td.btn,
.ssp-page[data-name="provide_service"] table th.btn
{
    width: 40px;
}
.ssp-page[data-name="provide_service"] .no_calls {
    padding: 20px;
    width: 80%;
    margin: auto;
}
.ssp-page[data-name="provide_service"] #calls_list_back {
    margin: auto;
}

.ssp-page[data-name="call_details"] {
    direction: rtl;
    font-size: 24px;
}


#pages {
    margin-top: 20px;
}

.small_btn {
    font-size: 16px;
    padding: 5px 15px;
}
.title {
    background: rgb(254,254,254);
    background: linear-gradient(180deg, rgba(254,254,254,1) 0%, rgb(177 217 96) 100%);
    box-shadow: none;
    border: 3px solid rgb(177 217 96);
    padding: 10px 24px;
    font-size: 24px;
    border-radius: 14px;
    filter: brightness(1) drop-shadow(2px 4px 0px rgb(166,176,147));
    padding-top: 20px;
    padding-bottom: 20px;
}

.title_2 {
    background: rgb(193,213,154);
    background: linear-gradient(180deg, rgba(193,213,154,1) 0%, rgba(156,187,91,1) 50%, rgba(192,213,152,1) 100%);
    box-shadow: none;
    border: 3px solid rgb(155,187,089);
    padding: 10px 24px;
    font-size: 24px;
    border-radius: 14px;
    filter: brightness(1) drop-shadow(2px 4px 0px rgb(078,097,040));
}
.purple_popup {
    background: rgb(177,160,198);
    background: linear-gradient(180deg, rgba(177,160,198,1) 0%, rgba(129,102,163,1) 50%, rgba(177,160,198,1) 100%);
    border: 3px solid rgb(128,100,161)
}
.green_popup {
    background: rgb(160, 198, 162);
    background: linear-gradient(180deg, rgb(201, 226, 198) 0%, rgb(131, 194, 131) 50%, rgb(201, 226, 198) 100%);
    border: 3px solid rgb(100, 161, 103)
}

.nj-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

#call_removal {
    display: none;
    margin-right: auto;
    margin-left: auto;
    margin-top: 10px;
}

@media (max-width: 500px) {
    .nj-flex {
        flex-direction: column;
    }
    .nj-flex button:first-child {
        order: 3;
    }
}
