﻿.item {
}

.border-1 {
    border-width: 1px !important;
}

.border-2 {
    border-width: 2px !important;
}


.border-3 {
    border-width: 3px !important;
}


.form-control.invalid {
    border-color: #dc3545;
}

/*.form-control.valid {
    border-color: #28a745;
}*/

.validation-message {
    width: 100%;
    margin-top: .25rem;
    font-size: 80%;
    color: #dc3545;
}


.navbar .navbar-brand img {
    height: 20px;
}

.navbar .navbar-brand {
    padding-top: 0;
}
/*
.navbar .nav-link {
    color: #444343 !important;
}*/

.navbar .button-collapse {
    padding-top: 1px;
}

.card-intro .card-body {
    /*   padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    border-radius: 0 !important;*/
}

    .card-intro .card-body h1 {
        margin-bottom: 0;
    }

.card-intro {
    margin-top: 54px;
}

@media (max-width: 450px) {
    .card-intro {
        margin-top: 46px;
    }
}

@media (min-width: 1441px) {
    .card-intro {
        padding-left: 0 !important;
    }
}


.box {
    position: relative;
    max-width: 600px;
    width: 90%;
    height: 400px;
    background: #fff;
    box-shadow: 0 0 15px rgba(0,0,0,.1);
}

/* common */
.ribbon {
    width: 150px;
    height: 150px;
    overflow: hidden;
    position: absolute;
}

    .ribbon::before,
    .ribbon::after {
        position: absolute;
        z-index: -1;
        content: '';
        display: block;
        border: 5px solid #2980b9;
    }

    .ribbon span {
        position: absolute;
        display: block;
        width: 225px;
        padding: 15px 0;
        background-color: #3498db;
        box-shadow: 0 5px 10px rgba(0,0,0,.1);
        color: #fff;
        /*  font: 700 18px/1 'Lato', sans-serif;*/
        font: 700 18px/1 'Roboto', sans-serif;
        text-shadow: 0 1px 1px rgba(0,0,0,.2);
        /*text-transform: uppercase;*/
        text-align: center;
    }

/* top left*/
.ribbon-top-left {
    top: -10px;
    left: -10px;
}

    .ribbon-top-left::before,
    .ribbon-top-left::after {
        border-top-color: transparent;
        border-left-color: transparent;
    }

    .ribbon-top-left::before {
        top: 0;
        right: 0;
    }

    .ribbon-top-left::after {
        bottom: 0;
        left: 0;
    }

    .ribbon-top-left span {
        right: -25px;
        top: 30px;
        transform: rotate(-45deg);
    }

/* top right*/
.ribbon-top-right {
    top: -10px;
    right: -10px;
}

    .ribbon-top-right::before,
    .ribbon-top-right::after {
        border-top-color: transparent;
        border-right-color: transparent;
    }

    .ribbon-top-right::before {
        top: 0;
        left: 0;
    }

    .ribbon-top-right::after {
        bottom: 0;
        right: 0;
    }

    .ribbon-top-right span {
        left: -25px;
        top: 30px;
        transform: rotate(45deg);
    }

/* bottom left*/
.ribbon-bottom-left {
    bottom: -10px;
    left: -10px;
}

    .ribbon-bottom-left::before,
    .ribbon-bottom-left::after {
        border-bottom-color: transparent;
        border-left-color: transparent;
    }

    .ribbon-bottom-left::before {
        bottom: 0;
        right: 0;
    }

    .ribbon-bottom-left::after {
        top: 0;
        left: 0;
    }

    .ribbon-bottom-left span {
        right: -25px;
        bottom: 30px;
        transform: rotate(225deg);
    }

/* bottom right*/
.ribbon-bottom-right {
    bottom: -10px;
    right: -10px;
}

    .ribbon-bottom-right::before,
    .ribbon-bottom-right::after {
        border-bottom-color: transparent;
        border-right-color: transparent;
    }

    .ribbon-bottom-right::before {
        bottom: 0;
        left: 0;
    }

    .ribbon-bottom-right::after {
        top: 0;
        right: 0;
    }

    .ribbon-bottom-right span {
        left: -25px;
        bottom: 30px;
        transform: rotate(-225deg);
    }

/* Hide Google ReCaptcha Badge */
.grecaptcha-badge {
    visibility: hidden;
}


.separator {
    display: flex;
    align-items: center;
    text-align: center;
}

    .separator::before, .separator::after {
        content: '';
        flex: 1;
        border-bottom: 1px solid #000;
    }

    .separator::before {
        margin-right: .25em;
    }

    .separator::after {
        margin-left: .25em;
    }


.comment-container {
    position: relative;
}

.chain {
    border-left: 2px solid lightgray;
    position: absolute;
    height: 100%;
    left: 20px; /* for you to adjust and line up */
}

.chain-top {
    top: 0%;
}

.chain-bottom {
    top: 5%;
}


.comment {
    border: 0px solid;
    border-radius: 8px;
    background: #4285f4;
    color: white;
    /*max-width: 300px;  */
}

.comment-outside {
    font-size: 35px;
    margin-right: 16px;
    background: white;
    z-index: 10;
}

.comment-icon {
    font-size: 30px;
    margin-right: 16px;
    background: white;
    color: lightgray;
    z-index: 10;
}

.circleBase {
    border-radius: 100%;
}

.circle1 {
    width: 40px;
    height: 40px;
    background: #4285f4;
    border: 5px solid white;
    color: white;
    z-index: 10;
}

.radius-md {
    border-radius: 8px;
}

.modal-slideup {
    position: fixed;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: auto;
    z-index: 9999;
    overflow: auto;
    -webkit-animation: modal-slideup-bounce 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
    animation: modal-slideup-bounce 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

    .modal-slideup::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }

.modal-slideup-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 100%;
    background-color: #fefefe;
    border-radius: 10px 10px 0 0;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    -webkit-animation: modal-slideup-bounce 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
    animation: modal-slideup-bounce 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

.modal-slideup-header {
    display: flex;
    padding: 1rem 0.25rem 0.25rem .25rem;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    text-align: center;
}

.modal-slideup-title {
    padding: 1rem 0.25rem 0.25rem .25rem;
    width: 100%;
    text-align: center;
}

.modal-slideup-title-bold {
    padding: 1rem 0.25rem 0.25rem .25rem;
    width: 100%;
    text-align: center;
    font-weight: bold;
}

.modal-slideup-body {
    padding: 1rem;
    text-align: center; 
}

.modal-slideup-button-group {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    padding: 10px;
}

.modal-slideup-button {
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
    color: white;
    border: none;
    cursor: pointer;
}

    .modal-slideup-button:first-child {
        background-color: #4285F4;
        text-decoration-color: #FFFFFF;
        color: white;
        font-weight: bold;
    }

    .modal-slideup-button:last-child {
        background-color: transparent;
        border: 1px solid #000000;
        color: black;
    }

.modal-slideup-button-simple {
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
    color: white;
    border: none;
    cursor: pointer;
    background-color: #4285F4;
    text-decoration-color: #FFFFFF;
    font-weight: bold;
}

@-webkit-keyframes modal-slideup-bounce {
    0% {
        bottom: -100%;
    }

    50% {
        bottom: 10%;
    }

    70% {
        bottom: -5%;
    }

    100% {
        bottom: 0;
    }
}

@keyframes modal-slideup-bounce {
    0% {
        bottom: -100%;
    }

    50% {
        bottom: 10%;
    }

    70% {
        bottom: -5%;
    }

    100% {
        bottom: 0;
    }
}


.simple-body {
    margin: 20px;
}

.simple-body-text {
    padding: 1rem 0.25rem 0.25rem .25rem;
    width: 100%;
    text-align: center;
}

.simple-body-text-bold {
    padding: 1rem 0.25rem 0.25rem .25rem;
    width: 100%;
    text-align: center;
    font-weight: bold;
}

.simple-button {
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
    color: white;
    border: none;
    background-color: #4285F4;
    text-decoration-color: #FFFFFF;
    font-weight: bold;
    cursor: pointer;
}

.simple-center {
    text-align: center;
}

.simple-digit {
    text-align: center;
    padding-left: 4px;
    padding-right: 4px;
    margin-left: 4px;
    margin-right: 4px;
}

.simple-button-group {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    padding: 10px;
}

.simple-hyperlink-text {
    padding: 1rem 0.25rem 0.25rem .25rem;
    width: 100%;
    color: #4285F4;
    text-align: center;
}

.simple-title-bold {
    padding: 1rem 0.25rem 0.25rem .25rem;
    width: 100%;
    text-align: center;
    font-weight: bold;
}

.simple-title {
    padding: 1rem 0.25rem 0.25rem .25rem;
    width: 100%;
    text-align: center;
}

.scrollable-menu-content {
    max-height: 1000px;  /* Adjust the height as needed  */
    overflow-y: auto;
    padding-bottom: 60px; /* Allow for safari footer which hides/shows depending on user interaction */
}