
.fright {
    float: right;
}

.fleft { float: left; }
.clear { clear: both; }

#coverBackground {
    background: rgba(0,0,0,0.8);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    text-align: center;
}

.tab-content {
    background: #fff;
}

.selectBox {
    border: 1px solid #ddd;
    padding: 15px;
    margin: 15px;
    background: #f5f5f5;
}

.selectBoxElement {
    display: block;
    padding: 5px 10px;
    border: 1px solid #a6ffa6;
    background: #ddffe3;    
    margin-bottom: 15px;
}

.selectBoxElement i {
    color: red;
    cursor: pointer;
}

.selectBoxElement i:hover {
    color: #ff6b6b;
}

.edit_button { position: relative; }

.edit_button:before {
    content: 'e';
    position: absolute;
    top: -45px;
    right: -45px;
    height: 45px;
    width: 45px;
    border: 1px solid #fff;
    border-radius: 50px;
    background: rgba(255,255,255,0.3);
    text-align: center;
    line-height: 45px;
}

.edit_button:hover:before {
    cursor: pointer;
    background: rgba(255,255,255,0.7);
}

.coverContent {
    position: absolute;
    top: 100px;
    width: 800px;
}

.input_text {
    position: relative;
    margin: auto;
    width: 100%;
    max-width: 280px;
}

.input_text .label {
    position: absolute;
    top: 0px;
    left: 0;
    font-size: 16px;
    color: #9098a9;
    font-weight: 500;
    transform-origin: 0 0;
    transition: all 0.2s ease;
}

.input_text input {
    -webkit-appearance: none;
    width: 100%;
    border: 0;
    font-family: inherit;
    padding: 12px 0;
    padding-bottom: 0px;
    margin-bottom: 12px;
    height: 48px;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 2px solid #c8ccd4;
    background: none;
    border-radius: 0;
    color: #223254;
    transition: all 0.15s ease;
    z-index: 1;
    position: relative;
}

.input_text .border {
    position: absolute;
    bottom: 0;
    left: 0;
    top: 26px;
    height: 2px;
    width: 100%;
    background: #07f;
    transform: scaleX(0);
    transform-origin: 0 0;
    transition: all 0.15s ease;
}

.input_text input:hover {
    
}

.input_text input:not(:placeholder-shown) + span {
    color: #5a667f;
    transform: translateY(-26px) scale(0.75);
    top: 5px;
}

.input_text input:focus {
    background: none;
    outline: none;
}

.input_text input:focus + span {
    color: #07f;
    transform: translateY(-26px) scale(0.75);
}

.input_text input:focus + span + .border {
    transform: scaleX(1);
}

.nav-item a {
    color: #333;
    background-color: #aaa;
    
}

.btn {
    border: none;
    font-family: 'Lato';
    font-size: inherit;
    color: inherit;
    background: none;
    cursor: pointer;
    padding: 10px 20px;
    display: inline-block;
    margin: 15px 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    outline: none;
    position: relative;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.btn:after {
    content: '';
    position: absolute;
    z-index: -1;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

/* Pseudo elements for icons */
.btn:before {
    font-family: 'FontAwesome';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

.btn-success {
    background: #2ecc71;
    color: #fff;
}

.btn-success:hover {
    background: #27ae60;
}

.btn-success:active {
    background: #27ae60;
    top: 2px;
}

.btn-success:before {
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    line-height: 3;
    font-size: 140%;
    width: 60px;
}

.btn_cancel {
    border-bottom: 1px solid #333;
    font-family: 'Lato';
    font-size: inherit;
    color: inherit;
    background: none;
    cursor: pointer;
    padding: 10px 20px;
    display: inline-block;
    margin: 15px 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    outline: none;
    position: relative;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.btn_cancel:hover {
    border-bottom: 0;
    margin-bottom: 21px;
}

form .without_padding {
    padding: 0px!important;
}

.selectEntry > div {
    border-radius: 5px;
    -webkit-box-shadow: 0 0 30px 0 rgba(0,0,0,.3);
    -moz-box-shadow: 0 0 30px 0 rgba(0,0,0,.3);
    box-shadow: 0 0 30px 0
    rgba(0,0,0,.3);
    margin-bottom: 25px;
    color:
    #555;
    background-color:
    #fff;
}

.selectEntry > div > .title {
    padding: 15px;
}

.selectEntry > div > .title input {
    float: right;
    -webkit-appearance: checkbox; /* Chrome, Safari, Opera */
    -moz-appearance: checkbox;    /* Firefox */
    -ms-appearance: checkbox;     /* not currently supported */
}

.selectEntry > div > .text {
    padding: 15px;
    display: none;
    border-top: 1px solid #c8ccd4;
}

/* custom checkboxes */

.selectEntry input[type=radio] { display:none; } /* to hide the checkbox itself */
.selectEntry input[type=radio] + label:before {
  font-family: FontAwesome;
  display: inline-block;
}

.selectEntry input[type=radio] + label:before { content: "\f096"; } /* unchecked icon */
.selectEntry input[type=radio] + label:before { letter-spacing: 10px; } /* space between checkbox and label */

.selectEntry input[type=radio]:checked + label:before { content: "\f046"; } /* checked icon */
.selectEntry input[type=radio]:checked + label:before { letter-spacing: 5px; } /* allow space for check mark */

.ui-autocomplete { position: absolute;z-index:300000 !important;}