/* Font import */
@import url("https://fonts.googleapis.com/css?family=Roboto:100,200,300,400,500,600,700,800,900");
@import url("https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900");


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

/* Full page */
#full-screen {
    display: flex;
    padding: 58px 120px 80px 158px;
}

/* Sticky left side */
#left-side-content{
    position: -webkit-sticky;
    position: sticky;
    top: 58px;
}

/* Right side of the page */
#right-side {
    background: #FFFFFF;
    box-shadow: 0 2px 8px -2px rgba(48,49,51,0.24);
    padding: 48px 58px 58px 58px;
    margin-left: 147px;
}

/* Logo */
#yourwoo-logo {
    width: 126px;
    height: 24px;
    margin-bottom: 48px;
}

/* Heading text */
.text-heading {
    font-family: Poppins-Bold;
    font-family:'Poppins';font-weight:700;
    font-size: 24px;
    color: #303133;
}

/* Padding under the heading text (left side) */
.text-heading-left {
    padding-bottom: 19px;
}

/* Padding under the heading text (right side) */
.text-heading-right {
    padding-bottom: 15px;
}

/* Small text */
.text-small {
    font-family: Roboto-Light;
    font-family:'Roboto';font-weight:300;
    font-size: 12px;
    color: #303133;
    line-height: 18px;
    text-transform: capitalize;
}

/* Thin text */
.text-thin {
    font-family: Roboto-Light;
    font-family:'Roboto';font-weight:300;
    font-size: 16px;
    color: #303133;
    line-height: 24px;
}

/* Left side padding right of the thin text */
.text-thin-space {
    max-width: 600px;
}

/* Normal text */
.text-normal {
    font-family: Roboto-Regular;
    font-family:'Roboto';font-weight:400;
    font-size: 16px;
    color: #303133;
    line-height: 26px;
    padding-bottom: 32px;
}

/* Blue text */
.text-blue {
    color: #006CFF;
    font-family: Roboto-Bold;
    font-family:'Roboto';font-weight:700;
}

/* Max-width text */
.text-width {
    max-width: 484px;
}

/* Capitalized grey text */
.text-uppercase {
    font-family: Roboto-Medium;
    font-family:'Roboto';font-weight:500;
    font-size: 12px;
    color: #B0BAC9;
    letter-spacing: 1.12px;
    text-transform: uppercase;
    padding-bottom: 14px;
}

/* Checkbox text */
.text-checkbox {
    font-family: Roboto-Regular;
    font-family:'Roboto';font-weight:400;
    font-size: 14px;
    color: #303133;
    line-height: 24px;
}

/* Hidden text */
#text-hidden {
    display: none;
}

/* Send button */
.form-btn, .send-btn {
    background: #006CFF;
    box-shadow: 0 4px 8px -2px rgba(0,0,0,0.24);
    border-radius: 4px;
    font-family: Roboto-Medium;
    font-family:'Roboto';font-weight:500;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 20px;
    padding: 14px 28px;
    border: none;
    float: right;
    text-transform: uppercase;
    cursor: pointer;
    margin-bottom: 20px;
}
.form-btn.fa-spinner {
    display: none;
}
button:disabled {
    background: #aaa;
    cursor: wait;
}

/* Remove outline */
.form-btn:focus, .send-btn:focus, .close-btn:focus, .back-btn:focus, .reset-btn:focus {
    outline: none;
}

.send-btn {
    display: none;
}

/* Reset button */
.reset-btn {
    background: rgba(255,255,255,0.00);
    border-radius: 4px;
    font-family: Roboto-Medium;
    font-family:'Roboto';font-weight:500;
    font-size: 14px;
    color: #006CFF;
    line-height: 20px;
    padding: 14px 28px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    float: right;
    visibility: hidden;
    margin-bottom: 20px;
}

/* <hr> */
.split-hr {
    margin: 32px 0;
    border: 1px solid #F5F6F8;
}

/* Checkbox padding */
.checkbox-padding {
    padding-bottom: 32px;
}

.campaign-name {
    display: none;
}

.campaign-name-text {
    background: #FFFFFF;
    box-shadow: 0 4px 8px -2px rgba(0,0,0,0.12);
    border-radius: 4px;
    font-family: Roboto-Regular;
    font-family:'Roboto';font-weight:400;
    font-size: 14px;
    color: #303133;
    line-height: 20px;
    border: none;
    padding: 14px 0 14px 24px;
    width: 100%;
}

.campaign-name-text:focus {
    outline: none;
}

input::-webkit-input-placeholder {
    color: #303133;
    opacity: 0.5;
}

/* ------------------------------------------
|                                             |
|                   Custom                    |
|                  Checkbox                   |
|                                             |
 ------------------------------------------- */

.checkbox {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.container {
    position: relative;
    padding-left: 34px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.container:hover > .checkmark {
    background: #F9F9F9;
    box-shadow: 0 4px 8px -2px rgba(0,0,0,0.12);
    border-radius: 4px;
}

.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 24px;
    width: 24px;
    background: #FFFFFF;
    box-shadow: 0 4px 8px -2px rgba(0,0,0,0.24);
    border-radius: 4px;
}

.checkmark:after {
    content: url(../images/YOURWOO-cross.svg);
    position: absolute;
    left: 4px;
    top: 3px;
    display: none;
    color: #006CFF;
}

.container input:checked ~ .checkmark:after {
    display: block;
}

/* ------------------------------------------
|                                             |
|                   Custom                    |
|                   Select                    |
|                                             |
 ------------------------------------------- */

.custom-select {
    position: relative;
}

#checkbox-size, #checkbox-workspace, #checkbox-apps{
    padding-bottom: 32px;
}

.custom-select select {
    display: none;
}

.select-selected {
    background: #FFFFFF;
    box-shadow: 0 4px 8px -2px rgba(0,0,0,0.24);
    border-radius: 4px;
}

.select-selected:hover {
    background: #FFFFFF;
    box-shadow: 0 4px 8px -2px rgba(0,0,0,0.12);
    border-radius: 4px;
}

.select-items div,.select-selected {
    padding: 8px 16px;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
    font-family: Roboto-Regular;
    font-family:'Roboto';font-weight:400;
    font-size: 14px;
    color: #303133;
    line-height: 20px;
    padding: 14px 0 14px 24px;
    background: #FFFFFF;
    box-shadow: 0 4px 8px -2px rgba(0,0,0,0.12);
    border-radius: 4px;
}

.select-items {
    position: absolute;
    background-color: #fff;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}

.select-opacity {
    opacity: 0.5;
}

.select-selected:after {
    position: absolute;
    content: url(../images/YOURWOO-arrow.svg);
    top: 16px;
    right: 14px;
}

.select-selected.select-arrow-active:after {
    top: 12px;
    transform: rotate(180deg);
}

.select-hide {
    display: none;
}

.select-items div:hover, .same-as-selected {
    background: #E5F0FF;
    font-family: Roboto-Regular;
    font-family:'Roboto';font-weight:400;
    font-size: 14px;
    color: #006CFF;
    line-height: 20px;
}

/* ------------------------------------------
|                                             |
|                  Custom                     |
|                   Modal                     |
|                                             |
 ------------------------------------------- */

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 200px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(245, 246, 248, 0.6)
}

.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    width: 590px;
    max-width: 100%;
    padding: 48px 30px 80px 30px;
    box-shadow: 0 2px 8px -2px rgba(48,49,51,0.24);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}

/* Add Animation */
@-webkit-keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

@keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

.modal-body {
    padding: 0 16px 0 16px;
}

.fa {
    margin-left: -12px;
    margin-right: 8px;
    display: none;
}

.modal-hr {
    border: 1px solid #F5F6F8;
    margin-bottom: 32px;
}

.close-btn {
    background: #006CFF;
    box-shadow: 0 4px 8px -2px rgba(0,0,0,0.24);
    border-radius: 4px;
    font-family: Roboto-Medium;
    font-family:'Roboto';font-weight:500;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 20px;
    padding: 14px 28px;
    border: none;
    text-transform: uppercase;
    cursor: pointer;
    float: right;
}

.back-btn {
    background: rgba(255,255,255,0.00);
    border-radius: 4px;
    font-family: Roboto-Medium;
    font-family:'Roboto';font-weight:500;
    font-size: 14px;
    color: #006CFF;
    line-height: 20px;
    padding: 14px 28px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    float: right;
}

.text-heading-padding {
    padding-bottom: 10px;
}
.toggle-checkboxes-link {
    line-height: 14px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.toggle-checkboxes-link:after {
    content: ' check all';
    display: inline-block;
    line-height: 14px;
    float: right;
    font-size: 10px;
}
.toggle-checkboxes-link:hover:after {
    color: #006CFF;
}
.toggle-checkboxes-link.checked-all:after {
    content: ' uncheck all';
}

textarea {
    display: block;
    margin-top: 6px;
    width: 100%;
    box-shadow: 0 4px 8px -2px rgba(0,0,0,0.24);
    padding: 16px;
    cursor: text;
    border: none;
    outline: none;
    transition: box-shadow .4s ease-in;
    resize: vertical;
    color: #999;
}
textarea:hover, textarea:focus {
    box-shadow: 0 4px 8px -2px rgba(0,0,0,0.12);
}
textarea#htmlContainer {
    min-height: 200px;
}
textarea#javascriptContainer {
    min-height: 100px;
}

.btn-primary {
    display: inline-block;
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 1.12px;
    color: #fff;
    background-color: #006CFF;
    border: none;
    padding: 16px 32px;
    margin: 35px 0 0;
    text-decoration: none;
    text-align: left;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    box-shadow: 0 4px 8px -2px rgba(0, 0, 0, 0.24);
    transition: all 0.4s ease-in;
}
.btn-primary:hover, .btn-primary:focus {
    box-shadow: 0 4px 8px -2px rgba(0, 0, 0, 0.12);
    background-color: #0053C3;
}


/* ------------------------------------------
|                                             |
|                   Error                     |
|                   Modal                     |
|                                             |
 ------------------------------------------- */

#error-window {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(245, 246, 248, 0.6);
    display: flex;
    display: none;
    align-items: center;
    justify-content: center;
}
#error-window .error-body {
    position: relative;
    min-width: 280px;
    min-height: 200px;
    max-width: 90%;
    height: auto;
    max-height: 90%;
    background: #fff;
    padding: 48px 30px 12px 30px;
    text-align: center;
    overflow: auto;
    box-shadow: 0 2px 8px -2px rgba(48,49,51,0.24);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}
#error-window .error-body p:first-of-type {
    margin-top: -16px;
}
#error-window .error-body .form-btn {
    float: none;
    clear: both;
}
/* ------------------------------------------
|                                             |
|                   Media                     |
|                  Queries                    |
|                                             |
 ------------------------------------------- */

@media only screen and (max-width: 1240px) {
    #full-screen {
        padding: 58px 70px 80px 70px;
    }

    #right-side {
        margin-left: 60px;
    }
}

@media only screen and (max-width: 900px) {
    #full-screen {
        display: flex;
        flex-direction: column;
        padding: 58px 80px 80px 80px;
    }

    #right-side {
        margin-left: 0;
    }

    .text-thin-space {
        padding-bottom: 30px;
    }
}

@media only screen and (max-width: 500px) {
    #full-screen {
        padding: 58px 30px 80px 30px;
    }
    #right-side {
        padding: 48px 28px 12px 28px;
    }
}

@media only screen and (max-width: 400px) {
    .toggle-checkboxes-link {
        line-height: 18px;
    }
    .toggle-checkboxes-link:after {
        display: block;
        float: none;
        clear: all;
    }
}
