body {
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

#shiftcontainer {
    margin-left: 20px;
}

#initialquote {
    margin-top: 32px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=radio] {
    margin-bottom: 20px;
}

input[type=checkbox] {
    margin-top: 0px;
    margin-bottom: 0px;
}

#contactInfo {
    margin-bottom: 30px;
}

#contactInfo h4 {
    margin-top: 0px;

}

#contactInfo {
    padding-left: 0px;
}

input.anonymus-check {
    margin-top: 8px;
    margin-bottom: 0;
}

.container {
    max-width: 1080px;
    padding-right: 0px;
    padding-left: 0px;
}


@media (min-width: 992px) {
    .column1 {
        width: 48%;
    }

    .column2 {
        width: 52%;
    }
}

.col-xs-12 {
    padding-right: 0px;
     padding-left: 0px;
}
.user-grey-row {
    background-color: #8cc1638c;
}


.container.form-page {
    color:rgb(102, 102, 102);
    max-width: 1080px;
}
.container.form-page .title {
    font-weight: bold;
    margin-top: 25px;
}
.container.form-page .warning-banner {
    color: white;
    background-color: #ff8a00;
    padding: 12px;
}
.container.form-page .thankyou-banner {
    color:white;
    background-color: #008246;
    padding:12px;
}
.container.form-page .explanation {
    margin-bottom: 20px;
}
.container.form-page form {
    text-align: center;
}
.container.form-page button {
    margin: 0 auto;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    background-color: #315c93;
    border: none;
    color: white;
    padding: 5px 20px;
    border-radius: 4px;
    cursor: pointer;
}

#inlineFormInput {
    width: 300px;
    height: 34px;
    background-color: white;
    color: #666666;
    border: 2px solid #ddd !important;
    padding-left: 10px;
    font-size: 1em;
}
#inlineFormInput:focus {
    border: 2px solid #bbb !important;
}
#inlineFormInput.clearable {
    background: rgba(255, 255, 255, 0.5) url(data:image/gif;base64,R0lGODlhBwAHAIAAAP///5KSkiH5BAAAAAAALAAAAAAHAAcAAAIMTICmsGrIXnLxuDMLADs=) no-repeat right -13px center;
    transition: background 0.2s;
    background-size: 3%;
}
#inlineFormInput.clearable.x{
    background-position: right 10px center;
}
#inlineFormInput.clearable.onX {
    cursor: pointer;
}
#inlineFormInput.clearable::-ms-clear {
    display: none;
    width:0;
    height:0;
}

/*================================================================*/
/* 'edit-user-info' page */
/*================================================================*/

body {
    font-family: "Open Sans",Arial,sans-serif;
    font-size: 15px;
    overflow-y: hidden;
}
#main-container {
    /*margin: 20px auto 40px auto;*/
}
#forms-tabs-bar {
    width: 100%;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #22598f;
    color: white;
    font-weight: 600;
}
#forms-tabs-bar > .form-tab {
    padding: 0 15px;
    margin: 0 5px;
    cursor: pointer;
    line-height: 30px;
    border-radius: 4px;
}
#forms-tabs-bar > .form-tab:hover,
#forms-tabs-bar > .form-tab.selected {
    background-color: #2c7fc7;
}
form#edit-user-info {
    width: 600px;
    margin: 15px auto 15px auto;
    opacity: 0.1;
}
form#edit-user-info .form-label {
    height: 35px;
    line-height: 35px;
    margin-top: 5px;
    font-weight: 600;
    color: #666666;
}
form#edit-user-info .label-image {
    top: 50%;
    position: relative;
    transform: translateY(-50%);
}
form#edit-user-info .label-image.hover {
    opacity: 0.5;
    cursor: pointer;
}
form#edit-user-info .label-image.hover:hover {
    opacity: 0.8;
}
form#edit-user-info input[type=text],
.generic-input {
    width: 100%;
    height: 40px;
    background-color: white;
    color: #666666;
    border: 2px solid #ddd !important;
    padding-left: 10px;
    font-size: 1em;
    margin-bottom: 5px;
    box-sizing: border-box;
}
form#edit-user-info input[type=text]:focus {
    border: 2px solid #bbb !important;
}
form#edit-user-info input[type=radio] {
    width: 19px;
    height: 19px;
    margin-right: 8px;
}
form#edit-user-info input[type=checkbox] {
    width: 17px;
    height: 17px;
    margin-right: 8px;
    vertical-align: sub;
}
form#edit-user-info .inline-radio-label {
    margin-right: 30px;
    vertical-align: top;
    opacity: 0.7;
    width: 225px;
    display: inline-block;
}
form#edit-user-info .coulumns {
    display: flex;
}
form#edit-user-info .coulumns > .left-side,
form#edit-user-info .coulumns > .right-side {
    width: 50%;
}
form#edit-user-info .coulumns > .left-side {
    padding-right: 15px;
}
form#edit-user-info .coulumns > .left-side input[type=text] {
    width: 95%;
}
form#edit-user-info #interests .inline-radio-label,
form#edit-user-info #interests input[type=checkbox],
form#edit-user-info #interests .form-label {
    margin-bottom: 20px;
}

.generic-button {
    border: none;
    outline: none;
    background-color: #3ba1da;
    color: white;
    line-height: 38px;
    padding: 0 50px;
    border-radius: 3px;
    font-size: 15px;
    cursor: pointer;
}
.generic-button-small {
    border: none;
    outline: none;
    background-color: #3ba1da;
    color: white;
    line-height: 28px;
    padding: 0 25px;
    border-radius: 3px;
    font-size: 13px;
    cursor: pointer;
}
.generic-button:hover,
.generic-button-small:hover {
    background-color: #3cb3ed;
}
#save-button {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    line-height: 45px;
    margin-top: 20px;
}
input.clearable{
    background: rgba(255, 255, 255, 0.5) url(data:image/gif;base64,R0lGODlhBwAHAIAAAP///5KSkiH5BAAAAAAALAAAAAAHAAcAAAIMTICmsGrIXnLxuDMLADs=) no-repeat right -13px center;
    transition: background 0.2s;
    background-size: 1.5%;
}
input.clearable.x{
    background-position: right 7px center;
}
input.clearable.onX {
    cursor: pointer;
}
input.clearable::-ms-clear {
    display: none;
    width:0;
    height:0;
}
form#edit-user-info .coulumns input[type=text].clearable {
    background-size: 3.2%;
}
.ui-menu-item-wrapper {
    height: 25px;
    line-height: 25px;
}
.ui-state-active:hover {
    border: 1px solid #eeeeee !important;
    background: #eeeeee !important;
    font-weight: normal;
    color: black;
}
.ui-widget.ui-widget-content {
    max-height: 500px;
    overflow-x: hidden;
    overflow-y: auto;
}
.section-divider {
    border-bottom: 10px double #eeeeee;
    position: relative;
    margin: 35px 0;
}
.section-divider > span {
    position: absolute;
    display: inline-block;
    background-color: white;
    color: rgba(0, 0, 0, 0.7);
    left: 50%;
    transform: translateX(-50%);
    top: -6px;
    padding: 0 15px;
    min-width: 150px;
    text-align: center;
}

#error-message {
    color: orange;
    display: none;
    text-align: center;
}

.form-group {
    margin-bottom: 12px;
}
.form-group label {
    margin-bottom: 6px;
    display: inline-block;
}

#login-page {
    width: 400px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
#login-page .panel-heading {
    font-size: 120%;
    font-weight: bold;
    margin-bottom: 15px;
}
.pagination {
    display: flex;
    list-style: none;
    justify-content: flex-end;
}
.pagination li {
    border: 1px solid gray;
    padding: 5px 10px;
    border-radius: 2px;
}
.pagination li.active {
    background-color: #e9e9e9;
}
.pagination a {
    text-decoration: none;
}
div.boxclose{
    position: absolute;
    top: 3px;
    right: 5px;
    line-height: 0px;
    font-size: 26px;
    font-weight: bold;
    padding: 11px 3px;
    color: rgba(140, 138, 122, 0.76);
    cursor:pointer;
    text-decoration: none;
    z-index: 2;
}
div.boxclose.white {
    color: white;
}
div.boxclose:after {
    content: "×";
    cursor:pointer;
    font-size: 26px;
}
div.boxclose:hover {
    color: #4e4e4e;
    background: #e4e4e4;
}

.ui-widget-header .ui-icon {
    background-image: url(images/ui-icons_555555_256x240.png);
}
