@import url('https://fonts.googleapis.com/css2?family=El+Messiri&display=swap');

html {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

* {
    box-sizing: inherit;
}

*:before,
*:after {
    box-sizing: inherit;
}

body {
    /*font-family: "Roboto", Arial;*/
    font-family: 'El Messiri', sans-serif;
    background: #fff;
}

.availability-section {
    min-height: 96vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.inner-availability {}

.availability-box {}

.availability-box p {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.7px;
    margin-bottom: 14px;
    font-family: 'El Messiri', sans-serif;
    text-align: center;
}

.availability-text {
    display: flex;
    align-items: center;
    justify-content: center;
}

.availability-text .radio {
    margin: 5px 4px;
    padding: 0;
}
.availability-text .radio a {
    text-decoration: none;
}

.availability-text .radio:hover {}

.availability-text .radio input {
    position: relative;
    top: 2px;
}

.availability-text .radio label {
    cursor: pointer;
    width: 100%;
    padding: 7px 12px 3px 12px;
    background: transparent;
    width: 88px;
    border-radius: 80px;
    text-align: center;
    font-weight: 600;
    display: flex;
    letter-spacing: 1px;
    font-size: 16px;
    transition: all 0.5s;
    align-items: center;
    justify-content: center;
}

.radio-label.green-line {
    border: 1px solid #04c704;
    color: #04c704;
}

.radio-label.red-line {
    border: 1px solid #F05352;
    color: #F05352;
}

.radio-label.green-line:hover {
    background: #04c704;
    color: #fff;
}

.radio-label.red-line:hover {
    background: #F05352;
    color: #fff;
}

.custom02 input[type="radio"] {
    display: none;
}

.custom02 label {
    position: relative;
    display: inline-block;
    padding: 3px 3px 3px 20px;
    cursor: pointer;
}

.custom02 label::before,
.custom02 label::after {
    position: absolute;
    content: '';
    top: 50%;
    border-radius: 100%;
    -webkit-transition: all .2s;
    transition: all .2s;
}

.custom02 label::before {
    left: 0;
    width: 14px;
    height: 14px;
    margin-top: -8px;
    background: #f3f3f3;
    border: 1px solid #ccc;
}

.custom02 label:hover::before {
    background: #fff;
}

.custom02 label::after {
    opacity: 0;
    left: 4px;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    background: #3498db;
    -webkit-transform: scale(2);
    transform: scale(2);
}

.custom02 input[type="radio"]:checked+label::before {
    background: #fff;
    border: 1px solid #3498db;
}

.custom02 input[type="radio"]:checked+label::after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.box {
    padding: 20px;
    margin-top: 20px;
}

.yes.box.thank-you {
    border: 1px solid #228B22;
    border-radius: 3px;
}

.yes.box.thank-you p {
    font-size: 18px;
    color: #212331;
    text-align: center;
    padding: 0.3em;
    margin: 0;
    letter-spacing: 1px;
}

.no.box.commit {
    border: 1px solid #F05352;
    border-radius: 3px;
}

.no.box.commit p {
    margin: 0;
    text-align: center;
    padding: 0;
    font-size: 16px;
    letter-spacing: 0.6px;
    color: #212331;
    margin-bottom: 4px;
}

.rescedue-box {}

.rescedue-box input {
    padding: 6px;
    height: 35px;
    width: 168px;
    outline: none;
    border: 1px solid #adadad;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 600;
    color: #212331;
}

.rescedue-box input:focus {
    border: 1px solid #212331;
}

.rescedue-box select {
    padding: 6px;
    height: 35px;
    width: 168px;
    outline: none;
    border: 1px solid #adadad;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 600;
    color: #212331;
}

.rescedue-box select:focus {
    border: 1px solid #212331;
}

.flex-m {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    margin-bottom: 6px;
}

.rescedue-box-text button {
    display: inline-block;
    width: 94px;
    padding: 7px 4px 4px 4px;
    border: 1px solid #029e1a;
    border-radius: 4px;
    outline: none;
    box-shadow: none;
    background: #029e1a;
    color: #fff;
    font-size: 16px;
    letter-spacing: 0.5px;
    margin-left: 3px;
    float: right;
    transition: all 0.5s;
    cursor: pointer;
    height: 35px;
    font-family: 'El Messiri', sans-serif;
}

.rescedue-box-text button:hover {
    border: 1px solid #029e1a;
}

.logo-c {
    margin-bottom: 1em;
}

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

.logo-d {
    margin-bottom: 1em;
}

.logo-d img {
    max-width: 390px;
    width: 100%;
}

@media only screen and (min-width: 320px) and (max-width: 480px) {
    .rescedue-box-text button {
        width: 89px;
    }

    .availability-box p {
        line-height: 20px;
        font-size: 15px;
        margin-bottom: 8px;
    }

    .availability-section {
        min-height: 90vh;
        padding-top: 2em;
        padding-bottom: 2em;
        padding-left: 10px;
        padding-right: 10px;
    }

}

@media only screen and (min-width: 401px) and (max-width: 767px) {
    .availability-section {
        padding-top: 3em;
        padding-bottom: 3em;
    }

}

.modal-dialog.modify-box {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    width: 90%;
}

.modal-content.modify-content {}

.modal-content.modify-content.than_content{
    width: 100%;
    background-color: transparent;
    border: transparent;
}

.modal-header.modify-header {
    border: none;
    height: auto;
    padding: 0;
}

.modify-close {
    background: #fff;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    text-align: center;
    vertical-align: middle;
    color: #000;
    font-size: 16px;
    position: absolute;
    right: -10px;
    top: -11px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #000;
    z-index: 1;
}

.modal-body.modify-body {
    padding: 2rem 3rem 3rem 3rem;
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2000 1500'%3E%3Cdefs%3E%3Crect stroke='%23ffffff' stroke-width='0.72' width='1' height='1' id='s'/%3E%3Cpattern id='a' width='3' height='3' patternUnits='userSpaceOnUse' patternTransform='scale(10) translate(-900 -675)'%3E%3Cuse fill='%23fafafa' href='%23s' y='2'/%3E%3Cuse fill='%23fafafa' href='%23s' x='1' y='2'/%3E%3Cuse fill='%23f5f5f5' href='%23s' x='2' y='2'/%3E%3Cuse fill='%23f5f5f5' href='%23s'/%3E%3Cuse fill='%23f0f0f0' href='%23s' x='2'/%3E%3Cuse fill='%23f0f0f0' href='%23s' x='1' y='1'/%3E%3C/pattern%3E%3Cpattern id='b' width='7' height='11' patternUnits='userSpaceOnUse' patternTransform='scale(10) translate(-900 -675)'%3E%3Cg fill='%23ebebeb'%3E%3Cuse href='%23s'/%3E%3Cuse href='%23s' y='5' /%3E%3Cuse href='%23s' x='1' y='10'/%3E%3Cuse href='%23s' x='2' y='1'/%3E%3Cuse href='%23s' x='2' y='4'/%3E%3Cuse href='%23s' x='3' y='8'/%3E%3Cuse href='%23s' x='4' y='3'/%3E%3Cuse href='%23s' x='4' y='7'/%3E%3Cuse href='%23s' x='5' y='2'/%3E%3Cuse href='%23s' x='5' y='6'/%3E%3Cuse href='%23s' x='6' y='9'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='h' width='5' height='13' patternUnits='userSpaceOnUse' patternTransform='scale(10) translate(-900 -675)'%3E%3Cg fill='%23ebebeb'%3E%3Cuse href='%23s' y='5'/%3E%3Cuse href='%23s' y='8'/%3E%3Cuse href='%23s' x='1' y='1'/%3E%3Cuse href='%23s' x='1' y='9'/%3E%3Cuse href='%23s' x='1' y='12'/%3E%3Cuse href='%23s' x='2'/%3E%3Cuse href='%23s' x='2' y='4'/%3E%3Cuse href='%23s' x='3' y='2'/%3E%3Cuse href='%23s' x='3' y='6'/%3E%3Cuse href='%23s' x='3' y='11'/%3E%3Cuse href='%23s' x='4' y='3'/%3E%3Cuse href='%23s' x='4' y='7'/%3E%3Cuse href='%23s' x='4' y='10'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='c' width='17' height='13' patternUnits='userSpaceOnUse' patternTransform='scale(10) translate(-900 -675)'%3E%3Cg fill='%23e5e5e5'%3E%3Cuse href='%23s' y='11'/%3E%3Cuse href='%23s' x='2' y='9'/%3E%3Cuse href='%23s' x='5' y='12'/%3E%3Cuse href='%23s' x='9' y='4'/%3E%3Cuse href='%23s' x='12' y='1'/%3E%3Cuse href='%23s' x='16' y='6'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='d' width='19' height='17' patternUnits='userSpaceOnUse' patternTransform='scale(10) translate(-900 -675)'%3E%3Cg fill='%23ffffff'%3E%3Cuse href='%23s' y='9'/%3E%3Cuse href='%23s' x='16' y='5'/%3E%3Cuse href='%23s' x='14' y='2'/%3E%3Cuse href='%23s' x='11' y='11'/%3E%3Cuse href='%23s' x='6' y='14'/%3E%3C/g%3E%3Cg fill='%23e0e0e0'%3E%3Cuse href='%23s' x='3' y='13'/%3E%3Cuse href='%23s' x='9' y='7'/%3E%3Cuse href='%23s' x='13' y='10'/%3E%3Cuse href='%23s' x='15' y='4'/%3E%3Cuse href='%23s' x='18' y='1'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='e' width='47' height='53' patternUnits='userSpaceOnUse' patternTransform='scale(10) translate(-900 -675)'%3E%3Cg fill='%23ffbaba'%3E%3Cuse href='%23s' x='2' y='5'/%3E%3Cuse href='%23s' x='16' y='38'/%3E%3Cuse href='%23s' x='46' y='42'/%3E%3Cuse href='%23s' x='29' y='20'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='f' width='59' height='71' patternUnits='userSpaceOnUse' patternTransform='scale(10) translate(-900 -675)'%3E%3Cg fill='%23ffbaba'%3E%3Cuse href='%23s' x='33' y='13'/%3E%3Cuse href='%23s' x='27' y='54'/%3E%3Cuse href='%23s' x='55' y='55'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='g' width='139' height='97' patternUnits='userSpaceOnUse' patternTransform='scale(10) translate(-900 -675)'%3E%3Cg fill='%23ffbaba'%3E%3Cuse href='%23s' x='11' y='8'/%3E%3Cuse href='%23s' x='51' y='13'/%3E%3Cuse href='%23s' x='17' y='73'/%3E%3Cuse href='%23s' x='99' y='57'/%3E%3C/g%3E%3C/pattern%3E%3C/defs%3E%3Crect fill='url(%23a)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23b)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23h)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23c)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23d)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23e)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23f)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23g)' width='100%25' height='100%25'/%3E%3C/svg%3E");
    background-attachment: fixed;
    background-size: cover;
    border-radius: 6px;
}
.modal-body.modify-body.than_you_body{
    padding: 2rem 3rem 3rem 3rem;
    background-color: transparent;
    background-image: none;
    border-radius: 6px;
}

body {
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2000 1500'%3E%3Cdefs%3E%3Crect stroke='%23ffffff' stroke-width='0.72' width='1' height='1' id='s'/%3E%3Cpattern id='a' width='3' height='3' patternUnits='userSpaceOnUse' patternTransform='scale(10) translate(-900 -675)'%3E%3Cuse fill='%23fafafa' href='%23s' y='2'/%3E%3Cuse fill='%23fafafa' href='%23s' x='1' y='2'/%3E%3Cuse fill='%23f5f5f5' href='%23s' x='2' y='2'/%3E%3Cuse fill='%23f5f5f5' href='%23s'/%3E%3Cuse fill='%23f0f0f0' href='%23s' x='2'/%3E%3Cuse fill='%23f0f0f0' href='%23s' x='1' y='1'/%3E%3C/pattern%3E%3Cpattern id='b' width='7' height='11' patternUnits='userSpaceOnUse' patternTransform='scale(10) translate(-900 -675)'%3E%3Cg fill='%23ebebeb'%3E%3Cuse href='%23s'/%3E%3Cuse href='%23s' y='5' /%3E%3Cuse href='%23s' x='1' y='10'/%3E%3Cuse href='%23s' x='2' y='1'/%3E%3Cuse href='%23s' x='2' y='4'/%3E%3Cuse href='%23s' x='3' y='8'/%3E%3Cuse href='%23s' x='4' y='3'/%3E%3Cuse href='%23s' x='4' y='7'/%3E%3Cuse href='%23s' x='5' y='2'/%3E%3Cuse href='%23s' x='5' y='6'/%3E%3Cuse href='%23s' x='6' y='9'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='h' width='5' height='13' patternUnits='userSpaceOnUse' patternTransform='scale(10) translate(-900 -675)'%3E%3Cg fill='%23ebebeb'%3E%3Cuse href='%23s' y='5'/%3E%3Cuse href='%23s' y='8'/%3E%3Cuse href='%23s' x='1' y='1'/%3E%3Cuse href='%23s' x='1' y='9'/%3E%3Cuse href='%23s' x='1' y='12'/%3E%3Cuse href='%23s' x='2'/%3E%3Cuse href='%23s' x='2' y='4'/%3E%3Cuse href='%23s' x='3' y='2'/%3E%3Cuse href='%23s' x='3' y='6'/%3E%3Cuse href='%23s' x='3' y='11'/%3E%3Cuse href='%23s' x='4' y='3'/%3E%3Cuse href='%23s' x='4' y='7'/%3E%3Cuse href='%23s' x='4' y='10'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='c' width='17' height='13' patternUnits='userSpaceOnUse' patternTransform='scale(10) translate(-900 -675)'%3E%3Cg fill='%23e5e5e5'%3E%3Cuse href='%23s' y='11'/%3E%3Cuse href='%23s' x='2' y='9'/%3E%3Cuse href='%23s' x='5' y='12'/%3E%3Cuse href='%23s' x='9' y='4'/%3E%3Cuse href='%23s' x='12' y='1'/%3E%3Cuse href='%23s' x='16' y='6'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='d' width='19' height='17' patternUnits='userSpaceOnUse' patternTransform='scale(10) translate(-900 -675)'%3E%3Cg fill='%23ffffff'%3E%3Cuse href='%23s' y='9'/%3E%3Cuse href='%23s' x='16' y='5'/%3E%3Cuse href='%23s' x='14' y='2'/%3E%3Cuse href='%23s' x='11' y='11'/%3E%3Cuse href='%23s' x='6' y='14'/%3E%3C/g%3E%3Cg fill='%23e0e0e0'%3E%3Cuse href='%23s' x='3' y='13'/%3E%3Cuse href='%23s' x='9' y='7'/%3E%3Cuse href='%23s' x='13' y='10'/%3E%3Cuse href='%23s' x='15' y='4'/%3E%3Cuse href='%23s' x='18' y='1'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='e' width='47' height='53' patternUnits='userSpaceOnUse' patternTransform='scale(10) translate(-900 -675)'%3E%3Cg fill='%23ffbaba'%3E%3Cuse href='%23s' x='2' y='5'/%3E%3Cuse href='%23s' x='16' y='38'/%3E%3Cuse href='%23s' x='46' y='42'/%3E%3Cuse href='%23s' x='29' y='20'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='f' width='59' height='71' patternUnits='userSpaceOnUse' patternTransform='scale(10) translate(-900 -675)'%3E%3Cg fill='%23ffbaba'%3E%3Cuse href='%23s' x='33' y='13'/%3E%3Cuse href='%23s' x='27' y='54'/%3E%3Cuse href='%23s' x='55' y='55'/%3E%3C/g%3E%3C/pattern%3E%3Cpattern id='g' width='139' height='97' patternUnits='userSpaceOnUse' patternTransform='scale(10) translate(-900 -675)'%3E%3Cg fill='%23ffbaba'%3E%3Cuse href='%23s' x='11' y='8'/%3E%3Cuse href='%23s' x='51' y='13'/%3E%3Cuse href='%23s' x='17' y='73'/%3E%3Cuse href='%23s' x='99' y='57'/%3E%3C/g%3E%3C/pattern%3E%3C/defs%3E%3Crect fill='url(%23a)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23b)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23h)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23c)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23d)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23e)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23f)' width='100%25' height='100%25'/%3E%3Crect fill='url(%23g)' width='100%25' height='100%25'/%3E%3C/svg%3E");
    background-attachment: fixed;
    background-size: cover;
    border-radius: 6px;
}

.modify-footer {
    display: inline-block;
    width: 100%;
    text-align: center;
}

.modify-footer button {
    display: inline-block;
    font-family: 'El Messiri';
    line-height: normal;
    background: #1dde73;
    padding: 6px 20px 4px 20px;
    border: none;
    border-radius: 4px;
    text-align: center;
    font-size: 16px;
    color: #fff;
    letter-spacing: 0.5px;
    outline: none;
    transition: all 0.5s;
}

.modify-footer button:hover {
    background: #03af50;
}

.modify-footer button i.fas.fa-times {
    display: block;
    width: 30px;
    height: 16px;
}

.svg-check-icon {
    display: inline-block;
    text-align: center;
    width: 100%;
    padding: 1em 0 0em 0;
}

.svg-check-icon img {
    width: 60px;
}

.yes-thank {
    border-radius: 3px;
    margin: 1em auto;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.yes-thank p {
    font-size: 18px;
    color: #212331;
    text-align: center;
    padding: 0.3em;
    margin: 0;
    letter-spacing: 1px;
}

.modal-body.modify-body.than_you_body .yes-thank p {
    font-size: 35px;
    color: #212331;
    text-align: center;
    padding: 0.3em;
    margin: 0;
    letter-spacing: 1px;
    line-height: 40px;
}

button,
input,
optgroup,
select,
textarea {
    margin: unset;
    font-family: 'El Messiri', sans-serif;
    font-size: 14px;
    line-height: 18px;
}

.no-box-commit {
    border-radius: 3px;
    margin: 2em auto 1em auto;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.no-box-commit p {
    margin: 0;
    text-align: center;
    padding: 0;
    font-size: 16px;
    letter-spacing: 0.6px;
    color: #212331;
    margin-bottom: 4px;
}

.svg-truck-icon {
    display: inline-block;
    text-align: center;
    width: 100%;
    padding: 1em 0 0em 0;
}

.svg-truck-icon img {
    width: 100px;
}

.scheduled-delivery-text {
    padding: 20px 0;
    text-align: center;
}

.scheduled-delivery-text h4 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.scheduled-date {
    padding: 0px 0 15px 0;
    text-align: center;
}

.scheduled-date h3 {
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

.delivery_address-i {
    padding: 10px 10px;
    max-width: 400px;
    background: #f5f5f5;
    border-radius: 5px;
}
.normaldelivery_address-i {
    padding: 10px 10px;
    max-width: 400px;
    background: #f5f5f5;
    border-radius: 5px;
}

.address-i {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.normaladdress-i {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.address-i i {
    font-size: 20px;
    margin-right: 6px;
}

.address-text {
    line-height: 20px;
    padding: 5px 29px;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 600;
}
.normaladdress-text {
    line-height: 20px;
    padding: 5px 29px;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 600;
}

@media only screen and (min-width: 320px) and (max-width: 568px) {
    .modal-body.modify-body {
        padding: 1rem 1rem 2rem 1rem;
    }
    .modal-body.modify-body.than_you_body {
    padding: 2rem 1rem 3rem 1rem;
}
.modal-body.modify-body.than_you_body .yes-thank p {
    font-size: 21px;
    line-height: 26px;
}

    .rescedue-box select {
        width: 150px;
    }
}

.track-number{
    font-size: 16px;
    margin-top: 10px;
    font-weight: 600;
}
.normaltrack-number{
    font-size: 16px;
    margin-top: 10px;
    font-weight: 600;
}
.track-number a{}

@media (min-width: 576px){
.modal-dialog.modify-box.than_dialog {
    max-width: 700px;
    margin: 1.75rem auto;
}
}

#loader { 
    background:rgba(0,0,0,0.8); 
    position:fixed; 
    bottom:0; 
    left:0; 
    top:0; 
    width:100%; 
    height:100%; 
    z-index:100;
}
  
  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  /* Add animation to "page content" */
  .animate-bottom {
    position: relative;
    -webkit-animation-name: animatebottom;
    -webkit-animation-duration: 1s;
    animation-name: animatebottom;
    animation-duration: 1s
  }
  
  @-webkit-keyframes animatebottom {
    from { bottom:-100px; opacity:0 } 
    to { bottom:0px; opacity:1 }
  }
  
  @keyframes animatebottom { 
    from{ bottom:-100px; opacity:0 } 
    to{ bottom:0; opacity:1 }
  }
  
  #myDiv {
    display: none;
    text-align: center;
  }
  .loader-box {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 9;
    width: 120px;
    height: 120px;
    margin: -76px 0 0 -76px;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}