body {
    margin-top: 40px;
}

.stepwizard-step p {
    margin-top: 10px;
}

.stepwizard-row {
    display: table-row;
}

.stepwizard {
    display: table;
    width: 100%;
    position: relative;
}

.stepwizard-step button[disabled] {
    opacity: 1 !important;
    filter: alpha(opacity=100) !important;
}

.stepwizard-row:before {
    top: 14px;
    bottom: 0;
    position: absolute;
    content: " ";
    width: 100%;
    height: 1px;
    background-color: #ccc;
    z-order: 0;
}

.stepwizard-step {
    display: table-cell;
    text-align: center;
    position: relative;
}

.btn-circle {
    width: 30px;
    height: 30px;
    text-align: center;
    padding: 6px 0;
    font-size: 12px;
    line-height: 1.2;
    border-radius: 15px;
    background: #fff;
    border: 2px solid #3474d4;

    &.btn-primary {
        background-color: #3474d4;
    }
}


.formButton {
    height: 4rem;
    padding-top: 0;
    padding-right: 2rem;
    padding-bottom: 0;
    padding-left: 2rem;
    border-radius: 19.5rem !important;
    background-color: var(--callToAction);
    border: 0;
    color: var(--white) !important;
    font-family: "Open Sans", Arial, sans-serif, Helvetica !important;
    font-weight: 700;
    line-height: 2.5rem !important;
    text-align: center;
    margin-top: .9rem;
    margin-right: .9rem;
    margin-bottom: .9rem;
    margin-left: .9rem;
    box-shadow: 0 .1rem 0 var(--formButtonShadow) !important;
    font-size: 1.5rem;
    cursor: pointer
}

.formButton span {
    line-height: 4rem
}

.checkbox {
    padding-left: 2rem
}

.checkbox input[type=checkbox] {
    opacity: 0
}

.checkbox input[type=checkbox]:focus + label:before {
    outline: thin dotted;
    outline: .5rem auto -webkit-focus-ring-color;
    outline-offset: -.2rem
}

.checkbox input[type=checkbox]:checked + label:after {
    font-family: FontAwesome;
    content: ""
}

.checkbox input[type=checkbox]:disabled + label {
    opacity: .65
}

.checkbox input[type=checkbox]:disabled + label:before {
    background-color: var(--svgLightGrey);
    cursor: not-allowed
}

.checkbox label {
    display: inline-block;
    position: relative;
    padding-left: .5rem
}

.checkbox label:before {
    content: "";
    display: inline-block;
    position: absolute;
    left: 0;
    width: 1.7rem;
    height: 1.7rem;
    margin-left: -2rem;
    border: .1rem solid var(--greyBorder);
    border-radius: .3rem;
    background-color: var(--white);
    -webkit-transition: border .15s ease-in-out, color .15s ease-in-out;
    -o-transition: border .15s ease-in-out, color .15s ease-in-out;
    transition: border .15s ease-in-out, color .15s ease-in-out
}

.checkbox label:after {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    width: 1.6rem;
    height: 1.6rem;
    margin-left: -2rem;
    padding-top: .1rem;
    padding-left: .3rem;
    font-size: 1.1rem;
    color: var(--baseGreyColor)
}

.checkbox-primary input[type=checkbox]:checked + label:before {
    background-color: var(--labelColor);
    border-color: var(--labelColor)
}

.checkbox-primary input[type=checkbox]:checked + label:after {
    color: var(--white)
}

.checkbox-info input[type=checkbox]:checked + label:before {
    background-color: var(--labelColor2);
    border-color: var(--labelColor2)
}

.checkbox-info input[type=checkbox]:checked + label:after {
    color: var(--white)
}

.radio {
    padding-left: 2rem
}

.radio label {
    display: inline-block;
    position: relative;
    padding-left: .5rem
}

.radio label:before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 1.7rem;
    height: 1.7rem;
    left: 0;
    margin-left: -2rem;
    border: .1rem solid var(--greyBorder) ccc;
    border-radius: 50%;
    background-color: var(--white);
    -webkit-transition: border .15s ease-in-out;
    -o-transition: border .15s ease-in-out;
    transition: border .15s ease-in-out
}

.radio label:after {
    display: inline-block;
    position: absolute;
    content: " ";
    width: 1.1rem;
    height: 1.1rem;
    left: .3rem;
    top: .3rem;
    margin-left: -2rem;
    border-radius: 50%;
    background-color: var(--baseGreyColor);
    -webkit-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    transform: scale(0, 0);
    -webkit-transition: -webkit-transform .1s cubic-bezier(.8, -.33, .2, 1.33);
    -moz-transition: -moz-transform .1s cubic-bezier(.8, -.33, .2, 1.33);
    -o-transition: -o-transform .1s cubic-bezier(.8, -.33, .2, 1.33);
    transition: transform .1s cubic-bezier(.8, -.33, .2, 1.33)
}

.radio input[type=radio] {
    opacity: 0
}

.radio input[type=radio]:focus + label:before {
    outline: thin dotted;
    outline: .5rem auto -webkit-focus-ring-color;
    outline-offset: -.2rem
}

.radio input[type=radio]:checked + label::after {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1)
}

.radio input[type=radio]:disabled + label {
    opacity: .65
}

.radio input[type=radio]:disabled + label:before {
    cursor: not-allowed
}

.radio-primary input[type=radio] + label:after {
    background-color: var(--labelColor)
}

.radio-primary input[type=radio]:checked + label:before {
    border-color: var(--labelColor)
}

.radio-primary input[type=radio]:checked + label:after {
    background-color: var(--labelColor)
}

.radio-info input[type=radio] + label:after {
    background-color: var(--labelColor2)
}

.radio-info input[type=radio]:checked + label:before {
    border-color: var(--labelColor2)
}

.radio-info input[type=radio]:checked + label:after {
    background-color: var(--labelColor2)
}

.custom-radio .custom-control-input:checked ~ .custom-control-label:before {
    background-color: var(--white)
}

.custom-radio .custom-control-input:checked ~ .custom-control-label:after {
    top: 1.7rem;
    left: -2.8rem;
    background-image: none;
    background-color: var(--inputFieldGreen);
    border-radius: 100%;
    width: 1.3rem;
    height: 1.3rem
}

.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label:before {
    background-color: var(--disabledFieldGrey)
}

.custom-radio .custom-control-label:before {
    top: 1rem;
    left: -3.5rem;
    width: 2.7rem;
    height: 2.7rem;
    margin-top: -.5rem
}

.custom-radio .custom-control-label:after {
    top: 1.2rem;
    left: -3.3rem;
    display: block;
    width: 2.3rem;
    height: 2.3rem;
    margin-top: -.5rem
}

.custom-radio .custom-control-label1:after {
    top: 1.2rem
}

.custom-control-input:checked ~ .custom-control-label:before {
    background-color: var(--inputFieldGreen);
    border-color: var(--inputFieldGreen);
    border-width: .2rem
}



.custom-control {
    min-height: 3rem;
    font-size: 1.4rem
}

@media (max-width: 472px) {
    .custom-control {
        margin: 1.5rem 0 !important
    }
}

.custom-control-label1 {
    position: relative;
    margin-bottom: 0;
    cursor: pointer
}





.custom-control-label1:after {
    position: absolute;
    top: .2rem;
    left: -2.3rem;
    display: block;
    width: 1.3rem;
    height: 1.3rem;
    content: "";
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 75% 75%
}



.custom-control-label {
    cursor: pointer
}

.custom-control-label:before {
    position: absolute;
    top: 0;
    left: -2.5rem;
    display: block;
    width: 1.7rem;
    height: 1.7rem;
    pointer-events: none;
    content: "";
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: var(--white)
}

.custom-control-label:after {
    position: absolute;
    top: .2rem;
    left: -2.3rem;
    display: block;
    width: 1.3rem;
    height: 1.3rem;
    content: "";
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 75% 75%
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label:before {
    background-color: var(--inputFieldGreen)
}

.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label:before {
    background-color: var(--disabledFieldGrey)
}

.custom-checkbox .custom-control-label:before {
    width: 2rem;
    height: 2rem
}

.custom-checkbox .custom-control-label:after {
    left: -2.2rem;
    width: 1.5rem;
    height: 1.5rem
}

.custom-select {
    background: var(--white) url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='%23343a40' d='M143 352.3L7 216.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.2 9.4-24.4 9.4-33.8 0z'/%3E%3C/svg%3E") no-repeat right .75rem center;
    background-size: 2.5rem 1.8rem;
    height: 4rem;
    font-size: 1.4rem;
    padding-top: .375rem;
    padding-right: 1.75rem;
    padding-bottom: .375rem;
    padding-left: .85rem;
    border-radius: .45rem;
    color: var(--baseGreyColor);
    font-family: "Open Sans", Arial, sans-serif, Helvetica !important;
    line-height: 2.2rem;
    box-sizing: border-box;
    height: 4.7rem;
    border: .1rem solid var(--lightGrey);
    border-radius: .5rem;
    background-color: var(--white);
    padding-right: 5rem
}

.custom-select:disabled {
    background-color: var(--white);
    color: var(--disabledFieldGrey);
    font-family: "Open Sans", Arial, sans-serif, Helvetica !important;
    line-height: 2.2rem
}

.custom-select:focus {
    border: .1rem solid var(--baseBadges) !important;
    box-shadow: none !important
}

#logo {
    overflow: hidden
}

@media (max-width: 992px) {
    #logo {
        text-align: center;
        padding: 1rem !important
    }
}

.main-container {
    background: #fafafa;
    box-shadow: 0 0 0 .2rem #d8d8d8;
    overflow: hidden
}

.stepIndicatorContainer {
    background: var(--white);
    border: .1rem solid var(--lightGrey);
    border-radius: 10rem;
    display: inline-block;
    margin: 3rem 0;
    padding: .5rem
}

.stepIndicatorBlock {
    display: inline-block;
    width: 18.4rem;
    border-radius: 10rem;
    height: 4.5rem;
    padding-top: .9rem;
    padding-right: .9rem;
    padding-bottom: .9rem;
    padding-left: .9rem;
    cursor: pointer
}

@media (max-width: 992px) {
    .stepIndicatorBlock {
        width: auto
    }
}

.stepIndicatorBlock.stepCompleted .siSerialNumber {
    background-color: var(--baseBadges)
}

.stepIndicatorBlock.stepCompleted .siText {
    color: var(--baseBadges)
}

.activeBlock {
    background-color: var(--baseBadges) !important
}

.activeBlock .activeSrNo {
    background-color: var(--white)
}

@media (max-width: 992px) {
    .activeBlock.stepIndicatorBlock .siText.activeSrText {
        display: inline
    }
}

.activeSrNo {
    color: var(--baseBadges) !important
}

.activeSrText {
    color: var(--white) !important
}

span.siSerialNumber {
    margin-right: .5rem;
    border-radius: 100%;
    padding: .3rem .8rem;
    height: 1.8rem;
    width: .8rem;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 2.4rem;
    color: var(--white);
    background-color: var(--lightGrey)
}

span.siText {
    height: 2.2rem;
    width: 6.9rem;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 2.2rem;
    color: var(--lightGrey);
    position: relative;
    top: 2px
}

@media (max-width: 992px) {
    span.siText {
        display: none
    }
}

.block-container {
    margin-bottom: 2rem;
    padding: 2rem 5rem;
    border-radius: .5rem;
    box-shadow: .05rem .05rem .2rem .1rem var(--lightGrey);
    background: var(--white)
}

@media (max-width: 992px) {
    .block-container {
        padding: 2rem
    }
}

@media (max-width: 992px) {
    .block-container h2.head3 {
        font-size: 2.4rem !important
    }
}

.block-container .palette-list {
    list-style-type: none;
    margin-top: 2.5rem;

    .custom-control-input{
        display:none;
    }
}

@media (max-width: 992px) {
    .block-container .palette-list {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap
    }
}

.block-container .palette-list li {
    display: inline-block;
    margin-right: 1.2rem;
    margin-bottom: 1.6rem;
    position: relative
}

@media (max-width: 992px) {
    .block-container .palette-list li {
        flex: 0 0 50%;
        display: flex;
        justify-content: center;
        margin-right: 0
    }
}

@media (max-width: 486px) {
    .block-container .palette-list {
        display: flex!important;
        flex-direction: row!important;
        flex-wrap: wrap!important;
        gap: 12px!important;
        padding: 0!important;
        margin: 0!important;
        list-style: none!important;
        margin-top: 2.5rem!important;
    }

    .block-container .palette-list li {
        flex: 0 0 calc(50% - 6px)!important;
        display: flex!important;
        justify-content: center!important;
    }
}


.block-container .palette-list li label {
    cursor: pointer;
    position: relative
}

.block-container .palette-list li label.selected:before {
    content: "";
    background-image: url('/front/assets/images/services/selection_check.svg');
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    position: absolute;
    top: -12px;
    right: -12px;
    display: block
}

.block-container .palette-list li label.selected img {
    width: 140px;
    height: 140px;
    -webkit-border-radius: .8rem;
    -moz-border-radius: .8rem;
    border-radius: .8rem;
    border: 2px solid #3474d4;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.block-container .palette-list li:nth-child(5n) {
    margin-right: 0
}

.block-container .palette-list li img {
    max-width: 14rem;
    width: 100%
}

.block-container .palette-list li.selected:before {
    content: "";
    background-image: url('/front/assets/images/services/selection_check.svg');
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    position: absolute;
    top: -12px;
    right: -12px;
    display: block
}

.block-container .palette-list li.selected img {
    border: 2px solid #8cc63f;
    border-radius: .8rem
}

.block-container .palette-list + .custom-radio {
    margin: 1rem 0
}

@media (max-width: 992px) {
    .block-container .palette-list + .custom-radio {
        margin: 1rem 0 0 3%
    }
}

.custom-checkbox .custom-control-label:after {
    left: -1.3rem
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label:before {
    background-color: var(--inputFieldGreen) !important
}

.custom-control-label:before {
    position: absolute;
    top: 0;
    left: -1.5rem;
    display: block;
    width: 1.7rem;
    height: 1.7rem;
    pointer-events: none;
    content: "";
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: var(--white) !important;
    border: 1px solid var(--lightGrey) !important
}

.custom-control-label:after {
    position: absolute;
    top: .2rem;
    left: -2.3rem;
    display: block;
    width: 1.3rem;
    height: 1.3rem;
    content: "";
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 75% 75%
}

.custom-radio .custom-control-label:before {
    left: -1.5rem;
    width: 2.7rem;
    height: 2.7rem;
    margin-top: -.5rem;
    top: 0
}

.custom-radio .custom-control-label:after {
    top: 1.2rem;
    left: -3.3rem;
    display: block;
    width: 2.3rem;
    height: 2.3rem;
    margin-top: -.5rem
}

.custom-radio .custom-control-input:checked ~ .custom-control-label:after {
    top: .7rem;
    left: -.8rem;
    background-image: none;
    background-color: var(--inputFieldGreen);
    border-radius: 100%;
    width: 1.3rem;
    height: 1.3rem
}

.custom-radio .custom-control-input[checked=checked] ~ .custom-control-label:after {
    top: .7rem;
    left: -.8rem;
    background-image: none;
    background-color: var(--inputFieldGreen);
    border-radius: 100%;
    width: 1.3rem;
    height: 1.3rem
}



@media (max-width: 576px) {
    .formButton {
        width: 100%
    }
}

.formButton i {
    top: .1rem;
    position: relative
}

.formButton:active, .formButton:hover {
    background-color: var(--baseGreyColor) !important
}

.custom-control-label span {
    margin-left: 2rem
}

.modal-content {
    border: none;
    border-radius: 0
}

.modal-header {
    display: block;
    border: none;
    border-radius: 0
}

.modal-header .close {
    margin-top: -7rem;
    margin-right: -2rem;
    margin-bottom: -1rem;
    margin-left: auto
}

.modal-dialog {
    height: 89rem;
    display: flex;
    align-items: center
}

@media (max-width: 576px) {
    .modal-dialog {
        display: block !important;
        margin-top: 0 !important;
        margin-right: 0 !important;
        margin-bottom: 0 !important;
        margin-left: 0 !important
    }
}

.html {
    background: #777
}

.custom-control-label:before {
    border: .2rem solid #90c550 !important
}

.custom-control-input:disabled ~ .custom-control-label::before {
    background-color: #e9ecef !important
}

.custom-control-input:disabled ~ .custom-control-label {
    cursor: default
}

.custom-radio .chkColPref:after {
    top: 0;
    left: -1.3rem
}

.custom-radio .custom-control-input:checked ~ .chkColPref:after {
    top: .7rem;
    left: -.8rem
}

.custom-control-input {
    z-index: -1;
    opacity: 0;
}

.custom-radio .custom-control-label:before {
    left: -1.5rem;
    width: 2.7rem;
    height: 2.7rem;
    margin-top: -0.5rem;
    top: 0;
}

.custom-radio .custom-control-label::before {
    border-radius: 50%;
}

.custom-control-label:before {
    border: .2rem solid #90c550 !important;
}

.custom-control-label:before {
    position: absolute;
    top: 0rem;
    left: -1.5rem;
    display: block;
    width: 1.7rem;
    height: 1.7rem;
    pointer-events: none;
    content: "";
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: var(--white) !important;
    border: 1px solid var(--lightGrey) !important;
}

.custom-radio .chkColPref:after {
    top: 0rem;
    left: -1.3rem;
}

.custom-radio .custom-control-label:after {
    top: 1.2rem;
    left: -3.3rem;
    display: block;
    width: 2.3rem;
    height: 2.3rem;
    margin-top: -0.5rem;
}

.custom-control-label:after {
    position: absolute;
    top: .2rem;
    left: -2.3rem;
    display: block;
    width: 1.3rem;
    height: 1.3rem;
    content: "";
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 75% 75%;
}

.custom-control-input:checked ~ .custom-control-label:before {
    background-color: var(--inputFieldGreen);
    border-color: var(--inputFieldGreen);
    border-width: .2rem
}

.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label:before {
    background-color: var(--disabledFieldGrey)
}

.custom-radio .custom-control-label:before {
    top: 1rem;
    left: -3.5rem;
    width: 2.7rem;
    height: 2.7rem;
    margin-top: -0.5rem
}

.custom-control-input:checked ~ .custom-control-label:before {
    background-color: var(--inputFieldGreen);
    border-color: var(--inputFieldGreen);
    border-width: .2rem
}

.custom-control-label:before {
    position: absolute;
    top: 0rem;
    left: -2.5rem;
    display: block;
    width: 1.7rem;
    height: 1.7rem;
    pointer-events: none;
    content: "";
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: var(--white)
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label:before {
    background-color: var(--inputFieldGreen)
}

.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label:before {
    background-color: var(--disabledFieldGrey)
}

.custom-checkbox .custom-control-label:before {
    width: 2rem;
    height: 2rem
}


.custom-checkbox .custom-control-input:checked ~ .custom-control-label:before {
    background-color: var(--inputFieldGreen) !important
}

.custom-control-label:before {
    position: absolute;
    top: 0rem;
    left: -1.5rem;
    display: block;
    width: 1.7rem;
    height: 1.7rem;
    pointer-events: none;
    content: "";
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: var(--white) !important;
    border: 1px solid var(--lightGrey) !important
}

.custom-radio .custom-control-label:before {
    left: -1.5rem;
    width: 2.7rem;
    height: 2.7rem;
    margin-top: -0.5rem;
    top: 0
}

.custom-control-label:before {
    border: .2rem solid #90c550 !important
}

.custom-control-label::before {
    position: absolute;
    top: .25rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    pointer-events: none;
    content: "";
    background-color: #fff;
    border: #adb5bd solid 1px;
}


.custom-radio .custom-control-input:checked ~ .custom-control-label:after {
    top: 1.7rem;
    left: -2.8rem;
    background-image: none;
    background-color: var(--inputFieldGreen);
    border-radius: 100%;
    width: 1.3rem;
    height: 1.3rem
}

.custom-radio .custom-control-label:after {
    top: 1.2rem;
    left: -3.3rem;
    display: block;
    width: 2.3rem;
    height: 2.3rem;
    margin-top: -0.5rem
}

.custom-control-label:after {
    position: absolute;
    top: .2rem;
    left: -2.3rem;
    display: block;
    width: 1.3rem;
    height: 1.3rem;
    content: "";
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 75% 75%
}

.custom-checkbox .custom-control-label:after {
    left: -2.2rem;
    width: 1.5rem;
    height: 1.5rem
}

.custom-checkbox .custom-control-label:after {
    left: -1.3rem
}

.custom-control-label:after {
    position: absolute;
    top: .2rem;
    left: -2.3rem;
    display: block;
    width: 1.3rem;
    height: 1.3rem;
    content: "";
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 75% 75%
}


.custom-radio .custom-control-label:after {
    top: 1.2rem;
    left: -3.3rem;
    display: block;
    width: 2.3rem;
    height: 2.3rem;
    margin-top: -0.5rem
}

.custom-radio .custom-control-input:checked ~ .custom-control-label:after {
    top: .7rem;
    left: -0.8rem;
    background-image: none;
    background-color: var(--inputFieldGreen);
    border-radius: 100%;
    width: 1.3rem;
    height: 1.3rem
}

.custom-radio .custom-control-input[checked=checked] ~ .custom-control-label:after {
    top: .7rem;
    left: -0.8rem;
    background-image: none;
    background-color: var(--inputFieldGreen);
    border-radius: 100%;
    width: 1.3rem;
    height: 1.3rem
}


.form-group {
    position: relative;
    margin-bottom: 1.5rem !important
}

.form-control:focus {
    box-shadow: none
}

.custom-control {
    min-height: 3rem;
    font-size: 1.4rem
}
@media (max-width: 472px) {
    .custom-control {
        margin: 1.5rem 0 !important
    }
}
.custom-textbox {
    margin: 0;
    font-family: inherit;
    overflow: visible;
    display: inline-block;
    line-height: 1.2;
    font-size: 14px;
    color: #000;
    width: 100%;
    background: #fff;
    border-radius: 0;
    -webkit-border-radius: 0;
    text-align: left;
    box-shadow: none;
    -webkit-box-shadow: none;
    padding-left: 20px;
    padding-right: 10px;
    outline: 0;
    border: 1px solid #DDD !important;

    &:focus {
        border: 1px solid !important;
        box-shadow: none
    }
}
.block-container {
    margin-bottom: 2rem;
    padding: 2rem 5rem;
    border-radius: .5rem;
    box-shadow: .05rem .05rem .2rem .1rem var(--lightGrey);
    background: var(--white)
}

@media (max-width: 992px) {
    .block-container {
        padding: 2rem
    }
}

@media (max-width: 992px) {
    .block-container h2.head3 {
        font-size: 1.8rem !important
    }
}

.custom-textbox {
    padding-left: 1.4rem
}

.html {
    background: #777
}

.buttons_content{
    margin-top: 25px;
}

h1{
    font-size: 32px;
}

#accordionExample{
    width: 100%;
}

.packageContainer {
    max-width: 992px;
    margin-top: 4rem;
    margin-inline: auto;
}

.packageTitle {
    font-size: 32px;
    line-height: 1.2;
    font-weight: bold;
    margin-top: 2rem;
}

.btn {
    font-size: 12px;
}

.upload-continue-column-container {
    /*margin-top: 2rem;*/
}

@media (min-width: 993px) and (max-width: 1055px) {
    .block-container .palette-list li:nth-child(5n) {
         margin-right: 1.2rem;
    }
}

.tif-tiff-eps{
    text-align: center;
}



#logoDesignForm{
    display: flex ;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

.add_basket, .nextBtn, .add-service-file-btn{
    /*border-radius: 50px;*/
}

.add-service-file-btn{
    margin-bottom:12px
}

.del-file, .upload-continue-column-container{
    /*text-align:center;*/
}

.upload-continue-column-container{
    margin-bottom:12px
}

.file-details{
    width:100%
}

@media (max-width: 480px) {
    .block-container{
        padding: 2rem 0rem;
    }
}

@media (max-width: 440px) {
    .computer-upload-btn-label{
        font-size: 10px;
        padding-bottom: 6px;
    }

    .site-btn-text-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 379px) {
      .upload-buttons-container{
          padding-right: 0px;
          padding-left: 0px;
      }

    .upload-new-file-container > .position-relative{
        padding-right: 0px;
        padding-left: 0px;
    }

    .computer-upload-btn{
        padding-bottom: 50px!important;
    }
}

.add_basket{
    display: none;
}

.upload-buttons-container{
    margin-top: 12px;
}

/*.fileUploadDiv{*/
/*    position: relative;*/
/*}*/

/*.del-file-content{*/
/*    position: absolute;*/
/*    left: 95%;*/
/*    bottom: 10%;*/
/*}*/


.file-details-container, .file-details,.upload-buttons-container, .success_upload_content{
    display: flex;
    justify-content: space-between;
}

.btn_del_doc{
    background-color: #bb2d3b;
    color:white;
    width: 40%;
}

.computer-upload-btn{
    width: 40%;
}

@media (max-width: 580px) {
    .comp-file-dropper-container{
        aspect-ratio: 1;
        height: unset;
        width: 100%;
    }
    .file-details-container,
    .file-details,
    .upload-buttons-container,
    .success_upload_content{
        display: block;
        justify-content: normal;
    }

    .computer-upload-btn,  .btn_del_doc{
        width: 100%;
    }
}
