/**
 * Extra edits stylings
 * @author Sjonic.nl
 */
#testbar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 5px;
    font-size: 12px;
    background: red;
    color: white;
    text-align: center;
    z-index: 9999;
}

.custom-dropdown {
    position: relative;
}
.custom-dropdown .custom-dropdown-button {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: white url(/img/selectbox.png) no-repeat right 10px top 50%;
    height: 35px;
    line-height: 35px;
    padding: 0 30px 0px 12px;
    position: relative;
    font-size: 14px;
    font-weight: normal;
    margin: 0;
}
.custom-dropdown .custom-dropdown-list {
    display: none;
    position: absolute;
    top: calc( 100% - 1px);
    right: 0;
    min-width: 100%;
    background: white;
    border: 1px solid #eee;
    box-shadow: 0px 10px 10px rgba(0,0,0,.1);
    z-index: 500;
    border-radius: 5px;
}
.purchase-rule.disabled .custom-dropdown .custom-dropdown-list {
    position: static;
}
.custom-dropdown .custom-dropdown-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.custom-dropdown .custom-dropdown-list ul li {
    padding: 5px 15px;
    text-align: left;
}
.custom-dropdown .custom-dropdown-list ul li.divider {
    border-bottom: 1px solid #eee;
}
.custom-dropdown .custom-dropdown-list ul li a {
    display: block;
    padding: 5px 0;
}
.custom-dropdown .custom-dropdown-list ul li a .fa {
    margin-right: 5px;
}
.custom-dropdown .custom-dropdown-list ul li a:hover {
    color: #096193;
}

.btn-scroll {
    position: fixed;
    z-index: 1000;
    top: -100px;
    transition: all .5s ease-out !important;
}

.btn-scroll-bottom {
    right: 55px;
    text-indent: -9999px;
}

.btn-scroll-bottom:before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 5px 0 5px;
    border-color: #ffffff transparent transparent transparent;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}



@media only screen and (min-width: 1200px) {
    .btn-scroll-bottom {
        left: 200px;
        right: auto;
        text-indent: 0;
    }

    .btn-scroll-bottom:before {
        display: none;
    }
}

.btn-scroll-top {
    right: 10px;
    text-indent: -9999px;
}

.btn-scroll-top:before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 5px 6px 5px;
    border-color: transparent transparent #ffffff transparent;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media only screen and (min-width: 1200px) {
    .btn-scroll-top {
        left: 330px;
        right: auto;
        text-indent: 0;
    }

    .btn-scroll-top:before {
        display: none;
    }
}

.btn-scroll--active {
    top: 12px;
}

.text-wrap {
    display: inline-block !important;
    text-overflow:initial !important;
    word-break: break-all !important;
    overflow: visible !important;
    white-space: normal !important;
}

.select2-container {
    width: 100%;
}
.form-group select {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    font-family: Arial, sans-serif;
    -webkit-appearance: none;
    color: #242d30;
    outline: 0;
    height: 35px;
    width: 100%;
    padding: 0px 12px;
    line-height: normal;
    font-size: 14px;
    font-weight: normal;
    vertical-align: middle;
    min-height: 35px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-transition: background 0.2s linear 0s;
    transition: background 0.2s linear 0s;
}

.modal .btn-default {
    z-index: 2;
}