@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,700;1,400&display=swap");

body {
    padding: 0;
    margin: 0;
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    background-color: #cccdd4;
    color: #3d5161;
    text-align: center;
}

.layout-container {
    max-width: 900px;
    margin: 0 auto;
}

.logo {
    height: 45px;
}
#layout-footer .logo {
    height: 40px;
}

#layout-header .layout-top {
    background-color: #3d5161;
}
.layout-list {
    padding: 10px 20px;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.layout-block {
    border-bottom: 1px solid #eee;
    border-top: 1px solid #a6a6a6;
    margin: 0 auto;
    padding: 10px 2%;
    text-align: left;
    max-width: 900px;
    width: 96%;
}

.layout-block:first-child {
    border-top: 0 none;
}

.layout-field-row {
    width: 100%;
}

.layout-field-box {
    width: 100%;
    margin-bottom: 5px;
    min-width: 100px;
    position: relative;
    z-index: 1;
}

.layout-field-box.has-icon::before {
    background: url("layout_sprite.png") no-repeat scroll 100px 100px
        transparent;
    content: ".";
    text-indent: 100px;
    overflow: hidden;
    width: 50px;
    height: 38px;
    position: absolute;
    background-size: auto 38px;
    z-index: 1;
    top: 5px;
    left: 0;
}
.layout-field-box.has-icon {
    padding-left: 53px;
    box-sizing: border-box;
}
.layout-field-box.has-icon.icon-news::before {
    background-position: 0 0;
}
.layout-field-box.has-icon.icon-pointer::before {
    background-position: -99px 0;
}
.layout-field-box.has-icon.icon-link::before {
    background-position: -205px 0;
}
.layout-field-box.has-icon.icon-mag::before {
    background-position: -148px 0;
}
.layout-field-box.has-icon.icon-folder::before {
    background-position: -52px 0;
}

.layout-form label {
    font-style: italic;
    color: #3d5161;
    font-size: 1em;
    display: block;
}

.layout-form label i {
    font-weight: bold;
}
.layout-form textarea,
.layout-form input {
    width: 98%;
    padding: 5px 1%;
    margin-top: 5px;
    display: block;
    color: #fff;
    background-color: #3d5161;
    border: 0;
}
.layout-form textarea {
    resize: vertical;
    min-height: 200px;
}
.layout-form .layout-note {
    display: block;
    font-size: 14px;
    color: #000;
}
#final_code {
    background-color: #fff;
    color: #333;
}
.layout-form input::placeholder {
    color: #f2b700;
}
.layout-form .ui-autocomplete-category {
    font-weight: bold;
}
.layout-button-holder {
    text-align: center;
}
.layout-button-holder .layout-button {
    margin: 0 auto;
    padding: 6px 21px;
    font-size: 0.9em;
    font-weight: bold;
    color: #3d5161;
    cursor: pointer;
}
#layout-footer {
    background-color: #3d5161;
}
