.designRequest {
    padding: 100px 0 275px;
    color: white;
    background-color: #12032a;
    position: relative;
    overflow: hidden;
}

.color-light {
    color: rgba(253, 253, 253, 0.7);
}

.designRequest:after {
    background: radial-gradient(50% 50% at 50% 50%, rgba(240, 56, 191, .376) 0, #12032a 100%);
    content: "";
    height: 500px;
    position: absolute;
    bottom: -275px;
    left: 0;
    width: 100%;
}

@media (min-width: 1200px) {
    .designRequest {}
}

.designRequest .start {
    text-align: center;
}

.designRequest .start .title {
    font-size: 40px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}
@media (max-width: 600px) {
    .designRequest .start .title {
        font-size: 32px;
    }
}

.designRequest .start .desc {
    font-size: 20px;
}

.invisible {
    visibility: hidden;
    opacity: 0;
}

.startBtn {
    display: inline-block;
    width: auto;
    cursor: pointer;
    border: 1px solid transparent;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 12px 0px;
    padding: 8px 20px;
    background-color: rgb(255, 62, 181);
    border-radius: 4px;
    font-size: 24px;
    font-weight: 700;
}

.sec-content {
    position: relative;
    height: 500px;
}

.designRequest .start,
.designRequest .steps {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s ease-in-out;
}
.designRequest .start {
    display: flex;
    justify-content: center;
    align-items: center;
}
.designRequest .steps .images {
    display: none;
}
.designRequest .steps {
    display: flex;
}
.designRequest .steps .form-steps {
    width: 100%;
}

@media (min-width: 991px) {
    .designRequest .steps .images {
        width: 50%;
        position: relative;
        display: flex;
    }
    .designRequest .steps .form-steps {
        width: 50%;
    }
    .designRequest .form-steps .step {
        padding: 20px;
        padding-left: 40px;
    }
}

.designRequest .images img {
    transition: 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.designRequest .steps img.show {
    opacity: 1;
    visibility: visible;
}
.designRequest .steps .step-header {
    margin-bottom: 30px;
}
.designRequest .steps .step-title {
    font-size: 26px;
}
.designRequest .steps .step-desc {
    font-size: 18px;
}
.designRequest .form-steps {
    position: relative;
    overflow: hidden;
}
.designRequest .form-steps .step {
    transition: 0.2s ease-out;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    visibility: hidden;
}
.designRequest .form-steps .step-current {
    opacity: 1;
    visibility: visible;
}
.designRequest .form-steps .step-before {
    transform: translateY(-100%);
}
.designRequest .form-steps .step-after {
    transform: translateY(100%);
}
.designRequest .form-steps .f-group {
    margin-bottom: 50px;
}

.designRequest .form-steps .f-label {
    font-size: 20px;
}
.designRequest .form-steps .f-text{
    border: 0;
    outline: 0;
    -webkit-text-fill-color: rgb(255, 255, 255);
    animation: 1ms ease 0s 1 normal none running native-autofill-in;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    background-color: transparent !important;
    font-size: 24px;
    width: 100%;
    color: white;
}
.designRequest .form-steps .f-text:focus {
    border-bottom-color: rgb(255, 255, 255) 0px 2px;
}
.designRequest .form-steps .f-text:-webkit-autofill,
.designRequest .form-steps .f-text:-webkit-autofill:hover,
.designRequest .form-steps .f-text:-webkit-autofill:focus,
.designRequest .form-steps .f-text:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
    background-color: transparent !important;
    transition: background-color 5000s ease-in-out 0s;
}

.step-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
}
.step-buttons .step-back {
    cursor: pointer;
    display: inline-block;
    padding: 4px 8px;
}
.step-buttons .step-next {
    display: inline-block;
    width: auto;
    cursor: pointer;
    border: 1px solid transparent;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 12px 0px;
    padding: 6px 12px;
    background-color: rgb(255, 62, 181);
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
}

.file-area {
    min-height: 200px;
    border: 1px dashed rgba(255, 255, 255, 0.8);
    border-radius: 3px;
    transition: background 0.1s;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.file-area:hover {
    background: rgba(255, 255, 255, 0.3);
}
.file-area .icon-upload {
    position: relative;
}
.file-area .icon-upload .arric {
    position: absolute;
    left: 37%;
    bottom: 0;
}

.form-error {
    background-color: rgb(247, 230, 230);
    border-radius: 3px;
    min-width: 0px;
    color: rgb(255, 255, 255);
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    padding: 2px 10px 2px 4px;
    margin-top: 8px;
}
.form-error .icon-error {
    margin-right: 5px;
}
.form-error .icon-error svg {
    fill: rgb(140, 3, 3);
    display: block;
}
.form-error .error-text {
    font-size: 14px;
    line-height: 20px;
    color: rgb(140, 3, 3);
}
.previewImages {

}
.previewImages img {
    display: inline-block;
    width: 140px;
    height: 140px;
    object-fit: cover;
    object-position: center;
    margin: 5px;
}

.checkout-content .checkout-paypal {
    color: #222;
}
.submitBtn {
    display: inline-block;
    border: none;
    background: none;
    background-color: #FF0037;
    color: #fff;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
}

.hidden {
    display: none;
}
.list-radio-vertical .radio-control {
    display: block;
}
.btn-complete-order {
    border: none;
    background: none;
    background-color: #FF0037;
    color: #fff;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 5px;
    width: 100%;
    cursor: pointer;
    font-size: 18px
}
.input-text {
    width: 100%;
    border-radius: 5px;
    height: 40px;
    border: 1px solid #E3E3E3;
    padding-left: 10px;
}
.button {
    cursor: pointer;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    border: 0;
    padding: 8px 16px;
    font-size: 16px;
    line-height: 1.5;
    border-radius: 3px;
    transition: color .15sease-in-out, background-color .15sease-in-out, border-color .15sease-in-out, box-shadow .15sease-in-out;
}

#fastlane-checkout-button {
    cursor: pointer;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 0;
    padding: 12px 20px;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.5;
    border-radius: 3px;
    transition: color .15sease-in-out, background-color .15sease-in-out, border-color .15sease-in-out, box-shadow .15sease-in-out;
    background-color: #349ddd;
    color: white;
}
#checkout-fastlane .button {
    background-color: #349ddd;
    color: white;
}
.fastlane-btn {
    border: none;
    background: none;
    background-color: #349ddd;
    color: #fff;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 5px;
    width: 100%;
    cursor: pointer;
    font-size: 18px;
}
#checkout-fastlane .button:disabled,
#fastlane-checkout-button:disabled {
    cursor: wait;
}