input[type="text"] {
    box-sizing: border-box;
    width: 100%;
    height: calc(3em + 2px);
    margin: 0 0 1em;
    padding: 6px;
    padding-left: 12px;
    border: 1px solid #bababa;
    border-radius: 3px;
    background: #fff;
    font-size: 16px;
    resize: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
input[type="text"]:focus {
    border-color: #00bafa;
}
input[type="text"]:focus + label[placeholder]:before {
    color: #00bafa;
}
input[type="text"]:focus + label[placeholder]:before,
input[type="text"]:valid + label[placeholder]:before {
    transition-duration: .2s;
    transform: translate(0, -1.6em) scale(0.9, 0.9);
    /*font-weight: bold;*/
}
input[type="text"]:valid {
    border-color: green;
}
input[type="text"]:valid + label[placeholder]:before {
    color: green;
}
input[type="text"]:invalid + label[placeholder][alt]:before {
    content: attr(alt);
}
input[type="text"] + label[placeholder] {
    display: block;
    pointer-events: none;
    line-height: 1.25em;
    margin-top: calc(-3em - 9px);
    margin-bottom: calc((3em - 1em) + 2px);
    font-weight: 400;
}
input[type="text"] + label[placeholder]:before {
    content: attr(placeholder);
    display: inline-block;
    margin: 0 calc(0.5em + 2px);
    padding: 0 2px;
    color: #7d7d7d;
    white-space: nowrap;
    transition: 0.3s ease-in-out;
    background-image: linear-gradient(to bottom, #ffffff, #ffffff);
    background-size: 100% 5px;
    background-repeat: no-repeat;
    background-position: center;
}


input[type="password"] {
    box-sizing: border-box;
    width: 100%;
    height: calc(3em + 2px);
    margin: 0 0 1em;
    padding: 6px;
    padding-left: 12px;
    border: 1px solid #bababa;
    border-radius: 3px;
    background: #fff;
    font-size: 16px;
    resize: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
input[type="password"]:focus {
    border-color: #00bafa;
}
input[type="password"]:focus + label[placeholder]:before {
    color: #00bafa;
}
input[type="password"]:focus + label[placeholder]:before,
input[type="password"]:valid + label[placeholder]:before {
    transition-duration: .2s;
    transform: translate(0, -1.6em) scale(0.9, 0.9);
    /*font-weight: bold;*/
}
input[type="password"]:valid {
    border-color: green;
}
input[type="password"]:valid + label[placeholder]:before {
    color: green;
}
input[type="password"]:invalid + label[placeholder][alt]:before {
    content: attr(alt);
}
input[type="password"] + label[placeholder] {
    display: block;
    pointer-events: none;
    line-height: 1.25em;
    margin-top: calc(-3em - 9px);
    margin-bottom: calc((3em - 1em) + 2px);
    font-weight: 400;
}
input[type="password"] + label[placeholder]:before {
    content: attr(placeholder);
    display: inline-block;
    margin: 0 calc(0.5em + 2px);
    padding: 0 2px;
    color: #7d7d7d;
    white-space: nowrap;
    transition: 0.3s ease-in-out;
    background-image: linear-gradient(to bottom, #ffffff, #ffffff);
    background-size: 100% 5px;
    background-repeat: no-repeat;
    background-position: center;
}

button[type="submit"] {
    border: 0px;
    color: #fff;
    background-color: #2ab354;
    padding: 17px;
    width: 100% !important;
    font-size: 15px;
    cursor: pointer;
}

.dropdown-menu {
    float: none;
    top: 100%;
    z-index: 1000;
    min-width: 10rem;
    padding: 0.5rem 0;
    text-align: left;
    background-color: #fff;
    border-radius: 0.25rem;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-menu-right {
    right: 0;
    left: auto;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

.dropdown-item:hover {
    color: #16181b;
    text-decoration: none;
    background-color: #f8f9fa;
}

.btn:hover {

    color: white !important;
}

.nav-sidebar .nav-header {
    font-size: 14px;
  padding: 0.5rem;
}

.ck.ck-editor__editable_inline {
    min-height: 300px !important;
}