﻿body {
    font-family: 'Barlow', sans-serif;
}

html {
    scroll-behavior: smooth;
}

#back-to-top-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    font-size: 20px;
    border: none;
    outline: none;
    background-color: #000;
    color: white;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 50%;
}

    #back-to-top-btn:hover {
        background-color: #555;
    }

/* Error Message ----------------------------------------------------------------------- */
.errorMessage {
    color: red;
}

.validation-summary-errors,
.field-validation-error {
    color: red;
}

/* Navigation Bar */
.NavbarItem {
    position: relative;
    font-size: 18px;
}

    .NavbarItem::after {
        content: '';
        opacity: 0;
        transition: all 0.2s;
        height: 3px;
        width: 100%;
        background-color: #a70c12;
        position: absolute;
        bottom: 0;
        left: 0;
    }

    .NavbarItem:hover::after {
        opacity: 1;
        color: brown;
    }

.LoginIcon i {
    font-size: 30px;
}

.LoginIcon:hover::after {
    opacity: 1;
}

.LoginIcon:hover {
    color: #a70c12;
    transition: 0.3s;
}

/* Footer */
.footerColor {
    background-color: #a70c12;
}

.address {
    max-width: 230px;
    height: auto;
    border: 1px solid rgba(210, 210, 210, 1);
}

.bi-footer {
    font-size: 20px;
}

.getSocial img {
    width: 40px;
    border-radius: 15%;
}

/* Other */
.h1-title {
    font-size: 38px;
    font-weight: 500;
}

.h2-title {
    font-size: 31px;
    font-weight: 500;
}

.h3-title {
    font-size: 28px;
    font-weight: 500;
}

.h4-title {
    font-size: 24px;
    font-weight: 700;
}

.h5-title {
    font-size: 20px;
    font-weight: 700;
}

.text-size {
    font-size: 19px;
}

p {
    font-size: 1.25rem;
}

.small-p {
    font-size: 16px;
}

.xsmall-p {
    font-size: 12px;
}

.small-header {
    font-size: 10px;
}

.toggler-icon:hover {
    color: red;
    border-color: #a70c12;
}

.displayForm {
    max-width: 730px;
    background-color: #ffffff;
    border-radius: 10px;
    position: relative;
    display: flex;
    justify-content: center;
    margin: 50px auto;
    box-shadow: 10px 10px 35px 0px #3d3d3d;
    overflow: hidden;
}

    .displayForm .formContent {
        padding: 20px 45px;
        position: relative;
        width: 100%;
        justify-content: center;
    }

        .displayForm .formContent label {
            font-weight: 500;
            font-size: 1rem;
            color: #666;
            margin-bottom: 8px;
        }

        .displayForm .formContent .input-fieldBar {
            width: 100%;
            display: flex;
            align-items: center;
            padding: 10px;
            border-radius: 5px;
            background-color: #ededed;
            transition: box-shadow 0.25s;
        }

            .displayForm .formContent .input-fieldBar:focus-within {
                box-shadow: 0 0 3px rgba(0, 0, 0, 0.75);
            }

        .displayForm .formContent .input-field {
            outline: none;
            border: none;
            background: transparent;
            font-size: 1rem;
            width: 100%;
        }

.titleUnderline {
    border-bottom: 3px solid #a70c12;
    width: fit-content;
    padding-bottom: 5px;
}

.btn {
    font-size: 16px;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 5px;
    padding-right: 5px;
    text-align: center;
    border-radius: 40px;
    box-shadow: 0px 4px 7px 0px #3d3d3d;
}

.btn-curve {
    padding: 8px 40px;
}

.btn-flexiRed {
    background-color: #a70c12;
    color: white;
}

    .btn-flexiRed:hover {
        background-color: #750c0f;
        color: white;
    }

    .btn-flexiRed:focus {
        background-color: #290405;
        color: white;
    }

    .btn-flexiRed:first-child:active {
        background-color: #290405;
        color: white;
        border: none;
    }

.btn-greyReset {
    background-color: #7c7c7c;
    color: white;
}

    .btn-greyReset:hover {
        background-color: #aaaaaa;
        color: white;
    }

    .btn-greyReset:focus {
        background-color: #616161;
        color: white;
    }

    .btn-greyReset:first-child:active {
        background-color: #616161;
        color: white;
        border: none;
    }

.radioBtnContainer {
    position: relative;
    padding-left: 25px;
    cursor: pointer;
}

    .radioBtnContainer input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

.radioBtn {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border: 1px solid #b3b3b3;
    border-radius: 50%;
}

.radioBtnContainer:hover input ~ .radioBtn {
    background-color: #ccc;
}

.radioBtnContainer input:checked ~ .radioBtn {
    background-color: #2196F3;
}

.radioBtn:after {
    content: "";
    position: absolute;
    display: none;
}

.radioBtnContainer input:checked ~ .radioBtn:after {
    display: block;
}

.radioBtnContainer .radioBtn:after {
    top: 6px;
    left: 6px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: white;
}

.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s, transform 0.8s;
}

.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s, transform 0.8s;
}

    .slide-left.show, .slide-right.show {
        opacity: 1;
        transform: translateX(0);
    }