:root {
    --dark-blue: #203A45;
    --light-blue: #009AD6;
    --linear-dark: linear-gradient(180deg, rgba(32, 58, 69, 0.8), rgba(32, 58, 69, 0) 100%);
    --linear-menu: linear-gradient(180deg, rgba(32, 58, 69, 0.8), rgba(32, 58, 69, 0.5), rgba(32, 58, 69, 0) 100%);
    --font-regular: 'Sofia Pro Regular';
    --font-Italic: 'Sofia Pro Italic';
    --font-ExtraLight: 'Sofia Pro ExtraLight';
    --font-UltraLight: 'Sofia Pro UltraLight';
    --font-ExtraLight-Italic: 'Sofia Pro ExtraLight Italic';
    --font-UltraLight-Italic: 'Sofia Pro UltraLight Italic';
    --font-Light: 'Sofia Pro Light';
    --font-Light-Italic: 'Sofia Pro Italic';
    --font-Medium: 'Sofia Pro Medium';
    --font-Medium-Italic: 'Sofia Pro Medium Italic';
    --font-SemiBold: 'Sofia Pro SemiBold';
    --font-SemiBold-Italic: 'Sofia Pro SemiBold Italic';
    --font-Bold: 'Sofia Pro Bold';
    --font-Bold-Italic: 'Sofia Pro Bold Italic';
    --font-Black: 'Sofia Pro Black';
    --font-Black-Italic: 'Sofia Pro Black Italic';
    --background-navbar: var(--linear-dark);
    --background-blur: #FFFFFF8f;
    --text-navbar-link: var(var(--dark-blue))
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: var(--font-regular);
}

html {
    overflow-x: hidden;
}

body {
    position: relative;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
}

body.darkMode {
    --background-navbar: var(--linear-dark);
    --background-blur: #fafafa4f;
    --text-navbar-link: white
}

body.lightMode {
    --background-navbar: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 100%);
    --background-blur: #ffffff8f;
    --text-navbar-link: var(--dark-blue)
}

.container {
    max-width: 1600px;
    padding: 33px 15px;
}

@media (max-width:778px) {
    .container {
        padding: 15px;
    }
}

nav {
    background: var(--background-navbar);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 121px;
    display: flex;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    z-index: 100;
}

nav .container {
    display: flex;
    flex: 1;
    gap: 32px;
}

nav .container .logo {
    width: 96px;
    height: auto;
}

nav .container .logo img {
    width: 100%;
    height: 100%;
    transition: .5s all ease;
    -webkit-transition: .5s all ease;
    -moz-transition: .5s all ease;
    -ms-transition: .5s all ease;
    -o-transition: .5s all ease;
}

nav .container .links {
    gap: 96px;
    display: flex;
    align-items: center;
    justify-content: end;
    flex: 1;
    z-index: 1000;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
}

nav .container .closeMenu,
nav .container .toggleMenu {
    display: none;
    cursor: pointer;
}

nav .container .toggleMenu {
    flex: 1;
}

nav .container .toggleMenu img {
    width: 32px;
    height: 32px;
}

body.darkMode nav .container .toggleMenu img {
    filter: invert(100%) sepia(71%) saturate(2%) hue-rotate(334deg) brightness(112%) contrast(101%);
    -webkit-filter: invert(100%) sepia(71%) saturate(2%) hue-rotate(334deg) brightness(112%) contrast(101%);
}

nav .container .linkMenu {
    list-style: none;
    gap: 36px;
    display: flex;
    align-items: center;
    margin: 0;
}

nav .container .linkMenu a {
    text-decoration: none;
    color: var(--text-navbar-link);
    transition: .5s all ease;
    -webkit-transition: .5s all ease;
    -moz-transition: .5s all ease;
    -ms-transition: .5s all ease;
    -o-transition: .5s all ease;
    border-bottom: 1px solid transparent;
    padding-block: 4px;
}

footer .container a.active,
nav .container .linkMenu a.active {
    color: var(--light-blue);
    font-family: var(--font-Bold);
    border-bottom: 1px solid var(--light-blue);
}

footer .container li:not(:last-child) a:not(.active):hover {
    border-bottom: 1px solid var(--dark-blue);
}

nav .container .linkMenu a:not(.active):hover {
    border-bottom: 1px solid var(--text-navbar-link);
}

.buttonsNavbar {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.buttonsNavbar a {
    transition: .5s all ease;
    -webkit-transition: .5s all ease;
    -moz-transition: .5s all ease;
    -ms-transition: .5s all ease;
    -o-transition: .5s all ease;
}

.buttonsNavbar::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 24px;
    left: -48px;
    background-color: var(--text-navbar-link);
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
}

.buttonsNavbar .talkBtn {
    background-color: transparent;
    border: 1px solid var(--text-navbar-link);
    padding: 12px 32px;
    border-radius: 32px;
    -webkit-border-radius: 32px;
    -moz-border-radius: 32px;
    -ms-border-radius: 32px;
    -o-border-radius: 32px;
    color: var(--text-navbar-link);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 9px;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
}

body.darkMode .buttonsNavbar .talkBtn img {
    filter: invert(100%) sepia(71%) saturate(2%) hue-rotate(334deg) brightness(112%) contrast(101%);
    -webkit-filter: invert(100%) sepia(71%) saturate(2%) hue-rotate(334deg) brightness(112%) contrast(101%);
}

.buttonsNavbar .talkBtn:hover {
    box-shadow: 0 0 8px 0 var(--text-navbar-link);

}

.buttonsNavbar .signinBtn {
    background-color: var(--light-blue);
    padding: 12px 32px;
    border-radius: 32px;
    -webkit-border-radius: 32px;
    -moz-border-radius: 32px;
    -ms-border-radius: 32px;
    -o-border-radius: 32px;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 9px;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
}

.buttonsNavbar .signinBtn:hover {
    box-shadow: 0 0 8px 0 var(--light-blue);
}

@media (min-width:1051px) and (max-width:1200px) {
    nav .container {
        gap: 16px;
    }

    .buttonsNavbar .signinBtn,
    .buttonsNavbar .talkBtn {
        padding: 12px 20px;
    }

    nav .container .linkMenu {
        gap: 16px;
    }

    nav .container .links {
        gap: 50px;
    }

    .buttonsNavbar::before {
        left: -25px;
    }
}

@media (max-width:1050px) {
    nav .container {
        gap: 12px;
    }

    nav .container .links {
        position: absolute;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100vh;
        top: -100vh;
        left: 0;
        background-color: #ffffffef;
        backdrop-filter: blur(3px);
        transition: .5s all ease;
    }

    body.darkMode nav .container .links {
        background: var(--linear-menu);
    }

    nav .container .links.show {
        top: 0;
    }
    nav:has(.links.show) {
        backdrop-filter: none;
    }
    nav .container .links .linkMenu {
        flex-direction: column;
        padding: 0;
    }

    nav .container .closeMenu,
    nav .container .toggleMenu {
        display: flex;
        width: 32px;
        height: 32px;
        align-items: center;
        justify-content: end;
    }

    body.darkMode nav .container .closeMenu {
        filter: invert(100%) sepia(71%) saturate(2%) hue-rotate(334deg) brightness(112%) contrast(101%);
        -webkit-filter: invert(100%) sepia(71%) saturate(2%) hue-rotate(334deg) brightness(112%) contrast(101%);
    }

    nav .container .closeMenu {
        position: absolute;
        top: 50px;
    }

    html[dir="ltr"] nav .container .closeMenu {
        right: 40px;
    }

    html[dir="rtl"] nav .container .closeMenu {
        left: 40px;
    }

    .buttonsNavbar {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .buttonsNavbar a {
        flex: 1;
        justify-content: center;
    }

    .buttonsNavbar::before {
        width: 100%;
        height: 1px;
        top: -48px;
        left: 0;
    }
}

nav .profile {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    position: relative;
}

nav .profile .imgProfile {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

nav .profile .imgProfile img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

nav .profile .profileName {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text-navbar-link);
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
}

nav .profile .profileName h5 {
    margin-bottom: 0;
    font-size: 18px;
}

nav .profile .profileName img {
    width: 16px;
    height: 14px;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
}

body.darkMode nav .profile .profileName img {
    filter: invert(100%) sepia(71%) saturate(2%) hue-rotate(334deg) brightness(112%) contrast(101%);
    -webkit-filter: invert(100%) sepia(71%) saturate(2%) hue-rotate(334deg) brightness(112%) contrast(101%);
}

nav .profile .profileMenu {
    position: absolute;
    min-width: 220px;
    text-align: center;
    top: calc(100% + 10px);
    right: 0;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    background-color: var(--background-blur);
    backdrop-filter: blur(10px);
    padding: 0;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    border: 0px solid var(--dark-blue);
    list-style: none;
    font-size: 18px;
    height: 0px;
    overflow: hidden;
    transition: height .5s ease, opacity 0.5s ease, padding 0.5s ease, border .5s ease;
    -webkit-transition: height .5s ease, opacity 0.5s ease, padding 0.5s ease, border .5s ease;
    -moz-transition: height .5s ease, opacity 0.5s ease, padding 0.5s ease, border .5s ease;
    -ms-transition: height .5s ease, opacity 0.5s ease, padding 0.5s ease, border .5s ease;
    -o-transition: height .5s ease, opacity 0.5s ease, padding 0.5s ease, border .5s ease;
    margin: 0;
}

nav .profile .profileMenu a {
    color: var(--dark-blue);
    text-decoration: none;
}

nav .profile .profileMenu.show {
    border: 1px solid var(--dark-blue);
    height: auto;
    padding: 12px;
}

nav .profile .profileMenu li {
    padding: 8px;
    transition: all .5s ease;

}

nav .profile .profileMenu li:hover {
    background: #efefef
}

nav .profile .profileMenu a {
    color: var(--dark-blue);
    text-decoration: none;
}

nav .profile .profileMenu li:not(:last-child) {
    border-bottom: 1px solid #afafaf;
}

.toggleModeBtn {
    padding: 4px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: fixed;
    bottom: 50px;
    right: 50px;
    background-color: var(--light-blue);
    border: none;
    outline: none;
    display: flex;
    align-items: baseline;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
}

.toggleModeBtn img {
    width: 28px;
    height: 28px;
    filter: invert(100%) sepia(71%) saturate(2%) hue-rotate(334deg) brightness(112%) contrast(101%);
    -webkit-filter: invert(100%) sepia(71%) saturate(2%) hue-rotate(334deg) brightness(112%) contrast(101%);
}

/* End Navbar */

.subTitleSection {
    font-family: var(--font-regular);
    color: var(--dark-blue);
    text-align: center;
    font-size: 16px;
}

.titleSection {
    font-family: var(--font-SemiBold);
    font-size: 40px;
    color: var(--dark-blue);
    text-align: center;
    max-width: 1100px;
    margin-inline: auto;
}

@media (max-width:1024px) {
    .titleSection {
        font-size: 28px;
    }
}

@media (max-width:778px) {
    .titleSection {
        font-size: 26px;
    }
}

@media (max-width:558px) {
    .titleSection {
        font-size: 24px;
    }
}

@media (max-width:448px) {
    .titleSection {
        font-size: 22px;
    }
}

.banner {
    margin-top: 206px;
}


.customBanner h1 {
    font-size: 58px;
    font-family: var(--font-SemiBold);
}

@media (max-width:1024px) {
    .customBanner h1 {
        font-size: 45px;
    }
}

@media (max-width:778px) {
    .customBanner h1 {
        font-size: 36px;
    }
}

@media (max-width:558px) {
    .customBanner h1 {
        font-size: 32px;
    }
}

.customBanner::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    mix-blend-mode: overlay;
    opacity: 0.2;
    z-index: -2;
}

.customBanner::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1B1D1F;
    mix-blend-mode: multiply;
    opacity: 0.4;
    z-index: -1;
}

/* Footer */
footer {
    border-top: 1px solid #E4E4E4;
    background: #FFF;
}

footer .container {}

footer .container ul {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    row-gap: 20px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

footer .container ul li {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 190px;
}

@media (max-width:558px) {

    footer .container ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 8px;
        align-items: flex-start;

        li:has(.logoFooter) {
            grid-column: span 2;
            margin: 0 auto
        }

        li {
            gap: 8px
        }
    }

    footer .container ul li {
        align-items: center;
        text-align: center;
    }
}

footer .container ul li:first-child {
    gap: 32px;
}

footer .container ul li:last-child {
    gap: 6px;
}

footer a,
footer p {
    color: var(--dark-blue);
    margin: 0;
    text-decoration: none;
    font-family: var(--font-Medium);
}

footer .container ul li .location {
    font-family: var(--font-Light);
}

footer .container ul li .phone {
    font-family: var(--font-Medium);
}

footer .container ul li .email {
    font-family: var(--font-Light);
}

footer .rolesFooter {
    background: #F2F4F5;
}

footer .rolesFooter p {
    font-family: var(--font-Light);
    font-size:clamp(14px,2vw,16px)
}

footer .rolesFooter .linkRoles {
    gap: 40px;

}

footer .rolesFooter .linkRoles a {
    position: relative;
    font-family: var(--font-Light);
    font-size:clamp(14px,2vw,16px)
}

footer .rolesFooter .linkRoles a:not(:last-child)::before {
    position: absolute;
    content: "";
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    background-color: var(--dark-blue);
    width: 1px;
    height: 18px;
}


footer .container a {
    border-bottom: 1px solid transparent;
    transition: .5s all ease;
    -webkit-transition: .5s all ease;
    -moz-transition: .5s all ease;
    -ms-transition: .5s all ease;
    -o-transition: .5s all ease;
}

button,
a {
    cursor: pointer !important;
}

.site {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    padding-top: 121px;

}

.site .main-site {
    flex: 1;
}


.custom-from-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.custom-from-group span[role="alert"] {
    color: #e55045;
}

.formPlan .parentInfo .containerDetails .containerInput {
    position: relative;
}

.remove-feature {
    position: absolute;
    top: 50%;
    right: 20px;
    translate: 0 -50%;
}

.nice-select .option {
    color: #FFF;
}

.nice-select .option:hover,
.nice-select .option.selected.focus {
    background-color: #f6f6f6;
    color: var(--dark-blue);
}

.nice-select:has(.option:not(.selected):hover):hover .option.selected.focus {
    color: #FFF;

}





.subtype-section .mobile-section {
    display: none;
}

.subtype-section table {
    border-collapse: separate;
    border-spacing: 0px 0px;
    text-align: center;
    width: 100%;
}

@media (max-width:778px) {
    .subtype-section table {
        display: none;
    }

    .subtype-section .mobile-section {
        display: flex;
    }
}

.subtype-section table th,
.subtype-section table td {
    padding: 12px 10px;
    border: 1px solid #203A454f;
}

.subtype-section table th {
    background: #009ad6;
    color: #FFF;
}

.subtype-section table th:first-child {
    border-top-left-radius: 8px;
}

.subtype-section table th:last-child {
    border-top-right-radius: 8px;
}

.subtype-section table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 8px;
}

.subtype-section table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 8px;
}

.subtype-section .mobile-section input,
.subtype-section table td input {
    padding: 8px;
    font-size: 16px;
    font-weight: 300;
    line-height: 18.4px;
    letter-spacing: 0.02em;
    outline: none;
    width: 100%;
    max-width: 514px;
    border-radius: 190px;
    -webkit-border-radius: 190px;
    -moz-border-radius: 190px;
    -ms-border-radius: 190px;
    -o-border-radius: 190px;
}
.subtype-section table td .output{
    border: 1px solid #009ad6;
}
table .containerDetails .containerSelect .nice-select{
    padding: 8px !important;
}
.subtype-section .remove-feature {
    position: static;
    translate: 0 0;
    width: auto;
    height: auto;
    border-radius: 8px;
    padding: 8px 20px;
    margin: 0;
}

.subtype-section .mobile-section {
    flex-direction: column;
    gap: 40px;
}

.subtype-section .mobile-section .nice-select {
    font-size: 16px;
    padding-right: 18px;
}

.subtype-section .mobile-section .subtype-item {
    padding-bottom: 40px;
    border-bottom: 1px solid #009AD6;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.subtype-section .mobile-section .subtype-item .subtype-field {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.subtype-section .mobile-section .subtype-item .subtype-field .title-item {
    flex-basis: 120px;
    flex-shrink: 2;
}

.subtype-section .mobile-section .subtype-item .subtype-field :not(.title-item) {
    flex: 1;
    max-width: 500px
}

.nice-select.disabled:after {
    display: none
}

.custom-btn-blue {
    border-radius: 41px;
    padding: 8px 24px;
    border: none;
    outline: none;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--light-blue);
    color: #FFF;
    transition: .5s all ease-out;
    -webkit-transition: .5s all ease-out;
    -moz-transition: .5s all ease-out;
    -ms-transition: .5s all ease-out;
    -o-transition: .5s all ease-out;
    text-wrap: nowrap;
}

.custom-btn-blue:hover {
    box-shadow: 0 0 10px 0 var(--light-blue);
    background-color: var(--light-blue);

}

.subtype-section .mobile-section .subtype-item .subtype-field div:has(.slider-range) {
    align-self: center;
}

.slider-range {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.container_select:has(.slider-range.filter-style) {
    border: 1px solid #dbdbdb;
    padding: 10px 16px;
    width: 100%;
    font-family: var(--font-UltraLight);
    border-radius: 24px;
}

.slider-range .range-input {
    --active: #009ad6;
    --value: #fff;
    --line: #cdd9ed;
    touch-action: none;
    -webkit-appearance: none;
    appearance: none;
    user-select: none;
    width: 80%;
    height: 2px;
    border-radius: 1px;
    background: var(--line);
    position: relative;
    padding-block: 2px !important;

    &::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 15px;
        height: 15px;
        background: #009ad6;
        border: 2px solid #009ad6;
        cursor: pointer;
        border-radius: 18px;
        transition: 0.5s ease;

        &:focus,
        &:active {
            padding: 8px;
        }
    }

    &:focus,
    &:active {
        outline: none;
    }
}

.slider-range .output {
    width: fit-content;
    padding: 4px 6px;
    margin: 0;
    font-family: cursive;
    font-size: 12px;
    color: #009ad6;
    text-align: center;
    background: #f5f9ff;
    border-radius: 99px; 
    transition: opacity 0.3s ease-in-out 0s;
    transform: none !important;
}

.result-count {
    margin-top: 12px;
    font-size: clamp(18px, 2.2vw, 26px);
    font-weight: 500;
}

.result-count span.result {
    font-weight: 700;
}

.customBanner {
    position: relative;
    color: #FFF;
}

.customBanner::after {
    background: var(--dark-blue);
    opacity: 1;
}

.customBanner .nice-select::after {
    border-bottom-color: #8f8f8f;
    border-right-color: #8f8f8f;
}

/* The Modal (background) */
.custom-image-modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1000;
    /* Sit on top */
    padding-top: 60px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.9);
    /* Black w/ opacity */
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
    text-align: center;
    /* Center the image */
}

.custom-image-modal.show {
    display: block;
}

/* Modal Content (image) */
.custom-image-modal .modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1200px;
    max-height: 90vh;
    /* Limit height to viewport height */
    object-fit: contain;
    /* Ensure image fits without cropping */
}

/* The Close Button */
.custom-image-modal .close-button {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.custom-image-modal .close-button:hover,
.custom-image-modal .close-button:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Add Animation */
@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(0)
    }

    to {
        -webkit-transform: scale(1)
    }
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}