@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

body,
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #FDFDFD;
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    font-weight: normal;
    color: #273673;
    margin: 0;
    padding: 0;
}

a {
    transition: all 0.5s ease-in-out;
}

a,
a:hover,
a:focus {
    text-decoration: none;
}

img {
    max-width: 100%;
    object-fit: cover;
}

ul {
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

p {
    margin: 0;
}

.container {
    max-width: 1402px;
    margin: 0 auto;
    padding: 0 12px;
}




.main-wrapper {
    background-image: url(../images/background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
}

header {
    padding: 20px 0 0;
}

.header {
    padding: 12px 0 15px;
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.header-logo a img {
    max-width: 316px;
}

.header-btn-group ul {
    display: flex;
    align-items: center;
    gap: 6px;
}

.create-btn {
    background-color: transparent;
    border: 1px solid #67D2B9;
    border-radius: 48px;
    color: #67D2B9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    height: 48px;
    min-width: 218px;
    letter-spacing: 0.15px;
    text-transform: capitalize;
    transition: all 0.5s ease-in-out;
}

.create-btn:hover {
    background-color: #67D3BA;
    color: #273673;
}

.login-btn {
    background-color: #67D2B9;
    border: 1px solid #67D2B9;
    border-radius: 48px;
    color: #273673;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    height: 48px;
    min-width: 176px;
    letter-spacing: 0.15px;
    text-transform: capitalize;
    transition: all 0.5s ease-in-out;
}

.login-btn:hover {
    background-color: transparent;
    border-color: #67D3BA;
    color: #67D3BA;
}


.file {
    padding: 152px 0 162px;
}

.file-row {
    background-color: #FFFFFF;
    border-radius: 21px;
    background-image: url(../images/shape-1.png);
    background-position: calc(100% + 1px) 0;
    background-size: calc(50% + 20px) 100%;
    background-repeat: no-repeat;
    display: flex;
    min-height: 460px;
    max-width: 1016px;
    margin: 0 auto;
    padding: 0 40px;
}

.file-copy {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding-right: 20px;
    position: relative;
    width: 50%;
}

.file-copy-heading {
    color: #273673;
    font-family: "Raleway", sans-serif;
    font-size: 37px;
    line-height: 43px;
    font-weight: 700;
    letter-spacing: 0.36px;
    text-align: center;
    margin: 0;
}

.file-copy-heading span {
    color: #67D3BA;
    display: block;
}

.file-copy-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.file-copy-description {
    color: #273673;
    font-family: "Raleway", sans-serif;
    font-size: 15px;
    line-height: 19px;
    font-weight: 400;
    letter-spacing: 0;
    text-align: center;
    max-width: 423px;
    margin: 0 auto;
}

.file-copy-btn {
    background-color: #67D2B9;
    border: 1px solid #67D2B9;
    border-radius: 48px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    height: 48px;
    min-width: 235px;
    letter-spacing: 0.15px;
    text-transform: capitalize;
    transition: all 0.5s ease-in-out;
}

.file-copy-btn:hover {
    background-color: #273673;
    border-color: #273673;
}

.file-copy-text {
    color: #273673;
    font-family: "Raleway", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    position: absolute;
    bottom: 30px;
    left: 0;
    text-align: center;
    padding: 0 20px 0 0;
    width: 100%;
}




.file-form {
    background-color: #FFFFFF;
    border-radius: 5px;
    box-shadow: 6px 7px 36px #00000041;
    margin: -70px 0 -70px auto;
    max-width: 435px;
    overflow: hidden;
    position: relative;
    max-height: 576px;
    min-height: 576px;
    height: 100%;
    width: 50%;
}

/* .file-form form{
    min-height: 576px;
    height: 100%;
} */
.form-loader.active-loader {
    display: flex;
    z-index: 1;
}

.form-loader {
    background-color: rgba(39, 54, 115, 0.5);
    border-radius: 5px;
    display: none;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.form-loader .spinner {
    width: 60px;
    height: 60px;
    border: 6px solid rgba(103, 211, 186, 0.2);
    border-radius: 50%;
    border-top: 6px solid #67D3BA;
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.file-form-inner {
    height: 450px;
    overflow: auto;
    padding: 22px 30px 20px;
}

.file-form-top {
    background-color: #F8FCFB;
    border: 1px dashed #67D3BA;
    border-radius: 6px;
    padding: 22px 16px 15px;
    margin: 0 0 30px;
}

.darg-heading {
    color: #273673;
    font-family: "Raleway", sans-serif;
    font-size: 21px;
    line-height: 23px;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-align: center;
    max-width: 234px;
    margin: 0 auto 12px;
}

.file-upload-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 0 0 6px;
}

.file-upload-single {
    background-color: #FFFFFF;
    border: 1px solid #EAEAEA;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 13px;
    padding: 8px 12px;
}

.file-upload-single-icon img {
    height: 35px;
    min-height: 35px;
    min-width: 35px;
    width: 35px;
}

.file-upload-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
}

.file-upload-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

.file-upload-name-heading {
    color: #555555;
    font-family: "Raleway", sans-serif;
    font-size: 10px;
    line-height: 14px;
    font-weight: 700;
    letter-spacing: 0.1px;
    margin: 0;
}

.file-upload-format ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.file-upload-format ul li {
    border-right: 1px solid #67D3BA;
    color: #7E7E7E;
    font-family: "Raleway", sans-serif;
    font-size: 10px;
    line-height: 14px;
    font-weight: 400;
    letter-spacing: 0;
    list-style: none;
    margin: 0;
    padding: 0 10px 0 0;
}

.file-upload-format ul li:last-child {
    border-right: 0;
}

.file-upload-btn {
    background-color: transparent;
    border: 0;
    border-radius: 0;
    color: #273673;
    font-family: "Raleway", sans-serif;
    font-size: 40px;
    line-height: 14px;
    font-weight: 400;
    padding: 0;
    transform: rotate(45deg);
    cursor: pointer;
    height: 16px;
    width: 16px;
}

.file-upload-btn-rotate {
    transform: rotate(45deg) !important;
}

.file-input input {
    display: none;
}

.file-upload-box {
    background-color: #DBF4EE;
    border-radius: 6px;
    color: #273673;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: "Raleway", sans-serif;
    font-size: 10px;
    line-height: 21px;
    font-weight: 700;
    letter-spacing: 0.1px;
    padding: 8px 10px;
}

.file-upload-icon {
    background-color: transparent;
    border: 1px solid #273673;
    border-radius: 50%;
    color: #273673;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Raleway", sans-serif;
    font-size: 20px;
    line-height: 1;
    font-weight: 500;
    height: 16px;
    width: 16px;
}

.file-size {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 0 0;
}

.file-count {
    color: #363636;
    font-family: "Raleway", sans-serif;
    font-size: 10px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0;
}

.size-remaining {
    color: #273673;
    font-family: "Raleway", sans-serif;
    font-size: 10px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0;
}

.file-form-bottom .form-group {
    position: relative;
    margin: 0 0 14px;
}

.file-form-bottom .emailtobox {
    position: relative;
}

.file-form-bottom .emailto.form-group input {
    padding: 10px 30px 10px 10px;
}

.file-form-bottom .form-group label {
    background-color: #FFFFFF;
    color: #67D3BA;
    font-family: "Raleway", sans-serif;
    font-size: 9px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
    position: absolute;
    top: -6px;
    left: 12px;
    padding: 2px 8px;
}

.file-form-bottom .form-group input {
    background-color: #FFFFFF;
    border: 1px solid #ACACAC;
    border-radius: 3px;
    color: #363636;
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    line-height: 1;
    font-weight: 400;
    outline: none;
    height: 45px;
    padding: 10px;
    width: 100%;
}

.file-form-bottom .emailto-btn {
    background-color: #FFFFFF;
    border: 1px solid #273673;
    border-radius: 50%;
    color: #273673;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Raleway", sans-serif;
    font-size: 20px;
    line-height: 1;
    font-weight: 500;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto 0;
    height: 16px;
    width: 16px;
}

.file-form-bottom .form-group textarea {
    background-color: #FFFFFF;
    border: 1px solid #ACACAC;
    border-radius: 3px;
    color: #363636;
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    line-height: 1;
    font-weight: 400;
    outline: none;
    height: 90px;
    padding: 10px;
    resize: none;
    width: 100%;
}

.file-form-bottom .message.form-group {
    margin: 0;
}

.email-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 6px 0 0;
}

.email-single {
    background-color: #F0F0F0;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 16px;
}

.email-single span {
    color: #363636;
    font-family: "Raleway", sans-serif;
    font-size: 12px;
    line-height: 14px;
    font-weight: 400;
    letter-spacing: 0.40px;
}

.email-single-btn {
    background-color: transparent;
    border: 0;
    border-radius: 0;
    color: #363636;
    font-family: "Raleway", sans-serif;
    font-size: 24px;
    line-height: 14px;
    font-weight: 400;
    padding: 0;
    transform: rotate(45deg);
    cursor: pointer;
    height: 14px;
    width: 14px;
}


.file-form-fixed {
    background-color: #EEFAF7;
    border-radius: 0 0 5px 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px 30px 18px;
    min-height: 126px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.new-account {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.account-input-list {
    display: flex;
    gap: 12px;
}

.account-input-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 50%;
}

.account-input-box {
    background-color: #FFFFFF;
    border: 1px solid #ACACAC;
    border-radius: 4px;
    display: flex;
    height: 35px;
}

.account-input-box label {
    border-right: 1px solid #ACACAC;
    color: #67D3BA;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Raleway", sans-serif;
    font-size: 9px;
    line-height: 10px;
    font-weight: 700;
    height: 33px;
    min-width: 60px;
    text-transform: uppercase;
}

.account-input-box select {
    border: none;
    border-radius: 4px;
    color: #808080;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0.14px;
    outline: none;
    text-align: center;
    width: 100%;
}

.account-input-group p {
    color: #273673;
    font-family: "Raleway", sans-serif;
    font-size: 9px;
    line-height: 10px;
    font-weight: 400;
}

.create-account-btn {
    background-color: #273673;
    border: none;
    border-radius: 8px;
    color: #FFFFFF;
    cursor: pointer;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.14px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
}

.create-account-btn:disabled {
    background-color: #919191;
}

.send-now button {
    background-color: #273673;
    border: none;
    border-radius: 8px;
    color: #FFFFFF;
    cursor: pointer;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.14px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 6px 10px;
    transition: all 0.5s ease-in-out;
    width: 100%;
}

.send-now button span {
    color: #67D3BA;
    padding: 0 0 0 4px;
    transition: all 0.5s ease-in-out;
}

.send-now button span a{
    color: #67D3BA;    
}
.send-now button:hover a{
    color: #67D3BA;    
}

.send-now button:hover,
.create-account-btn:hover {
    background-color: #67D3BA;
}
.send-now button:hover a{
      color:#273673;
}

.send-now button:hover span,.send-now button span a:hover {
    color: #273673;
}

.send-now p {
    color: #273673;
    font-family: "Raleway", sans-serif;
    font-size: 10px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0.34px;
    text-align: center;
    margin: 12px 0 0;
}



.digital {
    padding: 0 0 72px;
}

.digital-row {
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 40px;
}

.digital-list ul {
    display: flex;
    align-items: end;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.digital-list ul li {
    display: flex;
    align-items: center;
    justify-content: end;
    flex-direction: column;
    gap: 10px;
    list-style: none;
}

.digital-list ul li span {
    color: #FFFFFF;
    font-family: "Raleway", sans-serif;
    font-size: 9px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.27px;
    text-transform: uppercase;
}

.digital-heading {
    color: #FFFFFF;
    font-family: "Raleway", sans-serif;
    font-size: 27px;
    line-height: 39px;
    font-weight: 700;
    letter-spacing: 0.27px;
    margin: 0;
}

#ajax_msg {
    position: absolute;
    top: 2px;
    font-size: 11px;
}

#ajax_msg.error {
    color: red;
}

#ajax_msg.success {
    color: green;
}


/* Respons */
.respons-download {
    display: none;
}

.respons-download.active {
    display: block;
}

.respons-top {
    height: 480px;
    /* overflow: auto; */
    padding: 22px 30px 20px;
}

.respons-top .file-form-top {
    margin: 0 0 20px;
}

.respons-top .file-upload-list {
    margin: 0;
    max-height: 230px;
    overflow: auto;
}

.respons-top .darg-heading {
    max-width: 100%;
    text-align: left;
}

.respons-top .file-upload-btn {
    display: block;
    transform: unset;
    height: 24px;
    width: 24px;
}

.respons-top .file-upload-btn img {
    width: 24px;
}

.respons-top .copy-link-btn {
    background-color: #FFFFFF;
    border: none;
    border-left: 1px solid #ACACAC;
    border-radius: 0 3px 3px 0;
    color: #273673;
    cursor: pointer;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 1px;
    margin: auto 0;
    height: calc(100% - 2px);
    padding: 2px 10px;
}

.respons-top .copy-link-btn img {
    width: 16px;
}

.respons-top .file-form-bottom .form-group input {
    padding: 10px 85px 10px 10px;
}

.respons-top .expiry-date {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px 0 0 0;
}

.respons-top .expiry-date h4 {
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
}

.respons-top .expiry-date p {
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
}

.respons-fixed,
.respons-expiry-fixed {
    background-color: #EEFAF7;
    border-radius: 0 0 5px 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px 30px 18px;
    min-height: 96px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.respons-download-btn,
.respons-expiry-download-btn {
    background-color: #273673;
    border: none;
    border-radius: 8px;
    color: #FFFFFF;
    cursor: pointer;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.14px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 6px 10px;
    transition: all 0.5s ease-in-out;
    width: 100%;
}


/* Respons Expiry */

.respons-expiry-top {
    height: 480px;
    overflow: auto;
    padding: 22px 30px 20px;
}

.respons-expiry .respons-expiry-box img {
    display: block;
    max-width: 250px;
    max-height: 200px;
    margin: 0 auto 30px;
}

.respons-expiry .respons-expiry-box h3 {
    color: #273673;
    font-family: "Raleway", sans-serif;
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.14px;
    text-align: center;
    margin: 0 0 20px;
}

.respons-expiry .respons-expiry-box p {
    color: #273673;
    font-family: "Raleway", sans-serif;
    font-size: 18px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0.14px;
    text-align: center;
    margin: 0;
}


.progress-wrapper {
        position: relative;
        width: 120px;
        height: 120px;
        margin: 0 auto;        
}


.progress-wrapper svg {
    transform: rotate(-90deg);
    width: 120px;
    height: 120px;
}

.progress-wrapper circle {
    fill: none;
    stroke-width: 10;
    stroke-linecap: round;
}

.progress-wrapper .bg {
    stroke: #e6e6e6;
}

.progress-wrapper .progress {
    stroke:#67D2B9;
    stroke-dasharray: 314;    
    stroke-dashoffset: 314;
    transition: stroke-dashoffset 0.3s ease;
}
.progress-wrapper .progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
}

.upload-inputs {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 8px;
    align-items: flex-start;
}
.upload-inputs .file-input {
    width: 100%;
}




@media only screen and (max-width: 1024px) {
    .header-logo a img {
        max-width: 250px;
    }

    header {
        padding: 12px 0 0;
    }

    .file-row {
        padding: 0 20px;
    }

    .file-copy-heading {
        font-size: 32px;
        line-height: 38px;
    }

    .file-form-inner,
    .respons-top,
    .respons-expiry-top {
        padding: 16px 20px 25px;
    }

    .file-form-fixed,
    .respons-fixed,
    .respons-expiry-fixed {
        padding: 16px 20px 18px;
    }

    .file-form-top {
        padding: 20px 12px 12px;
    }

    .digital-heading {
        font-size: 20px;
        line-height: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .main-wrapper {
        background-image: url(../images/mobile-bg.jpg);
    }

    .header-logo a img {
        max-width: 200px;
    }

    .create-btn {
        font-size: 14px;
        height: 42px;
        min-width: 178px;
    }

    .login-btn {
        font-size: 14px;
        height: 42px;
        min-width: 100px;
    }

    .file {
        padding: 70px 0 66px;
    }

    .file-row {
        background-image: none;
        background-color: transparent;
        flex-direction: column;
        gap: 50px;
        padding: 0 44px;
    }

    .file-copy {
        padding: 0;
        width: 100%;
    }

    .file-form {
        margin: 0 auto;
        width: 100%;
    }

    .file-copy-heading {
        color: #FFFFFF;
        max-width: 460px;
        margin: 0 auto;
    }

    .file-copy-description {
        color: #FFFFFF;
    }

    .file-copy-text {
        color: #FFFFFF;
        position: unset;
    }

    .digital-row {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }

    .digital-heading {
        font-size: 24px;
        line-height: 30px;
    }

    .digital-list ul {
        gap: 26px;
    }
}

@media only screen and (max-width: 550px) {
    .header-row {
        gap: 20px;
    }

    .header-logo a img {
        max-width: 120px;
    }

    .create-btn {
        font-size: 12px;
        height: auto;
        min-width: unset;
        padding: 10px 16px;
    }

    .login-btn {
        font-size: 12px;
        height: auto;
        min-width: unset;
        padding: 10px 16px;
    }

    .file {
        padding: 50px 0 60px;
    }

    .file-row {
        padding: 0 6px;
    }

    .digital-heading {
        font-size: 18px;
        line-height: 24px;
    }

    .digital-list ul {
        gap: 18px;
    }

    .send-now button {
        font-size: 12px;
    }
    .upload-inputs {
        flex-direction: column;
    }

}

