#pageBuilderArea textarea, textarea#intro {
    height: 10rem;
    width: 100%;
}
/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

div.form-section {
    margin-top: 0.2rem;
}
div.modal-body h6, div.modal-body p {
    margin: 1rem 0;
}
div.form-section div:not(.text-center) {
    display: flex;
    padding: 0.5rem 0;
}
div.form-section label, div.form-section input {
    float: none;
    margin: 0;
    text-align: left;
}
div.form-section label {
    margin-left: 0.7rem;
}
a.addNew {
    margin: 5px 0;
    padding: 2px 0 0 25px;
    font-size: 11px;
    background: url(../images/icons/add.png) no-repeat 0 0;
    font-weight: bold;
}

.addTemplateDiv {
    width: 90%;
}

.addTemplateDiv p {
    padding: 2rem 0 1rem 0;
}

label#pageBuilderArea {
    padding: 2px 5px;
    display: inline;
    width: 155px;
    float: left;
    font-weight: normal;
    text-align: left;
    margin: 0;
    clear: none !important;
}

input#pageBuilderArea, select#pageBuilderArea, textarea#pageBuilderArea {
    margin-bottom: 10px;
    float: left;
}

.imageInfo {
    font-size: 12px;
    color: blue;
}

.grid-container {
    display: grid;
    cursor: move;
    border: 2px solid gray;
    grid-template-columns: auto auto auto;
}

.nobullet {
    list-style-type: none;
}

.grid-container > div {
    padding: 10px;
    font-size: 18px;
}

.pull-left {
    text-align: left;
}

.pull-right {
    text-align: right;
}

.item1 {
    grid-column-start: 1;
    grid-column-end: 3;
}

.item {
    grid-column-start: 1;
    grid-column-end: 4;
}

.bordered {
    border-bottom: 2px solid grey;
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding-bottom: 10px;
    border: none;
    width: 30%;
}

/* Modal Header */
.modal-header {
    font-weight: bold;
    padding: 10px;
    background-color: #2253b6;
}

form {
    border: none;
}

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

.modal-header > h1 {
    color: white;
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

.outer-template {
    display: block;
    text-align: start;
}

.text-center {
    text-align: center;
}

/* The Close Button */
.close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
    margin-top: -6px;
}

.close:hover,
.close:focus {
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.spacer {
    margin-bottom: 5px;
}

/* Split the screen in half */
.split {
    height: 250px;
    width: 50%;
    overflow-x: hidden;
    padding-top: 20px;
}

/* Style the image inside the centered container, if needed */
.centered img {
    width: 150px;
    border-radius: 50%;
}

.box {
    height: 30px;
    border: 1px solid #999;
    font-size: 18px;
    background-color: #eee;
    border-radius: 5px;
    box-shadow: 4px 4px #ccc;
}

.switch {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 25px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 4px;
    top: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 21px;
}

.slider.round:before {
    border-radius: 50%;
}