:root {
    --mdev-color: #0c548d;
}

.mdev a:focus {
    box-shadow: none;
}

.mdev-form * {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.mdev-sticky {
    position: sticky;
    top: 0;
}

.mdev-none {
    display: none;
} 

.mdev-table {
    display: table;
    width: 100%;
    height: 100%;
}
  
.mdev-cell {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 100%;
}

.mdev-tab {
    --tab-border-color: #ddd;
    > .mdev-nav {
        padding: 0;
        margin: 0;
        display: flex;
        align-items: end;
        > li {
            list-style: none;
            > a {
                padding: 15px 20px;
                display: block;
                background-color: #FFF;
                border: 1px solid var(--tab-border-color);
                border-right: 0;
                border-bottom: 0;
                color: #000; 
                text-transform: capitalize; 
                &:hover {
                    background-color: #ddd;
                    border-color: #ddd;
                }
            }
            &:last-child > a {
                border-right: 1px solid var(--tab-border-color);
            }
            > .mdev-active-tab {
                background: var(--mdev-color) !important;
                border-color: var(--mdev-color) !important;
                color: #FFF;
            }
        }
    }
    > .mdev-panel {
        display: none;
        border: 1px solid #ddd;
        padding: 30px;
        background-color: #FFF;
    }
    > .mdev-active-tab {
        display: block;
    }
}

.mdev-modal-open {
    overflow: hidden;
    .mdev-modal {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        background: #0000008a;
        overflow: auto;
        height: 100%;
        z-index: 99999;
    }
    .mdev-base {
        width: 800px;
        margin: 0 auto;
        position: relative;
        padding: 30px;
    }
    .mdev-container {
        background: #FFF;
        padding: 40px;
        border-radius: 10px;
        position: relative;
        > .mdev-close {
            position: absolute;
            right: 5px;
            top: 3px;
            font-size: 22px;
            color: #f25e54;
            border: 0;
            background: none;
            cursor: pointer;
            &:hover {
                color: #000;
            }
        }
    }
}

.mdev-form > .mdev-title, 
.mdev-preview-fields > .mdev-title {
    margin: 0;
    padding-bottom: 25px;
}

.mdev-notice, 
.mdev-success, 
.mdev-error, 
.mdev-field-error {
  background: #b4dbfa;
  padding: 15px 20px;
  color: #000;
  margin-bottom: 20px;
  border-radius: 5px;
}

.mdev-success {
  background: #eaf8db;
}

.mdev-error, 
.mdev-field-error {
  background: #fce7e4;
}

.mdev-field-error {
    position: absolute;
    right: 5px;
    bottom: 5px;
    margin: 0;
    padding: 5px 8px;
    font-size: 12px;
    line-height: 12px;
    display: inline-block;
}

.mdev-files {
    position: relative;
    margin: 4px -8px -8px;
    margin: 10px -3px -3px -3px;
    .mdev-file {
        position: relative;
        float: left;
        padding: 3px;
        margin: 0;
        width: 20%;
        box-sizing: border-box;
        .mdev-base {
            position: relative;
            box-shadow: inset 0 0 15px rgba(0,0,0,.1), inset 0 0 0 1px rgba(0,0,0,.05);
            background: #f0f0f1;
            border-radius: 5px;
            overflow: hidden;
        }
        .mdev-base:before {
            content: "";
            display: block;
            padding-top: 100%;
        }
        .mdev-thumbnail {
            overflow: hidden;
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            opacity: 1;
            transition: opacity .1s;
        }
        .mdev-thumbnail:after {
            content: "";
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            box-shadow: inset 0 0 0 1px rgba(0,0,0,.1);
            overflow: hidden;
        }
        .mdev-centered {
            position: absolute;
            top: 0; left: 0;
            width: 100%;
            height: 100%;
            transform: translate(50%,50%);
        }
        .mdev-centered img {
            transform: translate(-50%,-50%);
            position: absolute;
            top: 0; left: 0; 
            max-height: 100%;
        }
        .mdev-name {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            overflow: hidden;
            max-height: 100%;
            word-wrap: break-word;
            text-align: center;
            font-weight: 600;
            background: rgba(255,255,255,.8);
            box-shadow: inset 0 0 0 1px rgba(0,0,0,.15);
            font-size: 13px;
        }
        .mdev-name div {
            padding: 5px 10px;
            font-size: 12px;
            line-height: 15px;
        }
        .mdev-image .mdev-name {
            display: none;
        }
    }
}
  
.mdev-logo:before {
    content: "";
    display: block;
    background-image: url(logo.png);
    background-size: 100%;
    width: 106px;
    height: 32px;
}

.mdev-builder {
    position: relative;
    background: #FFF;
    height: 100vh;
    & * {
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
    }
    & a {
        text-decoration: none;
    }
    & img {
        max-width: 100%;
    }
    .mdev-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;    
        box-shadow: rgb(0 0 0 / 9%) 0px 2px 3px;
        background: #FFF;
        position: sticky;
        z-index: 2;
        top: 0;
        & a {
            display: flex;
            align-items: center;
            height: 64px;
            color: initial;
            margin-left: 0;
            position: relative;
            &:after {
                content: "";
                position: absolute;
                left: 20px; 
                right: 20px;
                bottom: 0;
                height: 3px;
                display: none;
            }
            &:hover:after {
                display: block;
                background: #ededed;
            }
            & span {
                display: flex;
                align-items: center;
                height: 45px;
                padding: 0 30px;
            }
        }
        > div {
            display: flex;
            align-items: center;
        }
        .mdev-logo {
            margin-left: 24px;
            display: flex;
            align-items: center;
            &:after {
                content:"Form";
                margin-left: 10px;
                background: var(--mdev-color);
                color: #FFF;
                text-transform: uppercase;
                padding: 5px 10px;
                border-radius: 3px;
            }
        }
        > .mdev-right {
            width: 500px;
            padding-right: 24px;
            border-left: 1px solid #ddd;
            justify-content: space-between;
            > .mdev-nav {
                display: flex;
                align-items: center;
            }
            .mdev-default {
                background: #f0f0f1;
                &:after {
                    display: block;
                    background: var(--mdev-color);
                }
            }
            .mdev-save {
                height: 45px;
                position: relative;
                background: var(--mdev-color);
                padding: 0 20px;
                color: #FFF;
                border-radius: 100px;
                margin-left: 20px;
                &:hover {
                    background-color: #000;
                }
                &:after {
                    display: none !important;
                }
                & i {
                    margin-right: 5px;
                }
            }

        }
    }
    .mdev-main {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        > div {
            position: absolute;
            top: 64px;
            bottom: 0;
            overflow: auto;
            padding: 30px;
        }
        > .mdev-left {
            left: 0;
            right: 500px;
            > .mdev-fields > .mdev-field {
                min-height: 20px;
                &:hover:before {
                    content: "";
                    position: absolute;
                    left: 0;
                    right: 0;
                    top: -10px;
                    bottom: -10px;
                    border-radius: 5px;
                    background-color: #938faa38;
                }
            }
            .mdev-form-content {
                width: 100%;
                display: block;
                height: 300px;
            }
            
        }
        > .mdev-right {
            width: 500px;
            right: 0;
            border-left: 1px solid #f0f0f1;
            background: #f0f0f1;
            > div {
                display: none;
                margin: 0;
            }
            > .mdev-show {
                display: block;
            }
            .mdev-icon-frame {
                width: 100%;
                border: 0;
                background-color: #FFF;
                border-radius: 5px;
                height: 208px;
                border: 1px solid #c3c4c7;
                box-shadow: 0 1px 1px rgba(0,0,0,.04);
                position: absolute;
                left: 0;
                margin-top: 50px;
                z-index: 1;
            }
            .mdev-icon-preview {
                position: absolute !important;
                right: 0 !important;
                height: 48px;
                width: 50px;
                display: flex !important;
                align-items: center;
                justify-content: center;
            }
        }
    }
}

.mdev-fields {
    margin: 0 -10px 25px;
    &:after {
        content: "";
        display: block;
        clear: both;
    }
    & :where(.mdev-medium, .mdev-small, .mdev-float) {
        float: left;
        clear: none !important;
    }
    > .mdev-medium {
        width: 50% !important;
    }
    > .mdev-small {
        width: 33.33% !important;
    }
}

.mdev-field {
    position: relative;
    margin-bottom: 25px;
    clear: both;
    &:after {
        content: "";
        display: block;
        clear: both;
    }
    & label {
        display: block;
        margin-bottom: 5px;
        & * {
            display: inline-block;
        }
        & em {
            color: #F44336;
            font-style: normal;
            margin-left: 3px;
        }
        & .mdev-icon {
            margin-right: 5px;
        }
        & .mdev-label-content {
            display: none;
        }
    }
    & :where(input, textarea, select, button) {
        font-size: 100% !important;
        font-family: inherit;
        font-weight: inherit;
        line-height: inherit;
        max-width: inherit !important;
        padding: 12px !important;
        border-radius: 5px !important;
        border: 1px solid #a3a1a1 !important;
        background: #FFFFFF;
        height: 48px;
        width: 100%;
        margin: 0;
    }
    & textarea {
        height: 200px;
        display: block;
    }
    & :where([type=checkbox], [type=radio]) {
        width: 25px !important;
        height: 25px !important;
        margin: 0 6px 0 0 !important;
        position: relative;
        background: #FFF;
        text-indent: 0 !important;
        padding: 0 !important;
        float: left;
        display: flex !important;
        align-items: center;
        justify-content: center;
        appearance: none !important;
        -webkit-appearance: none !important;
        -moz-appearance: none !important;
        line-height: inherit !important;
        &:checked:before { 
            content: "\f00c" !important;
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            font-size: 16px;
            background: none;
            margin: 0 !important;
            width: auto !important;
            height: auto !important;
            line-height: 16px !important;
            background: none !important;
            float: none !important;
        } 
    }
    & [type=radio] {
        border-radius: 100px !important;
        &:checked:before {
            content: "\f111" !important;
        }
    }
    &:hover .mdev-content > .mdev-action {
        display: flex;
    }
    &:last-child {
        margin-bottom: 0;
    }
    .mdev-content {
        position: relative;
        margin: 0 10px;
        &:after {
            content: "";
            display: block;
            clear: both;
        }
        > .mdev-icon {
            position: absolute;
            width: 45px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            & + :where(input, select) {
                text-indent: 25px;
            }
            & + .mdev-item :where(input, select) {
                text-indent: 25px;
            }
            & + textarea {
                padding: 15px 12px 15px 38px;
            } 
            & + .mdev-item textarea {
                padding: 15px 12px 15px 38px;
            } 
        }
        > .mdev-action {
            position: absolute;
            top: 0;
            right: 0;
            left: 0;
            bottom: 0;
            width: 120px;
            padding: 0;
            background: #f9f9f9;
            border: 1px solid #ddd;
            border-radius: 3px;
            height: 48px;
            margin: auto;
            display: flex;
            align-items: center;
            justify-content: space-evenly;
            flex-grow: 1;
            flex-direction: var(--add-field-space);
            display: none;
            z-index: 2;
            & i {
                color: var(--mdev-color);
                &:hover {
                    color: #333;
                }
            }
        }
    }
    .mdev-description {
        clear: both;
        > i {
            margin-left: 5px;
            position: relative;
            z-index: 2;
        }
        > div {
            position: absolute;
            background: var(--mdev-color);
            color: #FFF;
            padding: 15px;
            border-radius: 3px;
            margin: -33px 0 0 12px;
            display: none;
            z-index: 1;
        }
        &:hover {
            > i:before {
                color: #FFF;
                border-radius: 10px;
                background: var(--mdev-color);
            }
            > div {
                display: block;
            }
        }
    }
    .mdev-bottom.mdev-description {
        clear: both;
        padding-top: 5px;
        > div {
            background: none;
            position: initial;
            padding: 0;
            margin: 0;
            display: block !important;
            color: #666;
            font-size: 13px;
        }
    }
    .mdev-side.mdev-description, 
    .mdev-float.mdev-description {
        z-index: 1;
        position: relative;
        > i {
            float: right;
        } 
        > div {
            right: 0;
            margin: -15px 6px 0 0; 
        }
    }
    .mdev-float.mdev-description {
        width: 100%;
        > i {
            position: absolute;
            right: 12px;
            height: 48px;
            display: flex;
            align-items: center;
        }
        > div {
            margin: 0 18px 0 0;
        }
    }
    .mdev-wl > .mdev-float.mdev-description {
        display: initial;
        > i {
            right: 65px;
        }
        > div {
            margin-right: 71px;
        }
    }
    .mdev-wl .mdev-field-error {
        right: 70px;
    }
    .mdev-item {
        position: relative;
        margin-bottom: 5px;
        &:last-child {
            margin-bottom: 0 !important;
        }
        &:after {
            content: "";
            display: block;
            clear: both;
        }
        .mdev-action {
            position: absolute;
            right: 0;
            bottom: 0;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 12px;
            & :where(a, i) {
                margin-left: 1px;
                color: var(--mdev-color);
                font-size: initial;
                &:hover {
                    color: #333;
                }
            }
        }
    }
    .mdev-checkbox, .mdev-radio {
        position: relative;
        & input + label {
            margin-bottom: 1px;
            padding-top: 4px;
            overflow: hidden;
        }
        .mdev-float.mdev-description > i {
            right: 0;
            height: auto;
        }
        .mdev-float.mdev-description > div {
            margin: -15px 7px 0 0;
        }
        .mdev-field-error {
            position: initial;
            margin-top: 5px;
            clear: both;
        }
    }
    .mdev-date .mdev-icon + input, 
    .mdev-time .mdev-icon + input {
        text-indent: 12px;
    }
    .mdev-fields.mdev-content {
        margin: 0;
        > label {
            margin: 0 10px 5px;
        }
        .mdev-field {
            width: 50%;
            float: left;
            clear: none;
            margin-bottom: 0;
        }
        > .mdev-bottom.mdev-description {
            margin: 0 10px;
        }
        .mdev-top.mdev-description > div {
            margin-right: calc(-100% + -20px); 
        }
        .mdev-side.mdev-description > div, 
        .mdev-float.mdev-description > div {
            margin-left: calc(-100% + -20px); 
        }
    }
    .mdev-fields.mdev-fml .mdev-top.mdev-description > div, 
    .mdev-fields.mdev-flm .mdev-top.mdev-description > div {
        margin-right: calc(-150% + -30px); 
    }
    
    .mdev-fields.mdev-flm .mdev-side.mdev-description > div, 
    .mdev-fields.mdev-flm .mdev-float.mdev-description > div {
        margin-left: calc(-410% + -60px); 
    }
    .mdev-fields.mdev-fml .mdev-side.mdev-description > div, 
    .mdev-fields.mdev-fml .mdev-float.mdev-description > div {
        margin-left: calc(-150% + -30px); 
    }
    .mdev-fields.mdev-wl {
        display: block;
        .mdev-content {
            margin: 0 2.5px;
        }
        .mdev-item {
            margin: 0 7.5px 5px;
        }
        .mdev-field-error {
            right: 5px;
        }
        .mdev-field:nth-last-child(2) .mdev-field-error {
            right: 70px;
        }
    }
    .mdev-fields.mdev-fml, 
    .mdev-fields.mdev-flm {
        position: relative;
        .mdev-field {
            width: 40%;
        }
        .mdev-mi {
            width: 20%;
        }
    }
    .clr-field {
        display: block;
        & button {
            background: none;
            color: inherit;
            width: 30px;
            height: 30px;
            padding: 0;
            border: 0 !important;
            border-radius: 20px !important;
            right: 12px;
            cursor: pointer !important;
        }
    }
    .clr-picker {
        z-index: 999999;
    }
}

.mdev-btn {
    padding: 12px 30px;
    border: 0;
    border-radius: 100px;
    background-color: var(--mdev-color);
    color: #FFF;
    cursor: pointer;
    font-family: inherit;
    font-size: 100%;
    font-weight: inherit;
    line-height: inherit;
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    &:hover {
        background-color: #000 !important;
    }
    & i {
        margin-right: 5px;
    }
}

.mdev-process button.mdev-btn, 
.sl.mdev-process {
    background-image: url(spinner.gif) !important;
    background-size: 40% !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    & span {
        visibility: hidden;
        opacity: 0;
    }
}

.sl.mdev-process {
    background-size: 30% !important;
}

.mdev-btn.mdev-ok {
    background-color: #4CAF50;
}

.mdev-json {
    display: none;
}

.mdev-prvw {
    width: 600px;
    max-width: 80%;
    margin: 40px auto;
}

.mdev-preview-fields>.mdev-fields>div:hover:before {
    content: "";
    position: absolute;
    top: -10px;
    bottom: -15px;
    left: -5px;
    right: -5px;
    background: #0c548d1a;
    border-radius: 5px;
}

#mdev-add-field {
    --add-field-space: 5px;
    & a {
        display: block;
        width: 50%;
        text-align: center;
        padding: 20px;
        text-transform: capitalize;
        position: relative;
        font-size: 13px;
        &:before {
            content: "";
            position: absolute;
            border: 1px solid #c5c5c5 ;
            border-radius: 5px;
            top: var(--add-field-space);
            bottom: var(--add-field-space);
            left: var(--add-field-space);
            right: var(--add-field-space);
            background: #FFF;
        }
        & i {
            display: block;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }
        & span {
            position: relative;
            z-index: 1;
            color: #000;
        }
        &:hover {
            border-radius: 5px;
            background: var(--mdev-color);
        }
    }
}

#mdev-add-field.mdev-show {
    display: flex;
    flex-wrap: wrap; 
    align-items: center;
    justify-content: center;
}

#mdev-field-settings {
    position: relative;
    & label {
        text-transform: capitalize;
    }
    #name-field {
        position: relative;
        .mdev-field {
            display: none;
            margin-bottom: 10px;
            & label {
                margin-top: 15px;
            }
            &:nth-child(even) label {
                opacity: 0;
                visibility: hidden;
            }
        }
        #format-field {
            width: auto;
            float: none;
            clear: both;
        }
    }
    #confirmation-field .mdev-field:nth-child(-n+3) { 
        margin-bottom: 10px;
    }
    #size-field select, 
    #date-format-field select {
        text-transform: capitalize;
    }
    #custom-size-field label {
        text-transform: lowercase;
    }
    #list-field {
        margin-bottom: 20px;
    }
    #file-field .mdev-field:nth-child(-n+2) {
        width: auto;
        float: none;
        clear: both;
        margin-bottom: 25px;
    }
    #file-field .mdev-field:nth-child(n+3) {
        width: auto;
    }
}

#mdev-settings {
    position: relative;
    & i {
        position: absolute;
        right: 12px;
        top: 42px;
        font-size: 15px; 
        color: var(--mdev-color);
        cursor: pointer;
        display: none;
        &:hover {
            color: #000;
        }
    }
    .mdev-tags {
        background: #FFF;
        padding: 20px;
        border: 1px solid #c3c4c7;
        box-shadow: 0 1px 1px rgba(0,0,0,.04);
        position: absolute;
        z-index: 1;
        margin: 5px 0 0;
        border-radius: 5px;
        left: 3px;
        right: 3px;
        overflow: auto;
        height: 250px;
        &:before {
            content: "Tags";
            display: inline-block;
            margin-bottom: 5px;
            background: #0c548d;
            color: #FFF;
            padding: 5px 10px;
            border-radius: 100px;
        }
        & a {
            display: block;
            border-bottom: 1px dashed #a8a2a2;
            color: #000;
            padding: 10px 0;
            &:hover {
                color: var(--mdev-color);
            }
            &:last-child {
                border-bottom: 0;
                padding-bottom: 0;
            }
        }
    }
    .mdev-icon-preview {
        top: 0 !important;
    }
    #form-ajax-field {
        position: relative;
            & code {
            display: block;
            padding: 20px;
            color: #000;
            font-size: 12px;
        }
        .mdev-description {
            display: none;
        }
    }
    #form-button-field {
        margin-bottom: 15px;
        .mdev-description {
            padding-top: 0;
            margin: 3px 0 10px 5px;
        }
    }
    #form-mail-field {
        display: none;
        .mdev-tab {
            margin: -10px 10px 0;
        }
        .mdev-nav {
            float: right;
            position: relative;
            top: -40px;
            & a {
                padding: 5px 10px;
            }
        }
        .mdev-panel {
            background: #fefeff;
            padding: 25px 20px 20px;
            border-radius: 5px;
        }
        .mdev-field {
            width: auto;
            float: none;
            margin-bottom: 10px;
            clear: both;
            &:hover i {
                display: block;
            }
        }
        .mdev-field.hlf {
            float: left;
            width: 50%;
            clear: none;
        }
    }
    #form-confirmation-message-field {
        position: relative;
        & i {
            top: 0;
        }
        &:hover i {
            display: block;
        }
        .mdev-tags {
            margin: 5px 7px 0;
        }
    }
}


@media (max-width: 580px) { 

    .mdev-fields {
        position: relative;
        & :where(.mdev-medium, .mdev-small, .mdev-float) {
            float: none;
            clear: both !important;
        }
        > .mdev-medium {
            width: auto !important;
        }
        > .mdev-small {
            width: auto !important;
        }
    }

    .mdev-fields.mdev-content .mdev-field, 
    .mdev-fields.mdev-fml .mdev-field, 
    .mdev-fields.mdev-flm .mdev-field  {
        width: auto !important;
        float: none !important;
        clear: both !important;
        margin-bottom: 25px !important;
    }

}

/** wordpress **/
.wp-admin #mdev-add-form {
    position: relative;
    & :where(.mdev-fields, .mdev-field, .mdev-success) {
        margin-bottom: 0;
    }
    .mdev-field-error {
        right: 105px;
    }
    .mdev-btn {
        position: absolute;
        top: 0;
        right: 0;
        border-radius: 0 5px 5px 0;
    }
}

.post-type-mdevform {
    display: block;
    & :where(.column-fields, .column-view) {
        text-align: center !important;
    }
}

.post-php.post-type-mdevform {
    position: relative;
    & :where(#screen-meta, #screen-meta-links, #dolly, .notice) {
        display: none;
    }
    #wpcontent {
        padding-left: 0;
    }
    #wpbody-content {
        padding-bottom: 0;
    }
    .wrap {
        margin: 0;
        > * {
            display: none !important;
        }
        .mdev {
            display: block !important;
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
        }
    }
    .mdev-bar {
        top: 32px;
        & a {
            margin-left: 30px;
        }
    }
    input[name="form_title"] {
        border: 0;
        background: #f0f0f1;
        padding: 10px 15px;
        border-radius: 100px;
        margin-left: 30px;
        width: 350px;
    }
    ul#adminmenu a.wp-has-current-submenu:after {
        color: #FFF;
    }
    #wpfooter {
        display: none;
    }
}

.mdev-admin-settings {
    position: relative;
    padding-right: 20px;
    & a {
        text-decoration: none;
    }
    & label {
        position: absolute;
        left: 0;
        top: 12px;
    }
    .mdev-nav a {
        padding: 10px 20px !important;
    }
    .mdev-tab > .mdev-nav > li > .mdev-active-tab {
        background: #2c3338 !important;
        border-color: #2c3338 !important;
    }
    .mdev-field {
        margin-bottom: 5px;
    }
    .mdev-content {
        padding-left: 150px;
    }
    .mdev-logo {
        margin: 20px 0;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 20px;
        font-weight: bold;
        &:after {
            content: "Settings";
        }
    }
    .mdev-btn {
        margin-top: 20px;
    }
}

.page .mdev-checkbox, 
.page .mdev-radio {
    & input + label {
        padding-top: 1px;
    }
}