﻿

hr {
    border: none;
    border-top: 1px dotted #f00;
    color: #fff;
    background-color: #fff;
    height: 1px;
    width: 100%;
}

.no-img {
    background-size: contain;
    background-image: url(/images/logo.jpg);
    min-height: 140px;
    padding: 1px;
    background-repeat: no-repeat;
    background-position: center;
}

.related-list li {
    list-style: none;
    padding: 25px 0;
    border-bottom: 1px dotted #001373;
    font-size: 18px;
    line-height: 24px;
}

.form-search .icon-search {
    border: 0;
    padding: 0;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: #525252;
}
/*Begin Dropdown Button*/
.dropdown {
    position: relative;
}

.dropdown-toggle {
    /* include caret; */
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    width: 100%;
    left: 0;
    display: none;
    text-align: left;
    background-clip: padding-box;
    z-index: $zindex-dropdown;
    min-width: $dropdown-min-width;
    padding: $dropdown-padding-y 0;
    margin: $dropdown-spacer 0 0;
    background-color: $dropdown-bg;
    border: $dropdown-border-width solid $dropdown-border-color;
    /* include box-shadow($dropdown-box-shadow); */
}

.dropup .dropdown-menu {
    margin-top: 0;
    margin-bottom: $dropdown-spacer;
}

.dropup .dropdown-toggle {
    /* include caret(up); */
}

.dropleft .dropdown-menu {
    margin-top: 0;
    margin-right: $dropdown-spacer;
}

.dropdown-item {
    display: block;
    width: 100%;
    clear: both;
    text-align: inherit;
    padding-left: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
}

    .dropdown-item:hover {
        background-color: cornflowerblue;
    }

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

.dropdown-header {
    display: block;
    margin-bottom: 0;
    white-space: nowrap;
}

.dropdown-toggle::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}