@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    font-family: 'Montserrat', sans-serif;
}

body {
    padding: 5px;
    background-color: #1abc9c;
}

p {
    margin: 0%;
}

a:link {
  text-decoration: none;
  color: #1d3944;
}

a:visited {
  text-decoration: none;
  color: #1d3944;
}

a:hover {
  text-decoration: underline;
  color: #1d3944;
}

a:active {
  text-decoration: underline;
  color: #1d3944;
}


.container {
    max-width: 900px;
    margin: 20px auto 10px;
    overflow: hidden;
    background-color: #f8f9fa;
    border-radius: 5px;
}

.box-1 {
    max-width: 100%;/*450px;*/
    padding: 10px 40px;
    user-select: none;
}

.box-1 div .fs-12 {
    font-size: 8px;
    color: white;
}

.box-1 div .fs-14 {
    font-size: 15px;
    color: white;
}

.box-1 img.pic {
    width: 20px;
    height: 20px;
    object-fit: cover;
}

.box-1 img.mobile-pic {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.box-1 .name {
    font-size: 13px;
    font-weight: 600;
}

.dis {
    font-size: 12px;
    font-weight: 500;
}

label.box {
    width: 100%;
    font-size: 12px;
    background: #ddd;
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 5px;
    cursor: pointer;
    border: 1px solid transparent;
}

#one:checked~label.first,
#two:checked~label.second,
#three:checked~label.third {
    border-color: #7700ff;
}

#one:checked~label.first .circle,
#two:checked~label.second .circle,
#three:checked~label.third .circle {
    border-color: #1abc9c;
    background-color: #fff;
}

label.box .course {
    width: 100%;
}

label.box .circle {
    height: 12px;
    width: 12px;
    background: #ccc;
    border-radius: 50%;
    margin-right: 15px;
    border: 4px solid transparent;
    display: inline-block;
}

input[type="radio"] {
    display: none;
}

.box-2 {
    max-width: 100%;/*450px;*/
    padding: 10px 40px;
    position: relative;
}

.box-2 .box-inner-2 {
    margin-top: 45px;
}

.box-2 .box-inner-2 input.form-control {
    font-size: 12px;
    font-weight: 600;
}

.box-2 .box-inner-2 .inputWithIcon {
    position: relative;
}

.box-2 .box-inner-2 .inputWithIcon span {
    position: absolute;
    left: 15px;
    top: 8px;
}

.box-2 .box-inner-2 .inputWithcheck {
    position: relative;
}

.box-2 .box-inner-2 .inputWithcheck span {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: green;
    font-size: 12px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 15px;
    top: 6px;
}

.form-control:focus,
.form-select:focus {
    box-shadow: none;
    outline: none;
    border: 1px solid #7700ff;
}

.border:focus-within {
    border: 1px solid #7700ff !important;
}

.box-2 .card-atm .form-control {
    border: none;
    box-shadow: none;
}

.form-select {
    border-radius: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;

}

.address .form-control.zip {
    border-radius: 0;
    border-bottom-left-radius: 10px;

}

.address .form-control.state {
    border-radius: 0;
    border-bottom-right-radius: 10px;

}

.box-2 .box-inner-2 .btn.btn-outline-primary {
    width: 120px;
    padding: 10px;
    font-size: 11px;
    padding: 0% !important;
    display: flex;
    align-items: center;
    border: none;
    border-radius: 0;
    background-color: whitesmoke;
    color: black;
    font-weight: 600;
}

.box-2 .box-inner-2 .btn.btn-primary {
    background-color: #48c9b0;
    color: whitesmoke;
    font-size: 14px;
    display: flex;
    align-items: center;
    font-weight: 600;
    justify-content: center;
    border: none;
    padding: 10px;
    width: 100%;
}

.box-2 .box-inner-2 .btn.btn-primary:hover {
    background-color: #1abc9c;
}

.box-2 .box-inner-2 .btn.btn-primary .fas {
    font-size: 13px !important;
    color: whitesmoke;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.carousel-inner {
    width: 100%;
    height: 250px;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
}

.carousel-control-prev {
    transform: translateX(-50%);
    opacity: 1;
}

.carousel-control-prev:hover .fas.fa-arrow-left {
    transform: translateX(-5px);
}

.carousel-control-next {
    transform: translateX(50%);
    opacity: 1;
}

.carousel-control-next:hover .fas.fa-arrow-right {
    transform: translateX(5px);
}

.fas.fa-arrow-left,
.fas.fa-arrow-right {
    font-size: 0.8rem;
    transition: all .2s ease;
}

.icon {
    width: 30px;
    height: 30px;
    background-color: #f8f9fa;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transform-origin: center;
    opacity: 1;
}

.fas,
.fab {
    color: #6d6c6d;
}

::placeholder {
    font-size: 12px;
}

@media (max-width:768px) {
    .container {
        max-width: 700px;
        margin: 10px auto 44px;
    }

    .box-1,
    .box-2 {
        max-width: 100%;
        /*padding: 20px 90px;*/
        padding: 20px 10px 0px;
        margin: 20px auto;
    }
    .box-2 .box-inner-2 {
        margin-top: 0;
    }

}

@media (max-width:426px) {

    .box-1,
    .box-2 {
        max-width: 400px;
        padding: 20px 10px 0px;
    }

    ::placeholder {
        font-size: 9px;
    }
}


.PaymentRequestOrHeader {
    position: relative;
}

.Divider-Text {
    background-color: #f8f9fa;
    left: 50%;
    padding: 0 8px;
    position: absolute;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    white-space: nowrap;
}
.Text-color--gray400 {
    color: hsla(0,0%,10%,.7);
}
.Text-fontWeight--400 {
    font-weight: 400;
}
.Text-fontSize--14 {
    font-size: 14px;
}
.Text {
    margin: 0;
}
.Divider hr {
    /*background-color: hsla(0,0%,10%,.1);*/
    border: none;
    height: 1px;
    width: 100%;
}
hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

.ButtonAndDividerContainer .Divider {
    padding-bottom: 16px;
    padding-top: 16px;
}

.Divider {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    position: relative;
}

.example.example4 .container {
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  padding: 10px;
}
.example.example4 fieldset legend + * {
  clear: both;
}
main > .container-lg .example * {
  margin: 0;
  padding: 0;
}
.HeaderImage-fallbackIcon {
    fill: hsla(0,0%,10%,.5);
}
.Icon--sm {
    height: 20px;
}

.Tag.TagOrange {
    background-color: #ffde92;
}
.Tag.TagGreen {
    background-color: #55d584;
}
.Tag {
    border-radius: 4px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 3px 8px;
    margin: 0 10px;
}

.Text-transform--uppercase {
    text-transform: uppercase;
}
.Text-color--orange {
    color: #bb5504;
}
.Text-color--green {
    color: #196535;
}
.Text-fontWeight--700 {
    font-weight: 700;
}
.Text-fontSize--11 {
    font-size: 11px;
}


.example form {
    position: relative;
    width: 100%;
    /*max-width: 500px;*/
    transition-property: opacity, transform;
    transition-duration: 0.35s;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.example .error {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    width: 100%;
    top: 100%;
    margin-top: 10px;
    left: 0;
    padding: 0 15px;
    font-size: 13px !important;
    opacity: 0;
    transform: translateY(10px);
    transition-property: opacity, transform;
    transition-duration: 0.35s;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.example .error.visible {
    opacity: 1;
    transform: none;
}

.example .error svg {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-top: 1px;
    margin-right: 10px;
}

.example .error .message {
    font-size: inherit;
}

.example.example4 .error svg .base {
  fill: #e25950;
}

.example.example4 .error svg .glyph {
  fill: #f6f9fc;
}

.example.example4 .error .message {
  color: #e25950;
}

.example.example4 .success .icon .border {
  stroke: #1abc9c;
}

.example.example4 .success .icon .checkmark {
  stroke: #1abc9c;
}

.example.example4 .success .title {
  color: #32325d;
}

.example.example4 .success .message {
  color: #8898aa;
}

.example.example4 .success .reset path {
  fill: #1abc9c;
}

.example.example4 .success .errorICO path {
  fill: #e25950 !important;
}




.example.submitted .success > * {
    opacity: 1;
    transform: none !important;
}

.example .success .icon svg {
    will-change: transform;
}

.example.submitted .success .icon .border, .example.submitted .success .icon .checkmark {
    opacity: 1;
    stroke-dashoffset: 0 !important;
}
.example .success .icon .border {
    stroke-dasharray: 251;
    stroke-dashoffset: 62.75;
    transform-origin: 50% 50%;
    transition: stroke-dashoffset 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    animation: spin 1s linear infinite;
}

.example.submitted .success, .example.submitting .success {
    pointer-events: all;
}

.example .success .icon {
    margin: 15px 0 30px;
    transform: translateY(70px) scale(0.75);
    width: auto;
    height: auto;
}

.example.submitted .success > :nth-child(4) {
    transition-delay: 0.3s;
}
.example.submitted .success > * {
    opacity: 1;
    transform: none !important;
}
.example .success > * {
    transition-property: opacity, transform;
    transition-duration: 0.35s;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
    transform: translateY(50px);
}

.example.submitted .success > * {
    opacity: 1;
    transform: none !important;
}

.example .success .icon .checkmark {
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    transition: stroke-dashoffset 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) 0.35s;
}

.example.submitted .success > :nth-child(2) {
    transition-delay: 0.1s;
}
.example .success .title {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 8px;
}

.example.submitted .success > :nth-child(3) {
    transition-delay: 0.2s;
}
.example .success .message {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 1.6em;
}

.ResultsView{
    position: absolute;
    left: 0px;
    top: 0;
    width: 102%;
    height: 102%;
    background-color: #f8f9fa;
    /*z-index: 100;*/
    text-align: center;
    display: none;
}




