﻿/*VARIABLES*/

:root {
    --yellow: #ffdc43;
    --grey: #212121;
}


#Viewbox {
    z-index: 80;
}

body::-webkit-scrollbar {
    width: 2px;
}

body::-webkit-scrollbar-track {
    background-color: #000;
}

body::-webkit-scrollbar-thumb {
    background-color: var(--yellow);
}

.worthify-dropdown-menu::-webkit-scrollbar {
    width: 2px;
}

.worthify-dropdown-menu::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 0 rgba(0,0,0,0);
}

.worthify-dropdown-menu::-webkit-scrollbar-thumb {
    background-color: var(--yellow);
}

.body-content{
    min-height: 100vh;
}
/*END OF VARIABLES*/


.preloader-wrapper {
    background: #000;
    /*    width: 100vw;
    height: 100vh;*/
    transition: .2s;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    z-index: 99999 !important;
    display: none;
    width: 100% !important;
    height: 100% !important;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}

.preloader-wrapper-inner {
    padding-top: 40vh;
}

.preloader-worthify {
    background: url('images/worthify_preloader.svg') no-repeat center center;
    background-size: cover;
    width: 100px;
    height: 100px;
    margin: auto;
    display: block;
    text-align: center;
    margin-bottom: 30px;
}

.preloader {
    background: url('images/loader.gif') no-repeat center center;
    background-size: cover;
    width: 50px;
    height: 50px;
    margin: auto;
    display: block;
    text-align: center;
}

.preloader-wrapper {
    background: #000;
    /*    width: 100vw;
    height: 100vh;*/
    transition: .2s;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    z-index: 99999 !important;
    display: none;
    width: 100% !important;
    height: 100% !important;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}

.preloader-wrapper-inner {
    padding-top: 40vh;
}

.preloader-worthify {
    background: url('images/worthify_preloader.svg') no-repeat center center;
    background-size: cover;
    width: 100px;
    height: 100px;
    margin: auto;
    display: block;
    text-align: center;
    margin-bottom: 30px;
}

.preloader {
    background: url('images/loader.gif') no-repeat center center;
    background-size: cover;
    width: 50px;
    height: 50px;
    margin: auto;
    display: block;
    text-align: center;
}
/*FONTS*/
@font-face {
    font-family: 'Montserrat'; /* Specify the font family name */
    src: url("../Fonts/Montserrat-VariableFont_wght.ttf") format('truetype');
}


h1, h2, h3, h4, h5, h6, p, input, textarea, select, a, label, span, button, td, th {
    font-family: "Montserrat" !important;
    text-decoration: none;
}

p {
    line-height: 1.7em !important;
}

p {
    font-size: 0.875rem !important;
}

input:not([type="checkbox"]):not([type="submit"]), select {
    width: 100%;
    border: none;
    border-radius: 0;
    background-color: #000;
    color: #FFF;
}

input::placeholder {
    color: #FFF;
    transition: color 500ms ease;
}

input:focus::placeholder {
    color: #a6a6a6;
}

.yellow {
    color: var(--yellow) !important;
    font-weight: bold;
}

.font-heavy {
    font-weight: 900 !important;
}

.font-bold {
    font-weight: bold !important;
}

.decoration-underline {
    text-decoration: underline;
}

.uppercase {
    text-transform: uppercase;
    font-weight: 700;
}

.section-heading {
    color: #fff;
    font-weight: 600;
    font-size: 2.25rem;
    margin-bottom: 4.5%;
}

.dark-font {
    color: #000;
}

/*END OF FONTS*/
/*SECTION GENERAL STYLES*/
.section-container {
    scroll-margin-top: 120px;
}

.section-inner {
    max-width: 1200px;
    width: 90%;
    margin-inline: auto;
    padding-top: 7px;
}

.section-intro {
    text-align: center;
}

    .section-intro.text-left {
        text-align: left;
    }

.dark-bg {
    background-color: #000;
    color: #FFF;
}

.yellow-bg {
    background-color: var(--yellow);
}

img {
    max-width: 100%;
    height: auto;
}

.worthify-btn {
    color: #000;
    padding: 13px 35px;
    display: inline-block;
    border: 1px solid #000;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1rem;
    text-align: center;
    line-height: 1.3em;
    transition: background-color 500ms ease, border-color 500ms ease, color 500ms ease;
    min-width: 170px;
}

    .worthify-btn:hover {
        background-color: #FFF !important;
        border-color: #FFF !important;
    }

    .worthify-btn.inverted {
        background-color: var(--yellow);
        border-color: var(--yellow);
    }

    .worthify-btn.light {
        background-color: #fff;
    }

    .worthify-btn.stroke {
        color: var(--yellow);
        border-color: var(--yellow);
        background-color: #000;
    }

        .worthify-btn.stroke:hover {
            color: #000 !important;
        }
/*END OF SECTION GENERAL STYLES*/

/*PROFILE STYLES*/

#ProfileWindow {
    position: fixed;
    right: 0;
    height: 100%;
    top: 0;
    background-color: #191919;
    transform: translateX(100vw);
    transition: transform 500ms ease;
    z-index: 999;
    overflow-y: auto;
    padding-bottom: 15px;
}

    #ProfileWindow .navigation-inner {
        padding-right: 10px;
    }

    #ProfileWindow.active {
        transform: translateX(0);
    }

    #ProfileWindow .profile-info-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #ProfileWindow .profile-image-wrapper {
        position: relative;
        padding-top: 30px !important;
    }

        #ProfileWindow .profile-image-wrapper label {
            height: 150px;
            background-position: center;
            background-size: cover;
            width: 150px;
            padding-top: 0;
        }

    #ProfileWindow .profile-close {
        min-height: 70px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        background-color: #1f1f1f;
        box-shadow: 0px 10px 10px -10px rgba(0,0,0,0.75);
        -webkit-box-shadow: 0px 10px 10px -10px rgba(0,0,0,0.75);
        -moz-box-shadow: 0px 10px 10px -10px rgba(0,0,0,0.75);
    }

        #ProfileWindow .profile-close .profile-image {
            cursor: pointer;
        }

    #ProfileWindow .profile-close-container {
        background-color: var(--yellow);
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #000;
        font-weight: bold;
    }

    #ProfileWindow .profile-main-image {
        border-radius: 50%;
        max-width: 150px;
    }

    #ProfileWindow img {
        border-radius: inherit;
        aspect-ratio: 1/1;
        object-fit: cover;
        padding: 0;
    }

    #ProfileWindow .input-fullwidth, #ProfileWindow .profile-image-wrapper {
        text-align: center;
        padding-top: 10px;
        cursor: pointer;
    }

        #ProfileWindow .profile-image-wrapper::after{
            content: "+";
            width: 30px;
            height: 30px;
            background-color: rgba(0,0,0,0.75);
            position: absolute;
            bottom: 0;
            right: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
        }

        .profile-image img {
            object-fit: cover;
            aspect-ratio: 1/1;
            cursor: pointer;
        }

#ProfileWindow .input-fullwidth {
    padding-inline: 50px;
}

    #ProfileWindow .input-fullwidth .profile-label {
        padding: 5px;
        text-transform: uppercase;
        opacity: 0.5;
        font-size: 14px;
    }

    #ProfileWindow .input-fullwidth input {
        text-align: center;
        padding: 7px;
        font-weight: 600;
        font-size: 14px;
        background-color: #101010;
    }

#ProfileWindow .profle-actions {
    width: 100%;
    padding-inline: 25px;
    margin-top: 30px;
}

#ProfileWindow .profile-action-container > button {
    width: 100%;
    font-size: 0.875rem;
}

#ProfileWindow .profile-action-container > .stroke {
    background-color: transparent;
    border-color: rgba(255,255,255,0.5);
    color: rgba(255,255,255,0.5);
    margin-bottom: 15px;
}

/*END OF PROFILE STYLES*/
