[v-cloak] { display:none }
[v-cloak]::before { content: "loading…" }

.sub-builder-app-container{
    width: 100%;
    padding: 1.25rem;
    max-width: 700px;
}
.sub-builder-app-container .required{
    color: #f56565;
    margin-right: 0.5rem;
}
.sub-builder-app-container .form-container{
    width: 100%;
    margin-top: 1.25rem;
}
.sub-builder-app-container .form-container:first-child{
    margin-top: 0;
}
.sub-builder-app-container .field{
    flex-grow: 1;
}
.sub-builder-app-container .label{
    text-align: left;
    width: 10rem;
    margin-right: 1.25rem;
    padding-top: 0.75rem;
}
.sub-builder-app-container .label.email{
    width: auto;
}
.sub-builder-app-container .text-area{
    background-color: white;
    border: 1px solid;
    border-color: #cbd5e0;
    border-radius: 0.25rem;
    width: 100%;
    min-width: 100%;
    padding: 0.25rem;
    margin-top: 0.5rem;
    box-sizing: border-box;
    height: 65px;
    resize: vertical;
    flex-grow: 1;
}
.sub-builder-app-container .text-input{
    background-color: white;
    border: 1px solid;
    border-color: #cbd5e0;
    border-radius: 0.25rem;
    width: 100%;
    min-width: 100%;
    padding: 0.25rem;
    margin-top: 0.5rem;
    box-sizing: border-box;
    height: 35px;
    resize: vertical;
    flex-grow: 1;
}

.sub-builder-app-container .info{
    display: block;
    color: #a0aec0;
    font-size: .75rem;
}
.sub-builder-app-container .info.error{
    color: #f56565;
}
.sub-builder-app-container .info.success{
    color: #38a169;
}
.sub-builder-app-container code{
    background-color: #e2e8f0;
    color: black;
    border-radius: 0.125rem;
    font-size: .75rem;
    padding-right: 0.25rem;
    padding-left: 0.25rem;
}
.sub-builder-app-container .copy-text{
    background-color: white;
    border: 1px solid;
    border-color: #cbd5e0;
    border-radius: 0.25rem;
    width: 100%;
    padding: 0.25rem;
    margin-top: 1.5rem;
    box-sizing: border-box;
    height: 80px;
    resize: vertical;
}
.sub-builder-app-container .button{
    background-color: #e2e8f0;
    transition-property: background-color, border-color, color, fill, stroke;
    transition-duration: 100ms;
    border-radius: 0.25rem;
    border: 1px solid;
    margin-right: 5px;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    display: inline-flex;
    align-items: center;
}
.sub-builder-app-container .button.blue{
    background-color: #3182ce;
    color: white;
}
.sub-builder-app-container .button:hover{
    background-color: #cbd5e0;
}
.sub-builder-app-container .button.blue:hover{
    background-color: #63b3ed;
}
.sub-builder-app-container .result-container{
    padding: 1.25rem;
    background-color: white;
    border: 1px solid;
    border-color: #cbd5e0;
    border-radius: 0.25rem;
    margin-top: 1.5rem;
}
.sub-builder-app-container .copy-info{
    display: inline-block;
    background-color: #718096;
    color: white;
    border-radius: 0.25rem;
    font-size: .75rem;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-bottom: 0.5rem;
    transition-property: opacity;
    transition-duration: 200ms;
}
.sub-builder-app-container .opacity-100{
    opacity: 1;
}
.sub-builder-app-container .opacity-0{
    opacity: 0;
}
.sub-builder-app-container .mail-form{
    position: relative;
}
.sub-builder-app-container .mail-button-container{
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.sub-builder-app-container .cancel{
    margin-left: 10px;
    display: inline-block;
    cursor: pointer;
    color: #718096;
    font-size: 11px;
    font-weight: bold;
}
.lds-ring {
    display: inline-block;
    position: relative;
    width: 20px;
    height: 20px;
    margin-left: 5px;
}
.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 15px;
    height: 15px;
    margin: 2px;
    border: 2px solid #fff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}
@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (min-width: 640px) {
    .sub-builder-app-container .form-container{
        display: flex;
    }
    .sub-builder-app-container .label{
        text-align: right;
    }
}
