/* table */
.vm-table {
    position: relative;
    width: 100%;
    text-align: center;
    margin: 3% 0;
}
.vm-table:before {
    content: '';
    position: absolute;
    display: block;
    border: 1px solid #CDD7E1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 7px;
}
@media only screen and (max-width: 641px){
    .vm-table:before {
        height: 120%;
        top: -10%;
    }
}
.vm-table thead {
    border-bottom: 2px solid #CDD7E1;
}
.vm-table tbody tr{
    border-bottom: 1px solid #CDD7E1;
}
.vm-table tbody tr:last-child{
    border-bottom: 0;
}
.vm-table td, .vm-table th {
    padding: 5px 10px;
    text-align: left;
}

/* select */
select {
    font: 400 100% "Roboto", sans-serif;
    color: #6d6d6d;
    padding: 9px 20px;
    margin: 5px 0;
    border: 1px solid #c9d4df;
    border-radius: 6px;
    outline: none;
}
select.no_arrow {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* input */
input:not([type="file"]), input:not([type="radio"]), input:not([type="checkbox"]), textarea {
    font: 400 100% "Roboto", sans-serif;
    color: #6d6d6d;
    padding: 9px 20px;
    margin: 5px 0;
    border: 1px solid #c9d4df;
    border-radius: 6px;
    outline: none;
}
input:not([type="file"]):focus, input:not([type="radio"]):focus, input:not([type="checkbox"]):focus, textarea:focus {
        border-color: #91c84a;
}
@media (max-width: 767px){
    select, input {
        max-width: 100%;
    }
}

/* input checkbox */
.checkbox:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}
.checkbox > input {
    display: none;
}
.checkbox > label {
    width: calc(100% - 20px);
}
.checkbox > input:checked + label:after{
    content: '';
    position: absolute;
    display: block;
    border-style: solid;
    width: 12px;
    height: 12px;
    top: 50%;
    left: 2px;
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg) translate(50%, -50%);
    border-color: #91c84a;
    border-width: 0 0 1px 1px;
}
.checkbox > input + label:before {
    content: '';
    position: absolute;
    display: inline-block;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    border: 1px solid #91c84a;
    width: 17px;
    height: 17px;
    margin-right: 10px;
    vertical-align: top;
    border-radius: 2px;
}

/* input radio */
.vm-radio {
    position: relative;
    display: inline-block;
    width: 10%;
    border: 2px solid #89bf42;
    border-radius: 50%;
}
.vm-radio .wrap {
    position: relative;
    padding-bottom: 100%;
    margin: auto;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.vm-radio input{
    display: none;
}
.vm-radio input:checked + label:before{
    content: '';
    position: absolute;
    width: 50%;
    background-color: #3E3E3E;
    height: 50%;
    left: 25%;
    top: 25%;
    border-radius: 50%;
}
.vm-radio .wrap .wrap_block {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: auto;
    padding-left: 0;
    margin-bottom: auto;
}

/* button_green */
.button, .button:focus {
    display: inline-block;
    background-color: #91c84a;
    border-radius: 3px;
    text-align: center;
    text-decoration: none;
    font-family: "Roboto",sans-serif !important;
    /*font-weight: 600;*/
    color: #fff!important;
    /*padding: 8px 15px;*/
    text-decoration: none;
    border: 0;
    cursor: pointer;
    /*min-width: 120px;*/
    font-weight: 400;
    letter-spacing: 1px;
    padding: 0 10px;
    height: 30px;
    font-size: 11px!important;
    text-transform: uppercase!important;
    margin-left: 1px;
}
.button::before {
    content: '';
    display: inline-block;
    height: 32px;
    vertical-align: middle;
}
.button:hover {
    background-color: #489600;
    text-decoration: none;
    color: #fff;
}
.button.deactivate, .button.disabled {
    background-color: #a9a9a9;
}
.button.cancel {
    background: transparent;
    color: #91c84a!important;
    font-family: "Roboto", sans-serif!important;
    font-weight: 400 ;
}
.button.cancel:hover {
    background: #91c84a;
    color: #fff!important;
}
.button.deactivate:hover {
    background-color: #bba0a0;
}
/* @media all and (max-width: 768px){ */
    /* .button { */
        /* height: 50px; */
        /* font-size: 120%; */
    /* } */
/* } */

/** button colors **/
label {
    font-weight: normal;
}
.btn {
    border-radius: 3px;
    font-weight: 400;
    text-decoration: none;
    min-width: 20px;
    letter-spacing: 1px;
    padding: 0 10px;
    height: 30px;
    line-height: 27px;
    font-size: 11px!important;
    text-transform: uppercase!important;
}
.btn-primary, .btn-primary:visited {
  color: #ffffff;
  background-color: #91C84A;
  border-color: #91C84A;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.btn-primary:active:focus,
.open .dropdown-toggle.btn-primary {
  color: #ffffff;
  background-color: #489600;
  border-color: #91C84A;
}

.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
  background-image: none;
}

.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
  background-color: #91C84A;
  border-color: #91C84A;
}

.btn-primary .badge {
  color: #91C84A;
  background-color: #ffffff;
}

.btn-default, .btn-default:visited {
  color: #91C84A;
  background-color: #FFFFFF;
  border-color: #91C84A;
}

.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active,
.btn-default:active:focus,
.open .dropdown-toggle.btn-default {
  color: #FFFFFF;
  background-color: #91C84A;
  border-color: #91C84A;
}

.btn-default:active,
.btn-default.active,
.open .dropdown-toggle.btn-default {
  background-image: none;
}

.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
  color: #91C84A;
  background-color: #FFFFFF;
  border-color: #91C84A;
}

.btn-default .badge {
  color: #FFFFFF;
  background-color: #91C84A;
}

.btn-success, .btn-success:visited {
  color: #ffffff;
  background-color: #91C84A;
  border-color: #91C84A;
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active,
.open .dropdown-toggle.btn-success {
  color: #ffffff;
  background-color: #489600;
  border-color: #91C84A;
}

.btn-success:active,
.btn-success.active,
.open .dropdown-toggle.btn-success {
  background-image: none;
}

.btn-success.disabled,
.btn-success[disabled],
fieldset[disabled] .btn-success,
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled:active,
.btn-success[disabled]:active,
fieldset[disabled] .btn-success:active,
.btn-success.disabled.active,
.btn-success[disabled].active,
fieldset[disabled] .btn-success.active {
  background-color: #91C84A;
  border-color: #91C84A;
}

.btn-success .badge {
  color: #91C84A;
  background-color: #ffffff;
}

.btn-info, .btn-info:visited {
  color: #FFFFFF;
  background-color: #A9A9A9;
  border-color: #A9A9A9;
}

.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active,
.btn-info:active:focus,
.open .dropdown-toggle.btn-info {
  color: #FFFFFF;
  background-color: #999999;
  border-color: #A9A9A9;
}

.btn-info:active,
.btn-info.active,
.open .dropdown-toggle.btn-info {
  background-image: none;
}

.btn-info.disabled,
.btn-info[disabled],
fieldset[disabled] .btn-info,
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled:active,
.btn-info[disabled]:active,
fieldset[disabled] .btn-info:active,
.btn-info.disabled.active,
.btn-info[disabled].active,
fieldset[disabled] .btn-info.active {
  background-color: #A9A9A9;
  border-color: #A9A9A9;
}

.btn-info .badge {
  color: #A9A9A9;
  background-color: #FFFFFF;
}

.btn-more, .btn-more:visited {
  color: #3B4952;
  background-color: #EDF1F1;
  border-color: #D1DBDB;
}

.btn-more:hover,
.btn-more:focus,
.btn-more:active,
.btn-more.active,
.open .dropdown-toggle.btn-more {
  color: #3B4952;
  background-color: #D1DBDB;
  border-color: #D1DBDB;
}

.btn-more:active,
.btn-more.active,
.open .dropdown-toggle.btn-more {
  background-image: none;
}

.btn-more.disabled,
.btn-more[disabled],
fieldset[disabled] .btn-more,
.btn-more.disabled:hover,
.btn-more[disabled]:hover,
fieldset[disabled] .btn-more:hover,
.btn-more.disabled:focus,
.btn-more[disabled]:focus,
fieldset[disabled] .btn-more:focus,
.btn-more.disabled:active,
.btn-more[disabled]:active,
fieldset[disabled] .btn-more:active,
.btn-more.disabled.active,
.btn-more[disabled].active,
fieldset[disabled] .btn-more.active {
  background-color: #EDF1F1;
  border-color: #D1DBDB;
}

.btn-more .badge {
  color: #EDF1F1;
  background-color: #3B4952;
}

.btn-link, .btn-link:visited {
     /*color: #91C84A;*/
     color: #489600;
 }
.btn-link:hover, .btn-link:focus {
    color: #489600;
    text-decoration: underline;
    background-color: transparent;
}
.btn-link.disabled, .btn-link.disabled:hover, .btn-link.disabled:focus {
    color: #a9a9a9;
    text-decoration: none;
}
.btn-warning:visited {
    color: #fff;
}
.btn-warning:visited {
    color: #fff;
}
.btn-danger:visited {
    color: #fff;
}
.btn-transparent {
  background: transparent;
  border: none;
}
.form-control:focus {
    border-color: #91C84A;
    outline: 0;
    box-shadow: none;
}
/** /button colors **/

/** global bootstrap plus **/
.alert.checkbox:before {
    display: none;
}
.alert.checkbox {
    padding-top: 15px;
}
.form-horizontal .control-text {
    padding-top: 7px;
}
@media only screen and (min-width: 992px){
    select.form-control {
        margin: 0;
    }
    input.form-control {
        margin: 0;
    }
}
.alert-success {
    color: #FFFFFF;
    background-color: #91C84A;
    border-color: #91C84A;
}
.alert-info {
    color: #3B4952;
    background-color: #D1DBDB;
    border-color: #EDF1F1;
}
/** /global bootstrap plus **/

.input_error {
    border-color: #a94442!important;
}
.input_error_help{
    display: block;
    color: #a94442!important;
    font-size: 14px;
}

button.icon:focus {
    outline: 0;
}
