﻿body {
    font-family: Nunito;
}

b {
    font-weight: 800;
}

a {
    color: var(--text-gray);
    transition: all .3s ease;
}

.a-white {
    color: white;
}

    .a-white:hover {
        color: #eaeaea;
    }

a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.fadeInUp {
    animation: fadeInUp forwards 1s ease;
}

.text-gray {
    color: var(--text-gray);
}

.navbar-right-link {
    margin-left: auto;
}

    .navbar-right-link:hover {
        cursor: pointer;
    }

/* Webkit Scrollbar */

::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    border-radius: 15px;
    background: lightgray;
}
    ::-webkit-scrollbar-thumb:hover {
        background: #ccc;
    }

/* Categories: */
.categories-container {
    display: flex;
    flex-direction: row;
    position: relative;
}

.categories {
    padding: 0 8%;
}

.category {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: box-shadow .4s ease;
}

    .category:hover {
        box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
        cursor: pointer;
    }

        .category:hover .category-icon, .category:hover .category-text, .back-category:hover .category-icon {
            color: var(--primary-color);
        }

.category-icon, .category-text {
    transition: all .4s ease;
    color: #7a7a7a;
}

.category-icon-container {
    text-align: center;
}

.category-text {
    font-weight: 600;
    text-align: center;
}

.lock {
    position: absolute;
    bottom: -3px;
    right: -2px;
    color: #fff;
    font-size: .7rem;
}

.triangle {
    position: absolute;
    bottom: -27px;
    right: -11px;
    color: var(--primary-color);
    font-size: 4rem;
    transform: rotate(45deg);
    transition: all .4s ease;
}

.back-category {
    transition: all .4s ease;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
}

.category-back {
    transition: all .4s ease; 
    display: flex;
    align-items: center;
    margin-right: 15px;
    cursor: pointer;
}

    .category-back:hover {
        color: var(--primary-color);
    }

/* Action Form Bread Crumb */

.breadcrumbs {
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-align: stretch;
    align-items: stretch;
    margin: 1rem 0;
    box-shadow: none;
    line-height: 1rem;
    border-radius: .1rem;
    border: 1px solid rgba(34, 36, 38, .15);
}

.breadcrumbs .step {
    position: relative;
    display: flex;
    flex: 1 0 auto;
    flex-wrap: wrap;
    flex-direction: row;
    vertical-align: middle;
    align-items: center;
    justify-content: center;
    margin: 0 0;
    padding: .8em 2em .8em 1.2em;
    background-color: #fff;
    color: rgba(0, 0, 0, .87);
    box-shadow: none;
    border: none;
    transition: background-color .1s ease, opacity .1s ease, color .1s ease, box-shadow .1s ease, webkit-box-shadow .1s ease;
    /*cursor: pointer;*/
    font-size: 1rem;
}

.breadcrumbs .step.active {
    cursor: default;
    background: #f3f4f5 !important;
}

/*.breadcrumbs .step:hover, .breadcrumbs .step:hover::after {
    background: #f9fafb;
    color: rgba(0, 0, 0, .8);
}*/

    .breadcrumbs .step.active::after {
        background-color: #f3f4f5;
        border-color: #f3f4f5;
    }

.breadcrumbs .step:last-child {
    border-radius: 0 .1rem .1rem 0;
}

.breadcrumbs .step > .icon {
    line-height: 1;
    font-size: 1.8em;
    margin: 0 .8rem 0 0;
}

    .breadcrumbs .step::after {
        display: none;
        position: absolute;
        z-index: 2;
        content: '';
        top: 50%;
        right: 0;
        border: medium none;
        background-color: #fff;
        width: 1.1em;
        height: 1.1em;
        border-style: solid;
        border-color: rgba(34, 36, 38, .15);
        border-width: 0 1px 1px 0;
        transition: background-color .1s ease,opacity .1s ease,color .1s ease,box-shadow .1s ease,-webkit-box-shadow .1s ease;
        transform: translateY(-50%) translateX(50%) rotate(-45deg);
    }

    .breadcrumbs .step:not(:last-child)::after {
        display: block;
    }

.breadcrumbs .step .content {
    transform: translateY(2px);
}

.breadcrumbs .step .content .title {
    font-weight: 700;
    font-size: 1.14em;
}

    .breadcrumbs .step .content .description {
        font-size: 0.91em;
    }

/* Buttons: */
/* Note: Buttons need to keep their browser specified outlines, this helps tremendously for keyboard accessibility */
.btn.disabled, .btn:disabled {
    cursor: not-allowed !important;
}

button.bubble-button {
    border-radius: 50%;
    box-shadow: 0px 2px 2px #d7d7d7;
    padding: 5px;
    transform: scale(0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none !important;
    border: none !important;
}

button.bubble-button-md {
    width: 32px;
    height: 32px;
    padding: 5px;
}

button.bubble-button-lg {
    width: 40px;
    height: 40px;
    padding: 8px;
}

button.icon-button {
    cursor: pointer;
    background-color: transparent;
    border: none;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    padding: 3px;
    font-size: 1.15rem;
}

    button.icon-button:hover, button.icon-button:active {
        color: var(--primary-color);
    }

button.round-button, input[type=button].round-button {
    color: #fff;
    background-color: var(--primary-color);
    border-radius: 20px;
    padding: 3px;
    min-width: 170px;
}
    button.round-button:hover, button.round-button:active {
        background-color: var(--dark-primary);
        color: #fff;
    }

    button.round-button:focus, button.round-button:active, button.round-button-secondary:focus, button.round-button-secondary:active {
        box-shadow: none;
    }

button.round-button-secondary {
    color: #fff;
    background-color: var(--text-light-gray);
    border-radius: 20px;
    padding: 3px;
    min-width: 170px;
}

    button.round-button-secondary:hover, button.round-button-secondary:active {
        background-color: var(--text-gray);
        color: #fff;
    }

button.text-button:hover {
    color: var(--primary-color);
}

/* Inputs: */

.input-underline .input-underliner {
    height: 2px;
    transition: all .3s ease;
    max-width: 0;
}

    .input-underline i {
        margin-right: 10px;
    }

    .input-underline input {
        border: 0;
        background-color: transparent;
        color: #fff;
        outline: none;
    }
    
        .input-underline-primary input::placeholder {
            color: var(--primary-color);
        }

        .input-underline-primary .input-underliner {
            background-color: var(--primary-color);
        }

        .input-underline-white .input-underliner {
            background-color: white;
        }
        .input-underline-white input::placeholder {
            color: #fff;
        }

.input-shadow {
    font-weight: 600 !important;
    color: var(--text-gray) !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    box-shadow: 0px 3px 6px 0px #dcdcdc;
    outline: none;
    border-bottom: solid 2px #fff;
    transition: all .3s ease;
}

    .input-shadow:focus {
        border-bottom: solid 2px var(--primary-color) !important;
        box-shadow: 0px 3px 6px 0px #aaa;
    }

.custom-file-label {
    font-weight: 600 !important;
    color: var(--text-gray) !important;
    border: none !important;
    box-shadow: 0px 3px 6px 0px #dcdcdc;
    outline: none;
    transition: all .3s ease;
}

    .custom-file-label:focus {
        box-shadow: 0px 3px 6px 0px #aaa;
    }

.custom-file-input:focus ~ .custom-file-label {
    box-shadow: 0px 3px 6px 0px #aaa;
    border-bottom: none !important;
}

.custom-file-input:active ~ .custom-file-label {
    box-shadow: 0px 3px 6px 0px #aaa;
    border-bottom: none !important;
}

.custom-file-input:hover ~ .custom-file-label::after {
    background-color: var(--text-light-gray);
}

.custom-file-input ~ .custom-file-label::after {
    height: 100%;
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
    transition: all .3s ease;
}

.custom-file-input:hover {
    cursor: pointer;
}


/* Notify Modal */

.modal-container {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 10000;
}

.notify-modal {
    position: absolute;
    background-color: #efefef;
    border-radius: 0.5rem;
    min-width: 30rem;
    min-height: 5rem;
    opacity: 0;
    transition: all .5s ease;
}

.notify-modal-display {
    opacity: 1;
    transform: translateY(0);
}

.notify-modal-header {
    padding: 1rem;
    border-bottom: 1px solid lightgray;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.notify-modal-header h4 {
    margin: 0;
}

.notify-modal-body {
    padding: 1rem;
}

.notify-modal-footer {
    padding: 1rem;
    border-top: 1px solid lightgray;
}

.contact-container {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-bottom: 1rem;
    align-items: center;
    justify-content: center;
}

.copy-privacy, .copy-privacy a {
    color: #fff;
    font-size: .7rem;
}

.copy-privacy {
    margin-top: 2rem;
}

.hint-box {
    padding: 10px;
    background-color: #efefef;
    border-left: 3px solid var(--primary-color);
    display: flex; align-items: center;
}

    .hint-box i {
        color: var(--primary-color);
    }

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(2px);
    }

    100% {
        opacity: 1;
        transform: translateY(-2px);
    }
}

@media(max-width: 768px){
    .weird-cont {
        position: unset !important;
    }
}

@media(max-width: 405px) {
    .card {
        min-width: 300px !important;
    }

    .navbar-right-link {
        font-size: .9rem;
    }
}

