body {
    font-family: "Montserrat", sans-serif;
    color: #212529;
    background-color: transparent;
}

.hidden {
    display: none !important;
}

.text-ubuntu {
    font-family: "Ubuntu", sans-serif;
}

.input-custom-error {
    border-top: 1px solid red;
    border-bottom: 1px solid red;
    border-right: 1px solid red;
}

.input-error {
    border: 1px solid red;
}

.text-error {
    color: red;
}

.bg-green {
    background-color: #18b975 !important;
    color: white !important;
}

.bg-green-secondary {
    background-color: #c7eede !important;
    color: #18b975 !important;
}

.bg-green-light {
    background-color: #c7eede;
    color: #212529;
}

.btn-light-blue {
    background-color: #ebf5ff !important;
    border-color: #ebf5ff !important;
    color: #323232 !important;
    font-weight: 700 !important;
}

.rounded-pill {
    border-radius: 50px;
}

.text-green {
    color: #18b975;
}

.btn-sm {
    padding: 8px !important;
    font-size: 14px !important;
}

.btn-custom {
    border-radius: 40px;
    padding: 12px 46px;
    font-size: 22px;
    font-weight: 700;
}

.btn-custom-back {
    border-radius: 40px;
    padding: 10px 17px;
    font-size: 22px;
    font-weight: 700;
}

.btn-custom-round {
    border-radius: 40px;
    padding: 12px 18px;
    font-size: 22px;
    font-weight: 700;
}

.btn-custom-outline-green-round {
    border: 1px solid #6c757e;
    color: #6c757e;
    background-color: white;
    border-radius: 40px !important;
    padding: 12px 24px !important;
    font-size: 14px !important;
    /*margin: 10px;*/
}

.btn-custom-outline-green-round:hover:not(:disabled),
.btn-custom-outline-green-round:focus:not(:disabled),
.btn-custom-outline-green-round.active {
    color: white;
    border: 1px solid #18b975;
    background-color: #18b975;
}

.form-custom-control {
    height: 64px !important;
    padding: 0px !important;
}

.form-control {
    height: 64px;
    font-size: 24px;
    border-radius: 8px;
    padding: 21px;
    border-left: none;
}

.input-group-text {
    background-color: white;
    font-size: 24px;
    border-right: none;
    border-radius: 8px;
    padding-left: 18px;
    padding-right: 18px;
    color: #6c757e;
}

.thumbs-up {
    bottom: 35px;
    position: relative;
    padding: 0px 30px;
    background: white;
}

.modal-content {
    border-top-left-radius: 20px !important;
    border-top-right-radius: 20px !important;
    border-top: none !important;
}

.modal-backdrop {
    opacity: 0.5;
}

.progress {
    border-radius: 0px;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
}

/** SPINNER CREATION **/
.loader-1 {
    position: relative;
    text-align: center;
    margin: 200px auto;
    z-index: 9999;
    display: block;
    width: 80px;
    height: 80px;
    border: 5px solid #f5f5f5;
    border-radius: 50%;
    border-top-color: #18b975;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
}

.loader-2 {
    position: relative;
    text-align: center;
    margin: 20px auto;
    z-index: 9999;
    display: block;
    width: 80px;
    height: 80px;
    border: 5px solid #f5f5f5;
    border-radius: 50%;
    border-top-color: #18b975;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

/** MARQUEE **/
.marquee {
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
}

.marquee img {
    display: inline-block;
    margin-left: 100%;
    animation: marquee 15s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}

.justify-start {
    justify-content: flex-start;
}

.justify-end {
    justify-content: flex-end;
}

.justify-between {
    justify-content: space-between;
}

.px-50px {
    padding-left: 50px !important;
    padding-right: 50px !important;
}

fieldset.is-invalid div.input-group div.input-group-text,
fieldset.is-invalid div.input-group span.input-group-text {
    border-color: #dc3545;
}

fieldset.is-valid div.input-group div.input-group-text,
fieldset.is-valid div.input-group span.input-group-text {
    border-color: #28a745;
}
