button {
    border: none;
}

* {
    scrollbar-width: thin;
    font-family: 'Poppins' !important;
}

.page-top-bottom-space {
    width: 100%;
    height: 50px;
}

.page-top-bottom-space.little {
    height: 20px;
}

.no-padding {
    padding: 0px !important;
}

body {
    position: relative;
    min-height: 100vh;
    margin: 0px;
}

html {
    scroll-behavior: smooth;
}

.anti-row-padding {
    padding-left: 15px;
    padding-right: 15px;
}

.anti-row-padding-right {
    padding-right: 15px;
}

.anti-row-padding-left {
    padding-left: 15px;
}

label {
    cursor: pointer;
}

.arrow-down-icon {
    -webkit-mask: url(l/images/dropdown-arrow-down.svg) no-repeat center;
    mask: url(/images/dropdown-arrow-down.svg) no-repeat center;
}

button:focus {
    outline: none !important;
}

a {
    text-decoration: none !important;
}

.rotated {
    transform: rotate(-90deg);
}

.image-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-container {
    text-align: center;
    cursor: pointer;
}

.item-container img {
    max-width: 100%;
    max-height: 100%;
}

.full-width-container {
    padding-right: 15px;
    padding-left: 15px;
}

.image-container.rounded-square {
    aspect-ratio: 100/100;
}

.image-container.rounded-square img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    overflow-clip-margin: unset;
    overflow: hidden;
}

.image-container.rounded-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow-clip-margin: unset;
    overflow: hidden;
    border-radius: 15px;
}

.main-title {
    font-size: 48px;
    font-weight: 400;
    text-align: center;
}

.main-title.white {
    color: white;
}

.modal-body .close {
    right: 18px;
    font-size: 35px;
    top: 7px;
}

.scroll-header-padding-top {
    scroll-margin-top: 120px;
}

a.image-vizualizer-link {
    display: contents;
}

.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    /* Safari */
    animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.share-icons img {
    width: 50px;
    margin: 0px 5px;
}

.social-share-modal h1 {
    font-size: 32px;
    font-weight: 400;
}

.interact-icon {
    margin-left: 10px;
    width: 24px;
    cursor: pointer;
}

.hidden {
    display: none;
}

.hidden.visible {
    display: initial;
}

@media (max-width:767px) {
    .container.full-extended-width {
        max-width: 98%;
    }

    .main-title {
        font-size: 32px;
    }

    .page-top-bottom-space {
        height: 25px;
    }

    .interact-icon {
        width: 30px;
    }
}