body {
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}

.cc-main {
    width: 100%;
    background: #ffffff;
    flex: 1;
}

.cc-main p,
.cc-main span,
.cc-main label {
    color: #434343;
}


.cc-section {
    max-width: 1200px;
    margin: 20px auto 0 auto;
}

.cc-container {
    margin: 20px auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#cc-stepHeader {
    border-bottom: 2px solid #ccc;
}

#cc-stepContainer {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 30px;
}

.cc-flex-row {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 100%;
    align-items: flex-start;
}

.cc-flex-row .cc-input-group,
.cc-flex-row .cc-with-modal-info {
    flex: 1;
}

.cc-flex-row.cc-with-label {
    align-items: center;
}

.cc-flex-column {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.cc-with-modal-info {
    display: flex;
    position: relative;
    flex-direction: column;
    gap: 0;
}

.cc-with-modal-info .cc-modal-info {
    position: relative;
    top: -6px;
    font-size: 0.75rem;
    color: #00acf0;
    align-self: flex-end;
}

.cc-with-modal-info .cc-modal-help {
    position: relative;
    top: -6px;
    font-size: 0.75rem;
    color: #434343;
    align-self: flex-start;
}

.cc-modal .cc-modal-content {
    background-color: #e7f8fc;
    color: #000000;
    border: 1px solid #429ed8;
    position: relative;
    display: flex;
    padding: 12px;
    gap: 12px;
    min-width: 400px;
    max-width: 450px;
    min-height: 150px;
    max-height: 400px;
}

#cc-step0 .cc-warning {
    background-color: #fdf6ed !important;
    border: solid 1px #e69123;
    padding: 8px;
}

.cc-col {
    flex: 1;
}

a {
    color: #00acf0;
    text-decoration: none;
}

.cc-mr-0 {
    margin-right: 0 !important;
}

.cc-mb-0 {
    margin-bottom: 0 !important;
}

.cc-mb-1 {
    margin-bottom: 15px !important;
}

.cc-mt-0 {
    margin-top: 0px !important;
}

.cc-mt-1 {
    margin-top: 15px !important;
}

.cc-mt-2 {
    margin-top: 30px !important;
}

.cc-mr-1 {
    margin-right: 15px !important;
}

.cc-with-optional {
    gap: 5px;
}

.cc-add-new {
    width: 100%;
    border: solid 1px #999;
    margin-top: 10px;
    font-size: 1.25rem;
    height: 36px;
    padding: 0 20px;
}

.cc-del {
    border: solid 1px #999;
    font-size: 1.25rem;
    height: 36px;
    padding: 0 20px;
}

.cc-del img {
    width: 16px;
}

.cc-with-optional span {
    font-weight: bold;
    color: #999;
}

.cc-line {
    border-bottom: 2px solid #00acf0;
    height: 2px;
    position: relative;
    top: -2px;
    z-index: 1;
    right: 70%;
}

.h1 {
    font-size: 2.25rem;
    padding-top: 4rem;
    padding-bottom: 1rem;
    margin: 0;
}

.h1.cc-section {
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 0px;
}

.h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.cc-step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0px;
    padding: 0 15px;
    position: relative;
    top: 2px;
}

.cc-step-item {
    display: flex;
    align-items: center;
    flex: 1;
    position: relative;
    height: 50px;
}

.cc-form-group-data label {
    color: #00acf0;
    font-weight: normal;
}

/*.cc-form-group-data div {
    color: #4a4a4a;
    margin: 5px auto 10px auto;
}*/

.cc-form-group-data-row .cc-col {
    margin: 5px auto 10px auto;
}

.cc-link-change {
    display: flex;
    flex-direction: row-reverse;
}

.cc-step-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background: #ccc;
    left: 0;
    z-index: 1;
}

.cc-step-item.cc-active::after {
    background: #00acf0;
}

.cc-step-number {
    display: inline-block;
    margin-right: 8px;
    min-width: 30px;
    min-height: 30px;
    max-width: 30px;
    max-height: 30px;
    line-height: 30px;
    background: #ccc;
    border-radius: 50%;
    color: #fff;
    font-weight: bold;
    margin-bottom: 5px;
    text-align: center;
}

.cc-step-item.cc-active .cc-step-number {
    background: #00acf0;
}

.cc-ok {
    display: none;
}

.cc-step-item.cc-finished.cc-active .cc-ok {
    display: inline;
}

.cc-step-item.cc-finished.cc-active .cc-num {
    display: none;
}

span.cc-ok,
div.cc-active .cc-num {
    color: white !important;
}

.cc-step-title {
    font-size: 14px;
}

.cc-step {
    display: none;
}

.cc-step.cc-active {
    display: block;
}

/*
form group
*/

.cc-fw {
    flex: 1 !important;
}

.cc-fw-4 {
    flex: 4 !important;
}

.cc-fw-8 {
    flex: 8.2 !important;
}

.cc-col-4 {
    max-width: 32.25%;
    margin: auto 0 !important;
}

.cc-flex-row-wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.cc-col-6 {
    max-width: 50%;
    margin: auto 0 !important;
}

.cc-flex-row-wrap .cc-col-6 {
    padding-left: 8px;
}

.cc-form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.cc-hint-text {
    font-size: .75rem !important;
    color: #777 !important;
}

.cc-error-text {
    font-size: .75rem;
    color: #FF5C5C;
}

button {
    padding: 10px 20px;
    font-size: 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button#cc-backToStep1,
button#cc-backToStep2,
button#cc-backToStep3 {
    background-color: #ccc;
    color: #000;
    border: solid 1px #333;
}

button#cc-nextToStep2,
button#cc-nextToStep3,
button#cc-nextToStep4,
button#cc-submitButton {
    background-color: #00acf0;
    color: #fff;
}

.cc-checkbox input {
    margin: 2px 4px 0 0;
}

/*
---- Start Form Style ----
*/
.cc-input-group {
    position: relative;
    margin: 8px auto;
    width: 100%;
    background: #a8a4a424;
}

.cc-input-group label {
    position: absolute;
    top: 10px;
    color: #9e9e9e;
    left: 10px;
    z-index: 0;
    font-weight: 400;
}

.cc-form-control {
    width: 100%;
    height: 42px;
    font-size: 16px;
    display: block;
    border: none;
    z-index: 1;
    position: relative;
    background: transparent;
    padding: 20px 10px 2px 10px;
    border-bottom: 1px solid #AAA;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

select.cc-form-control {
    padding: 16px 10px 0px 6px;
}

.cc-form-control,
.cc-form-control+label {
    transition: all 0.3s;
}

.cc-form-control:focus {
    outline: none;
    border-width: 1px;
    border-color: #2196F3;
}

.cc-form-control:focus+label,
.cc-form-control.cc-not-empty+label {
    top: 4px;
    font-size: 12px;
    left: 10px;
    color: #2196F3;
    z-index: 1;
}

.cc-form-control.cc-not-empty:not(:focus)+label {
    color: #999;
}

.cc-missing-input {
    border-bottom: 2px solid #FF5C5C;
}

.cc-missing-input+label {
    color: #FF5C5C;
}

textarea {
    height: 120px;
}

/* Modal */
.cc-modal {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.cc-modal-active {
    display: flex;
}

.cc-close {
    height: 32px;
    max-height: 32px;
    max-width: 32px;
    min-height: 32px;
    min-width: 32px;
    width: 32px;
    top: 0;
    right: 0;
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    margin: 0;
    position: absolute;
    color: #000;
    font-weight: bold;
}

.cc-close:hover {
    background-color: rgba(0, 0, 0, .3);
}

.cc-modal-content {
    font-size: .875rem;
    /*background: #c9c9c9;*/
    padding: 12px;
    max-width: 400px;
    z-index: 99;
}

#modal-submit-failed .cc-modal-content {
    min-width: 320px;
    min-height: 140px;
    background: rgb(246, 232, 232);
    border: solid 1px #FF5C5C;
}

#modal-submit-failed .cc-modal-content-title {
    display: flex;
    font-size: 20px;
    align-items: center;
}

#modal-submit-failed .cc-modal-content-title svg {
    margin-right: 10px;
}

#modal-submit-failed .cc-modal-content-description {
    padding-left: 30px;
}

#modal-submit-successed .cc-modal-content {
    min-width: 320px;
    min-height: 140px;
    background: rgb(236, 246, 232);
    border: solid 1px #42bb27;
}

#modal-submit-successed .cc-modal-content-title {
    display: flex;
    font-size: 20px;
    align-items: center;
}

#modal-submit-successed .cc-modal-content-title svg {
    margin-right: 10px;
}

#modal-submit-successed .cc-modal-content-description {
    padding-left: 30px;
}

@media only screen and (max-width: 576px) {
    #cc-step1 .cc-flex-row,
    #cc-step2 .cc-flex-row,
    #cc-step3 .cc-flex-row {
        flex-direction: column;
    }

    .cc-flex-row .cc-input-group,
    .cc-flex-row .cc-with-modal-info {
        width: 100%;
    }

    #cc-step2 .cc-col-4 {
        max-width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .cc-mobile-sm {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .cc-step-item .cc-step-title {
        display: none;
    }
}

@media only screen and (min-width: 1120px) {
    #cc-step0 {
        max-width: 75%;
    }

    .cc-success-block,
    .cc-warning-block {
        max-width: 50%;
    }
}

.cc-success-block,
.cc-warning-block {
    display: flex;
    gap: 20px;
    padding: 8px;
}

.cc-success-block {
    border: solid 1px #21A537;
    background-color: #eef9f0;
}

label {
    margin-bottom: 0px !important;
    margin-top: 0px !important;
}

.cc-required {
    color: hsl(359deg, 100%, 31%);
    font-size: 13px;
}


input[type="radio"].cc-radio-btn,
input[type="checkbox"].cc-radio-btn {
    position: relative;
    -webkit-appearance: none;
    appearance: none;
}

input[type="radio"].cc-radio-btn:focus,
input[type="checkbox"].cc-radio-btn:focus {
    outline: none;
    -webkit-outline: none
}

input[type="radio"].cc-radio-btn::before,
input[type="checkbox"].cc-radio-btn::before {
    content: '';
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border-radius: 1rem;
    background-color: white;
    border: 1px solid black;
    vertical-align: middle;
}

input[type="radio"].cc-radio-btn:checked::before,
input[type="checkbox"].cc-radio-btn:checked::before {
    background-color: #00abef;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 8px 8px;
    background-image: url("data:image/svg+xml,%3Csvg width='8' height='8' viewBox='0 0 8 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.307617 5.0367L0.771993 4.48524L2.27541 5.54397L7.19476 0.923096L7.69223 1.39734L2.30851 7.07694L0.307617 5.0367Z' fill='white'/%3E%3C/svg%3E%0A");
    border-color: #00abef;
}

/*----END Form Style----*/