.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 10px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.wsos_form_container {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 15px;
    width: 340px;
    margin-right: auto;
    margin-left: auto;
    border:1px solid #eeeeee;
}

form#wsos_form {
    text-align: center;
    line-height: 26px;
}

span#wsos_copy_button {
    font-size: 20px;
    color: #777777;
    margin-right: 2px;
    cursor: pointer;
    vertical-align: middle;
}

input#wsos_order_number,input#wsos_user_phone {
    text-align: center;
}

div#wsos_submit_wrapper {
    text-align: center;
    margin-top: 10px;
}

#wsos_form input[type="submit"] {
    color: #ffffff;
    font-weight: normal;
    color: #ffffff;
    background-color: #36b0e5;
    border-radius: 50px;
}

div#wsos_order_status_response {
    background-color: #e1efff;
    line-height: 26px;
    padding: 10px 10px 15px;
    border-radius: 15px;
    margin-top: 10px;
    display: none;
    line-height: 26px;
    text-align: center;
}

span#wsos_order_status {
    background-color: green;
    color: #ffffff;
    padding: 0 10px;
    font-size: 12px;
    border-radius: 50px;
}

a#wsos_post_tracking_button {
    background-color: #777777;
    color: #ffffff;
    border-radius: 5px;
    padding: 2px 10px;
    display: inline-block;
    margin-top: 10px;
}

.custom-confirm-button-alert{
    color: #ffffff !important;
    font-weight: normal !important;
    color: #ffffff !important;
    background-color: #36b0e5 !important;
    border-radius: 50px !important;
}

/*
Mobile Styles
================================================== */
/* Note: Add new css to the media query below that you want to only effect the Mobile and Tablet Portrait view */

@media only screen and (max-width: 767px) {
    /* Add your Mobile Styles here */
    .wsos_form_container {
    padding: 20px 20px;
    width: 100%;
    } 
    .wsos_form_container .g-recaptcha {
    transform: scale(0.9); 
    transform-origin: center; 
    }
}    