.mc-wrapper{
    font-family: inherit;
    font-size: 14px;
}
@media (min-width: 1200px) {
    .mc-wrapper {
        display: flex;
        align-items: flex-start;
        column-gap: 70px;
    }
}
.mc-wrapper label.error{
    color: #ff0000;
    margin-top: 5px;
    display: block;
}
.mc-wrapper label{
    color: inherit;
    margin-bottom: 5px;
    display: block;
}
.mc-wrapper input{
    width: 100%;
    padding: 19px 10px;
    height: 40px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.mc-wrapper input[type = "submit"]{
    width: auto;
    padding: 12px 20px;
    border: none;
    box-shadow: none;
    cursor: pointer;
}
.mc-wrapper input,
.mc-wrapper input:focus,
.mc-wrapper input:active{
    outline: none;
}
.mc-wrapper p{
    margin-bottom: 20px;
    line-height: 30px;
}
#mc-form {
    padding: 40px 15px;
    background-color: var(--wp--preset--color--true-white);
}
#mc-form > p:nth-last-child(2) {
    margin-bottom: 30px;
}
@media (min-width: 1200px) {
    #mc-form {
        flex: 1 1 707px;
        padding: 30px;
    }
}
#mc-output{
    /* display: none; */
    padding: 31px;
    margin-top: 40px;
    background-color: var(--wp--preset--color--cobalt);
    color: var(--wp--preset--color--true-white);
    font-size: 20px;
    line-height: 26px;
    
}
@media (min-width: 1200px) {
    #mc-output {
        flex: 0 0 449px;
        padding: 24px 40px 52px;
        margin-top: 0;
    }
}
#mc-output a {
    display: none;
}
#mc-output svg {
    display: block;
    margin: 0 auto 35px;
}
@media (min-width: 1200px) {
    #mc-output svg {
        width: 177px;
        height: auto;
        margin-bottom: 45px;
    }
}

#mc_chart_icon{
    cursor: default;
}

#MLCalcClose {
    display: none;
    color: #F5F5F5;
    font-size: 18px;
    font-weight: bold;
    font-family: Arial;
    cursor: pointer;
    position: absolute;
    background: #D5D5D5;
    border: 1px solid #D5D5D5;
    z-index: 10002;
    text-align: center;
    line-height: 24px
}

#MLCalcShader {
    background: #000000;
    display: none;
    position: absolute;
    z-index: 10000;
    margin: 0;
    padding: 0;
}

#MLCalcHolder {
    background: transparent;
    display: none;
    position: absolute;
    z-index: 10001;
    margin: 0;
    padding: 0;
    background: url(../images/ajax-loader.gif);
    background-repeat: no-repeat;
    background-position: center;
    text-align: center
}


/* Additional styles */
.mc-form {
    display: flex;
    flex-direction: column;
    row-gap: 50px;
}

.mc-form-group {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
@media (min-width: 1200px) {
    .mc-form-group {
        row-gap: 30px;
    }
}

.mc-form-group.mc-form-group_optional {
    row-gap: 20px;
}
@media (min-width: 1200px) {
    .mc-form-group.mc-form-group_optional {
        row-gap: 13px;
    }
}

.mc-form-group.mc-form-group_optional .h4 {
    margin-bottom: 10px;
}
@media (min-width: 1200px) {
    .mc-form-group.mc-form-group_optional .h4 {
        margin-bottom: 17px;
    }
}

.mc-form-field {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
@media (min-width: 1200px) {
    .mc-form-field {
        flex-direction: row;
        column-gap: 30px;
    }
}

.mc-form-field-col {
    width: 100%;
}

.mc-form-output-values {
    display: flex;
    flex-direction: column;
    row-gap: 11px;
}
@media (min-width: 1200px) {
    .mc-form-output-values {
        row-gap: 14px;
    }
}

.mc-form-output-row {
    display: flex;
    align-items: center;
    padding-bottom: 11px;
    border-bottom: 1px solid #EEEEEE66;
    font-size: 16px;
    line-height: 24px;
    color: #F7F8F6;
}
@media (min-width: 1200px) {
    .mc-form-output-row {
        padding-bottom: 14px;
    }
}

.mc-form-output-row span:nth-child(1) {
    margin-right: 20px;
}

.mc-form-output-row span:nth-child(2) {
    margin-left: auto;
}
@media(min-width: 1200px) {
    .mc-form-output-row span:nth-child(2) {
        font-size: 18px;
        line-height: 27px;
    }
}

.mc-form-output-row_borderless {
    border-bottom: 0;
    padding-bottom: 0;
}

.mc-form-output-row_sm {
    font-size: 14px;
    line-height: 21px;
    opacity: .5;
}
@media (min-width: 1200px) {
    .mc-form-output-row_sm span:nth-child(2) {
        font-size: 14px !important;
    }
}

.mc-form-output-row_total {
    margin-top: 5px;
    padding-bottom: 0 !important;
    border-bottom: 0 !important;
}
@media (min-width: 1200px) {
    .mc-form-output-row_total {
        margin-top: 6px;
    }
}

.mc-form-output-row_total span:nth-child(1) {
    font-size: 20px;
    line-height: 26px;
}
@media (min-width: 1200px) {
    .mc-form-output-row_total span:nth-child(1) {
        font-size: 24px;
        line-height: 31px;
    }
}
.mc-form-output-row_total span:nth-child(2) {
    font-size: 26px;
    line-height: 31px;
    color: var(--wp--preset--color--aqua);
}
@media (min-width: 1200px) {
    .mc-form-output-row_total span:nth-child(2) {
        font-size: 36px;
        line-height: 43px;
    }
}

.mc-form-output-row_aqua-mark:before {
    content: '';
    flex-shrink: 0;
    margin-right: 9px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--wp--preset--color--aqua);
}

.mc-form-output-row_coral-mark:before {
    content: '';
    flex-shrink: 0;
    margin-right: 9px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--wp--preset--color--coral);
}

.mc-form-output-row_cobalt-mark:before {
    content: '';
    flex-shrink: 0;
    margin-right: 9px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--wp--preset--color--light-blue);
}

.mc-form-field-wrap {
    display: flex;
    background-color: var(--wp--preset--color--off-white);
}

.mc-form-field-wrap-label {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1px 14px;
    font-size: 18px;
    line-height: 27px;
    color: var(--wp--preset--color--cobalt);
    border: 2px solid var(--wp--preset--color--cobalt);
    border-left: 0;
}

.mc-form-field-wrap-label_white {
    border-left: 2px solid var(--wp--preset--color--cobalt);
    background-color: var(--wp--preset--color--true-white);
}

.mc-form-field-wrap input {
    border-right: 0 !important;
}

.mc-form-percent {
    min-width: 61px;
}

#mc-submit {
    align-self: flex-start;
    margin-top: 10px;
}

.widget-title {
    display: none;
}