/* Не удалось уменьшить размер. Содержимое возвращается без уменьшения.
(1500,20): run-time error CSS1063: Expected calculation unit, found '~'
(1500,20): run-time error CSS1064: Expected calculation product, found '~'
(1500,20): run-time error CSS1065: Expected calculation sum, found '~'
(1500,20): run-time error CSS1034: 
(1500,20): run-time error CSS1042: Expected function, found '~'
(1500,20): run-time error CSS1062: Expected semicolon or closing curly-brace, found '~'
 */
/**
 * @author zhixin wen <wenzhixin2010@gmail.com>
 */

.ms-parent {
    display: inline-block;
    position: relative;
    vertical-align: middle;
}

.ms-choice {
    display: block;
    width: 100%;
    border: none;
    height: 100%;
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    /*border: 1px solid #aaa;*/
    text-align: left;
    white-space: nowrap;
    line-height: 26px;
    color: #444;
    text-decoration: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    background-color: #fff;
}

    .ms-choice.disabled {
        background-color: #f4f4f4;
        background-image: none;
        border: 1px solid #ddd;
        cursor: default;
    }

    .ms-choice > span {
        font-size: 12px;
        width: 100%;
        height: 34px;
        padding-left: 12px !important;
        padding: 6px 12px;
        line-height: 1.42857143;
        position: absolute;
        top: 0;
        left: 0;
        right: 20px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        padding-left: 8px;
    }

        .ms-choice > span.placeholder {
            color: #999;
        }

    .ms-choice > div {
        position: absolute;
        top: 4px;
        right: 0;
        width: 20px;
        height: 25px;
        background: url(/Content/plugins/jquery-multiple-select/multiple-select.png) left top no-repeat;
    }

        .ms-choice > div.open {
            background: url(/Content/plugins/jquery-multiple-select/multiple-select.png) right top no-repeat;
        }

.ms-drop {
    width: 100%;
    overflow: hidden;
    display: none;
    margin-top: -1px;
    padding: 0;
    position: absolute;
    z-index: 1000;
    background: #fff;
    color: #000;
    border: 1px solid #aaa;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

    .ms-drop.bottom {
        top: 100%;
        -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
        -moz-box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
        box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
    }

    .ms-drop.top {
        bottom: 100%;
        -webkit-box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
        -moz-box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
        box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
    }

.ms-search {
    display: inline-block;
    margin: 0;
    min-height: 26px;
    padding: 4px;
    position: relative;
    white-space: nowrap;
    width: 100%;
    z-index: 10000;
}

    .ms-search input {
        width: 100%;
        height: auto !important;
        min-height: 24px;
        padding: 0 20px 0 5px;
        margin: 0;
        outline: 0;
        font-family: sans-serif;
        font-size: 1em;
        border: 1px solid #aaa;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        background: #fff url(/Content/plugins/jquery-multiple-select/multiple-select.png) no-repeat 100% -22px;
        background: url(/Content/plugins/jquery-multiple-select/multiple-select.png) no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, white), color-stop(0.99, #eeeeee));
        background: url(/Content/plugins/jquery-multiple-select/multiple-select.png) no-repeat 100% -22px, -webkit-linear-gradient(center bottom, white 85%, #eeeeee 99%);
        background: url(/Content/plugins/jquery-multiple-select/multiple-select.png) no-repeat 100% -22px, -moz-linear-gradient(center bottom, white 85%, #eeeeee 99%);
        background: url(/Content/plugins/jquery-multiple-select/multiple-select.png) no-repeat 100% -22px, -o-linear-gradient(bottom, white 85%, #eeeeee 99%);
        background: url(/Content/plugins/jquery-multiple-select/multiple-select.png) no-repeat 100% -22px, -ms-linear-gradient(top, #ffffff 85%, #eeeeee 99%);
        background: url(/Content/plugins/jquery-multiple-select/multiple-select.png) no-repeat 100% -22px, linear-gradient(top, #ffffff 85%, #eeeeee 99%);
    }

    .ms-search, .ms-search input {
        -webkit-box-sizing: border-box;
        -khtml-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        box-sizing: border-box;
    }

.ms-drop ul {
    overflow: auto;
    margin: 0;
    padding: 5px 8px;
}

    .ms-drop ul > li {
        list-style: none;
        display: list-item;
        background-image: none;
        position: static;
    }

        .ms-drop ul > li .disabled {
            opacity: .35;
            filter: Alpha(Opacity=35);
        }

        .ms-drop ul > li.multiple {
            display: block;
            float: left;
        }

        .ms-drop ul > li.group {
            clear: both;
        }

        .ms-drop ul > li.multiple label {
            width: 100%;
            display: block;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .ms-drop ul > li label {
            font-weight: normal;
            display: block;
            white-space: nowrap;
        }

            .ms-drop ul > li label.optgroup {
                font-weight: bold;
            }

.ms-drop input[type="checkbox"] {
    vertical-align: middle;
    margin: 0;
}

.ms-drop .ms-no-results {
    display: none;
}

/* the norm */
#gritter-notice-wrapper {
	position:fixed;
	top:20px;
	right:20px;
	width:301px;
	z-index:999999999;
}
#gritter-notice-wrapper.top-left {
    left: 20px;
    right: auto;
}
#gritter-notice-wrapper.bottom-right {
    top: auto;
    left: auto;
    bottom: 20px;
    right: 20px;
}
#gritter-notice-wrapper.bottom-left {
    top: auto;
    right: auto;
    bottom: 20px;
    left: 20px;
}
.gritter-item-wrapper {
	position:relative;
	margin:0 0 10px 0;
	background:url(/Content/plugins/gritter/images/ie-spacer.gif); /* ie7/8 fix */ 
}
.gritter-top {
	background:url(/Content/plugins/gritter/images/gritter.png) no-repeat left -30px;
	height:10px;
}
.hover .gritter-top {
	background-position:right -30px;
}
.gritter-bottom {
	background:url(/Content/plugins/gritter/images/gritter.png) no-repeat left bottom;
	height:8px;
	margin:0;
}
.hover .gritter-bottom {
	background-position: bottom right;
}
.gritter-item {
	display:block;
	background:url(/Content/plugins/gritter/images/gritter.png) no-repeat left -40px;
	color:#eee;
	padding:2px 11px 8px 11px;
	font-size: 11px;
	font-family:verdana;
}
.hover .gritter-item {
	background-position:right -40px;
}
.gritter-item p {
	padding:0;
	margin:0;
	word-wrap:break-word;
}
.gritter-close {
	display:none;
	position:absolute;
	top:5px;
	right:3px;
	background:url(/Content/plugins/gritter/images/gritter.png) no-repeat left top;
	cursor:pointer;
	width:30px;
	height:30px;
	text-indent:-9999em;
}
.gritter-title {
	font-size:14px;
	font-weight:bold;
	padding:0 0 7px 0;
	display:block;
	text-shadow:1px 1px 0 #000; /* Not supported by IE :( */
}
.gritter-image {
	width:48px;
	height:48px;
	float:left;
}
.gritter-with-image,
.gritter-without-image {
	padding:0;
}
.gritter-with-image {
	width:220px;
	float:right;
}
/* for the light (white) version of the gritter notice */
.gritter-light .gritter-item,
.gritter-light .gritter-bottom,
.gritter-light .gritter-top,
.gritter-light .gritter-close {
    background-image: url(/Content/plugins/gritter/images/gritter-light.png);
    color: #222;
}
.gritter-light .gritter-title {
    text-shadow: none;
}

/* modal */
div[aria-describedby="oil-information-dialog"] {
    padding: 0;
    background: #f5f9fa;
}

#oil-information-dialog-content > h1,
.category-single-page > h1{
    line-height: 1;
    padding-bottom: 10px;
    background:none;
    border:none;
    margin:0;
    padding-top:0;
    font-size: 25px;
    padding-right: 15px;
}

#oil-information-dialog-content .oil-image {
    background: #fff none repeat scroll 0 0;
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ddd;
    margin: 0 -15px;
}

#oil-information-dialog-content .carousel-inner > .item {
    background: #fff;
}

    #oil-information-dialog-content .carousel-inner > .item > img,
    #oil-information-dialog-content .carousel-inner > .item > a > img,
    #oil-information-dialog-content .oil-image > img {
        margin: auto;
        max-width: 50% !important;
    }

#oil-information-dialog-content .oil-rating {
    margin: 0 -15px;
    border-top: none !important;
    border-bottom: 1px solid #ddd;
}

#oil-information-dialog-content .nav-tabs > li.active > a,
#oil-information-dialog-content .nav-tabs > li.active > a:hover,
#oil-information-dialog-content .nav-tabs > li.active > a:focus {
    background-color: #f7f7f7;
}

.category-single-page .nav-tabs > li.active > a,
.category-single-page .nav-tabs > li.active > a:hover,
.category-single-page .nav-tabs > li.active > a:focus {
    background-color: #ecf0f1;
}

#oil-information-dialog-content .oil-name > h4,
.category-single-page .oil-name > h4 {
    font-size: 16px;
    color: #5f5f5f;
    font-weight: bold;
}

#oil-information-dialog-content .oil-basket-detail {
    background: #fff;
    margin: 10px -15px;
    padding: 10px 15px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

/* rightside */
#show-parameters-button {
    cursor: pointer;
    display: block;
    line-height: 1.15;
    margin: 5px 0;
    text-align: left;
}

#submit-filter-form {
    position: relative;
}

.oil-specs .filtration .form-group .oil-buttons {
    white-space: nowrap;
    text-align: center;
    position: relative;
}

    .oil-specs .filtration .form-group .oil-buttons button {
        margin: 0;
        font-size: .88em;
    }

        .oil-specs .filtration .form-group .oil-buttons button:last-child {
            white-space: nowrap;
        }

        .oil-specs .filtration .form-group .oil-buttons .first-submit {
            position: absolute;
            right: -59px;
            display: none;
            z-index: 99;
            opacity: 0.9;
        }

    .oil-specs .filtration .form-group .oil-buttons .first-submit > .button {
        border-radius: 0;
        padding: 5px 10px 4px 10px;
        outline: none;
        font-size: 13px;
        vertical-align:top;
        height:30px;
    }
    .oil-specs .filtration .form-group .oil-buttons .first-submit > i {
        border: 1px solid rgba(0,0,0,.69);
        font-style: normal;
        display:inline-block;
        height:30px;
        position: relative;
        padding: 4px;
        background: #fff;
        border-right: none;
    }
    .oil-specs .filtration .form-group .oil-buttons .first-submit > i:after {
        display: block;
        width: 21px;
        height: 21.5px;
        border: 1px solid rgba(0,0,0,.69);
        content: ' ';
        position: absolute;
        right: -11px;
        top: 3px;
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        z-index: -1;
        background: #fff;
    }
    .oil-specs .filtration .form-group .oil-buttons .first-submit > i span {
        width: 39px;
        display: inline-block;
    }

    /*.oil-specs .filtration .form-group .oil-buttons.last-submit [type="submit"] {
        visibility: hidden;
    }*/

#MinVolume, #MaxVolume {
    float: left;
    margin: 0 10px 1px 0;
    width: 85px;
}

.oil-specs .form-horizontal.filtration {
    background: #fff none repeat scroll 0 0;
    border: 1px solid #ddd;
    padding: 20px 30px;
    border-radius: 0 0 12px 12px;
}

.oil-specs {
    padding: 0;
}

    .oil-specs .form-group {
        margin-bottom: 5px;
    }

    .oil-specs .filter-heading {
        background: #013366 none repeat scroll 0 0;
        color: #ececec;
        border-bottom: none;
        font-size: 14px;
        margin: 0 0;
        padding: 10px 0;
        text-align: center;
        border-radius: 12px 12px 0 0;
        text-transform: uppercase;
        pointer-events:none;
    }

    .oil-specs .form-control {
        height: 28px;
        padding: 0 15px;
    }

    .oil-specs .ms-parent {
        border-color: #aaa;
        height: 28px;
        padding: 0;
    }

    .oil-specs .ms-choice {
        outline: none;
    }

        .oil-specs .ms-choice > div {
            top: 0;
        }

        .oil-specs .ms-choice > span {
            padding-top: 2px;
            font-size: 14px;
        }

        .oil-specs .ms-choice > .placeholder:after {
            color: #444;
            content: "...";
            display: inline-block;
            font-size: 14px;
            font-weight: 400;
            margin: 2px 0 0 -4px;
        }

    .oil-specs .ms-drop ul > li label {
        white-space: normal;
    }

        .oil-specs .ms-drop ul > li label > input {
            float: left;
            margin: 3px 3px 0 0;
        }

    .oil-specs #forms-specifications .select2-container {
        width: 100% !important;
    }

.reset-group {
	text-align: right;
	font-size: 12px;
	font-style: italic;
	margin: 4px -1px -3px 0;
    cursor: pointer;
    display: none;
}

.group-search {
	margin: 5px auto 0;
	display: block;
	height: 22px;
    padding-right: 20px;
    width:80%
}

#forms-specifications > .form-group > .col-xs-9 {
    margin-top: 5px;
}

#submit-filter-form .form-group label,
#submit-filter-form .form-group label > a {
    width: 100%;
    display: inline-block;
}

#submit-filter-form .form-group label.open > a::after {
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

#submit-filter-form .form-group label > a {
    position: relative;
    padding-right: 18px;
}

#submit-filter-form .form-group label > a:after {
    content: "";
    font-family: fontawesome;
    font-size: 20px;
    line-height: 20px;
    position: absolute;
    right: 0;
    top: 0;
    vertical-align: sub;
    -moz-transition: transform .15s ease 0s;
    -o-transition: transform .15s ease 0s;
    -webkit-transition: transform .15s ease 0s;
    transition: transform .15s ease 0s;
}

.subsearch-box {
	position: sticky;
	top: 0;
	background: #fff;
	z-index: 11;
	padding: 5px 0 10px;
	border-bottom: 1px solid #eee;
	margin-bottom: 10px;
}

.subsearch-box + hr {
    display: none;
}

.values-list {
    max-height: 500px;
    overflow-y: scroll;
    position: relative;
}

.values-list .fa.fa-search {
	position: absolute;
	right: 53px;
	top: 17px;
	color: gray;
}

@media all and (max-width: 1200px) {
    .values-list .fa.fa-search {
        right: 23px;
    }
}

@media all and (max-width: 992px) {
    .group-search {
        width: 75%;
    }

    .values-list .fa.fa-search {
        right: 15%;
    }
}



.values-list hr {
    margin: 10px 0;
}

#oils-content label, #oils-content .form-control,
.oil-specs label, .oil-specs .form-control,
#oil-information-dialog-content label,
#oil-information-dialog-content .form-control,
.category-single-page label,
.category-single-page .form-control {
    font-size: 14px;
    font-weight: 700;
    line-height: inherit;
    text-align: left !important;
}

/* main content */
/*h1.oil-name-big {
    max-width: 75%;
}*/

.pagination-holder {
    margin: 15px;
    clear:both;
}

.oil-item {
    border-radius: 12px;
    padding: 0 15px 10px 0;
    font-size: 90%;
}

    .oil-item .thumbnail {
        border-radius: 14px;
        padding: 0;
        height: 655px;
        position: relative;
        background-color: #f9f9f9;
        border: 1px solid #ddd;

    }

    .oil-item .panel-body {
        padding: 0;
    }

    /* */
    .oil-item .oil-name {
        border-radius: 14px 14px 0 0;
        padding: 5px 0;
        border-bottom: 1px solid #ddd;
    }

        .oil-item .oil-name > a {
            display: block;
            font-size: 14px;
            padding: 5px 0 0;
            font-weight: bold;
            text-align: center;
            color: #5f5f5f;
        }

        .oil-item .oil-name .oil-type {
            margin: 0 0 5px;
            color: #4e4e4e;
            font-size: 12px;
        }

    .oil-item .season-sprite {
        display: inline-block;
        background: url(/Content/images/tires/season-sprite.png) no-repeat;
        height: 17px;
        position: relative;
        top: 3px;
        width: 17px;
        background-size: 200%;
    }

    .oil-item .season-winter {
        background-position: -19px 0;
    }

    .oil-item .season-summer {
        background-position: 0 0;
    }

    .oil-item .season-all {
        background-position: 0 -17px;
    }

    .oil-item .season-3PMSF {
        background-position: -18px -17px;
        margin-left: 2px;
    }

    .oil-item .oil-image {
        background-color: #fff;
        overflow:hidden;
    }

    .oil-item .oil-information {
        max-width: 100%;
        white-space: nowrap;
    }

    .oil-item .oil-image img {
        display: block;
        margin: auto;
        vertical-align: middle;
        cursor: pointer;
        width: 100%;
    }

        .oil-item .oil-image img:hover {
            -moz-transform: scale(1.1,1.1);
            -ms-transform: scale(1.1,1.1);
            -o-transform: scale(1.1,1.1);
            -webkit-transform: scale(1.1,1.1);
            transform: scale(1.1,1.1);
        }

    .oil-item .oil-rating,
    #oil-information-dialog-content .oil-rating {
        padding: 10px;
        background: lightyellow;
        border-top: 1px solid #ddd;
    }
    .oil-item .thumbnail .oil-rating {
        padding: 5px;
    }

    .oil-item .oil-rating-sprite,
    #oil-information-dialog-content .oil-rating-sprite,
    .category-single-page .oil-rating-sprite {
        background: url(/Content/images/tires/stars-ico.png) no-repeat;
        height: 12px;
        width: 79px;
        margin: auto;
    }

    .oil-item .oil-rating-1,
    #oil-information-dialog-content .oil-rating-1,
    .category-single-page .oil-rating-1 {
        background-position: 0 -13px;
    }

    .oil-item .oil-rating-2,
    #oil-information-dialog-content .oil-rating-2,
    .category-single-page .oil-rating-2 {
        background-position: 0 -26px;
    }

    .oil-item .oil-rating-3,
    #oil-information-dialog-content .oil-rating-3,
    .category-single-page .oil-rating-3 {
        background-position: 0 -39px;
    }

    .oil-item .oil-rating-4,
    #oil-information-dialog-content .oil-rating-4,
    .category-single-page .oil-rating-4 {
        background-position: 0 -52px;
    }

    .oil-item .oil-rating-5,
    #oil-information-dialog-content .oil-rating-5,
    .category-single-page .oil-rating-5 {
        background-position: 0 -65px;
    }

    .oil-item .thumbnail .caption {
        color: #333;
        padding: 0;
        border-top: 1px solid #ddd;
    }

        .oil-item .thumbnail .caption p {
            line-height: 1.2;
            border-bottom: 1px solid #e8e8e8;
            margin: 0;
            clear: both;
            padding: 1px 10px;
        }

            .oil-item .thumbnail .caption p label {
                margin: 0;
            }

            .oil-item .thumbnail .caption p > span {
                display: inline-block;
                margin: 0 15px 0 0;
            }

            .oil-item .thumbnail .caption p span img {
                float: right;
                position: relative;
                right: -35px;
            }
       
            .oil-item .thumbnail .oil-basket-price{
                border-top: 1px solid #ddd;
                border-bottom: 1px solid #ddd;
       }

.param-overflow {
    height: 55px;
    overflow: hidden;
    padding: 0 5px 0 0;
    position: relative;
}

    .param-overflow::after {
        bottom: 0;
        color: black;
        content: "...";
        font-weight: bold;
        position: absolute;
        right: 0;
    }

.oil-item .thumbnail .caption p.oil-details {
    margin: 5px 0 0;
    text-align: center;
}
.oil-item .thumbnail .caption p.oil-details a {
    color:red;
}
.oil-basket {
    position: absolute;
    bottom: 1px;
    left: 0;
    width: 100%;
    text-align: center;
    border-radius: 0 0 14px 14px;
}

#oils-content .oil-basket .count {
    border-radius: 101px;
    float: left;
    height: 39px;
    margin: 5px 0;
    padding: 0;
    width: 39px;
    font-weight: 400;
    text-align: center !important;
}

#oils-content .oil-main .oil-basket .count {
    margin: 5px 0 5px 8px;
}

#oils-content .oil-basket-price {
    background: #fff;
    padding: 0 0 7px;
}

.oil-basket .oil-basket-price .oil-cost {
    color: #f26c4f;
    font-size: 21px;
    font-weight: bold;
    white-space: nowrap;
    padding: 5px 0;
}

.oil-basket .oil-basket-price .oil-supplier-time1 {
    color: #870115;
    font-weight: bold;
    font-size: 14px;
    margin: -8px 0 0;
    white-space: nowrap;
}

.oil-basket .oil-basket-price .oil-supplier-time1 a {
    color: #369;
}

.oil-basket .oil-basket-bottom {
    border-radius: 0 0 14px 14px;
}

.oil-basket .oil-basket-box {
    background: #fff none repeat scroll 0 0;
    border: 1px solid #ddd;
    border-radius: 14px;
    margin: 5px 5% 0;
    overflow: hidden;
    padding: 0;
}

.oil-basket .oil-basket-box > .pull-left {
    padding: 0 10px;
    border-right: 1px solid #ddd;
}

.oil-basket .show-more {
    display: block;
    font-size: 105%;
    margin: 5px auto;
    text-decoration: underline;
}

    .oil-basket .show-more:hover {
        text-decoration: none;
    }

.oil-basket input[type="image"] {
    border-left: 1px solid #ddd;
    float: right;
    margin: 0;
    padding: 7px 7px 7px 12px;
    position: relative;
    width: 63px;
    outline: none;
}

.oil-basket .oil-basket-price p {
    margin: 0;
}

.oil-item .oil-oem {
    white-space: nowrap;
    overflow: hidden;
    max-width: 169px;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    cursor: pointer;
}


.oil-detail-description, .dop {
    text-align: left;
    padding: 0 20px;
}

    .oil-detail-description p, .dop p {
        font-size: 14px;
        line-height: 1.1;
        margin: 0;
    }

        .oil-detail-description p span img {
            margin: -3px 0 0;
        }

.oil-basket-detail .oil-basket-cost-box {
    float: left;
    margin: 0 20px;
}

    .oil-basket-detail .oil-basket-cost-box .oil-cost span {
        color: #f26c4f;
        font-size: 21px;
        font-weight: bold;
        padding: 5px 0;
        white-space: nowrap;
        position: relative;
        top: 3px;
    }

.oil-basket-detail .oil-basket-box {
    margin-top: -3px;
    float: left;
}

#oil-information-dialog .oil-basket-detail .oil-basket-box .count,
.category-single-page .oil-basket-detail .oil-basket-box .count {
    width: 39px;
    height: 39px;
    border-radius: 101px;
    float: left;
    margin: 10px 0 0 40px;
    padding: 0;
    text-align: center !important;
    font-weight: normal;
}

.oil-basket-detail .oil-basket-box > span {
    display: block;
    float: left;
    margin: 19px 15px;
    font-size: 14px;
}

.oil-basket-detail .oil-basket-box .addBasket {
    width: 60px;
    float: right;
    margin: 0;
    outline: none;
}

.oil-item .text-center .show-more {
    color: #428bca;
}

    .oil-item .text-center .show-more:hover {
        text-decoration: underline;
    }

#oil-information-dialog .tab-content #home {
    padding: 10px 0;
}

.dop label {
    cursor: help;
    margin: 5px 0 0;
}

.dop > p.add-param {
    margin: 0 0 5px;
}

.dop .dop-table tr td {
    vertical-align: top;
    border: 1px solid #ccc;
    padding: 5px;
}

.category-single-page {
    margin: auto;
    width: 600px;
}

    .category-single-page .h3 {
        margin: 0 auto;
    }

    .category-single-page .oil-image {
        border-top: 1px solid #ddd;
        border-bottom: 1px solid #ddd;
    }

        .category-single-page .oil-image img {
            width: 50%;
        }

    .category-single-page .oil-rating {
        padding: 10px;
    }

    .category-single-page .nav > li > a {
        color: #222;
    }

    .category-single-page .oil-detail-description {
        padding-top: 15px;
    }

    .category-single-page .oil-basket-detail {
        border-bottom: 1px dashed #ddd;
        border-top: 1px solid #ddd;
        margin: 10px auto;
        padding: 10px 0 0;
    }

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

input::-o-outer-spin-button,
input::-o-inner-spin-button {
    -o-appearance: none;
    margin: 0;
}

/*div[aria-describedby="oil-information-dialog"] > .ui-widget-header {
    height: auto !important;
}*/

div[aria-describedby="comparation-dialog"].ui-dialog {
    right: 0;
}

#comparation-dialog-body .col-xs-4 {
    text-align: center;
}

    #comparation-dialog-body .col-xs-4 .delete-btn {
        color: #fff !important;
        margin: auto;
        margin-top:10px;
    }

#comparation-dialog-body .row .comparation-detail {
    margin-right: 20px;
}

#comparation-dialog-body .row .comparation-detail.disabled {
    cursor: not-allowed;
    pointer-events: all;
}

.oil-item .oil-comparation {
    margin: 0 auto;
    padding: 7px;
    position: relative;
    width: 50px;
    height: 49px;
    outline: none;
}

    .oil-item .oil-comparation a {
        font-size: 31px;
        margin-top: 3px;
        color: #013366;
    }

        .oil-item .oil-comparation a:hover,
        .oil-item .oil-comparation a:active,
        .oil-item .oil-comparation a:focus {
            text-decoration: none;
        }

        .oil-item .oil-comparation a.delete {
            color: lightgray;
        }

#compare-manager-link {
    -webkit-transition: 0.4s all ease;
    -moz-transition: 0.4s all ease;
    -o-transition: 0.4s all ease;
    transition: 0.4s all ease;
    position: fixed;
    right: 6px;
    bottom: 55px;
    background: rgba(0, 0, 0, 0.7);
    color: #FFF !important;
    text-decoration: none;
    padding: 15px 20px;
    line-height: 142%;
    width: 184px;
    text-align: center;
    border-radius: 4px;
    z-index: 9999;
    opacity: 0.8;
    box-shadow: inset 0 0 0 1px #000;
    cursor: pointer;
    font-size: 14px;
}

#comparation-table tr th:first-child {
    width: 118px;
}
#comparation-table tr th img {
    width: 100%;
}
#comparation-table tfoot .count {
    width: 35px;
    float: left;
    margin-left: 5px;
    text-align: center;
}

#comparation-table tfoot .addBasket {
    width: 35px;
    float: right;
    margin: 3px 10px 0 0;
}

#comparation-table tfoot .comparation-foot {
    width: 210px;
    margin: auto;
}

#comparation-table tfoot .comparation-foot > .text-center {
    margin-top: 10px;
}

/* tires */
#tire-sort {
    margin-bottom: 15px;
    color: #5f5f5f;
    text-align: center;
}

    #tire-sort > .h4 {
        text-align: left;
    }

    #tire-sort > div:not(.h4) {
        display: inline-block;
        margin-right: 17px;
        margin-bottom: 11px;
        text-align: center;
    }

    #tire-sort > div .btn-group {
        margin-top: 3px;
    }

        #tire-sort > div .btn-group > label {
            padding: 2px 10px;
        }

            #tire-sort > div .btn-group > label span {
                font-size: 18px;
            }

    #tire-sort .second-row {
        margin-left: 110px;
    }

    #tire-sort > div[data-parameter-id="166"] .btn-group > label:last-child,
    #tire-sort > div[data-parameter-id="167"] .btn-group > label:last-child {
        display: none;
    }

    #tire-sort > div[data-parameter-id="166"] .btn-group > label,
    #tire-sort > div[data-parameter-id="167"] .btn-group > label {
        border-bottom-left-radius: 4px;
        border-top-left-radius: 4px;
    }

.tires-icon {
    background-color: #5f5f5f;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
    float: left;
    padding: 14px 0;
    width: 75px;
    height: 75px;
    text-align: center;
    position: relative;
    z-index: 11;
}

#tire-list > a:hover .tires-icon,
#tire-list > div:hover .tires-icon {
    background-color: #667a89;
}

.tires-icon > img {
    width: 85%;
    margin-top: 10px;
}

#tire-list {
    overflow: hidden;
    padding: 10px 0;
}

    #tire-list > a {
        display: block;
        float: left;
        width: 90px;
        margin: 0 10px 10px 0;
        position: relative;
        cursor: pointer;
    }

    #tire-list > .active:before {
        color: #dcdfe3;
        content: "";
        font-family: fontawesome;
        font-size: 21px;
        position: absolute;
        right: 41px;
        top: 43px;
        z-index: 12;
    }

    #tire-list > .active > div {
        background-color: #667a89;
    }

    #tire-list > div {
        width: 60px;
        float: left;
        cursor: pointer;
    }

        #tire-list > div > div > i {
            color: #dcdfe3;
            font-size: 30px;
            margin-top: 9px;
        }

.tyre-list-filter > .focus {
    z-index: 99;
}

.tires-helpers {
    overflow: hidden;
    margin: 8px 0 20px 20px;
}

    .tires-helpers + .filter-heading {
        /*margin: 0;*/
        clear: both;
    }

    .tires-helpers > div {
        width: 29%;
        float: left;
        display: block;
        text-decoration: none;
        cursor: pointer;
    }

        .tires-helpers > div > img {
            width: 100%;
        }

    .tires-helpers.blade-icon a {
        display: block;
        margin: auto;
        width: 30%;
    }

    .tires-helpers .wheel-doc {
        float: none;
        margin: 0 45px;
    }

#tire-category .thumbnail {
    height: 690px;
}

.blade {
    display: inline-block;
    margin-bottom: 2px;
    font-size: 16px;
    font-weight: bold;
}

.converters > legend {
    border-bottom: none;
}

.converters .ctab .button {
    margin: 0;
}

    .converters .ctab .button.ok {
        margin-left: 10px;
        margin-top: -2px;
    }

.converters .ctab input {
    width: 60px;
}

.converters .result table tr th,
.converters .result table tr td {
    padding: 5px;
    border: 1px solid rgba(152, 152, 152, 0.46);
}

.converters .result table tr td {
    text-align: center;
}

.converters table .exHint {
    float: left;
}

.converters select {
    font-size: 16px;
}

.convParameter {
    display: inline-block;
    width: 85px;
}

#forms-specifications .country-info,
.dop-table .country-info,
.converters table .exHint > i {
    border: 1px solid;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    padding: 1px 4px;
    cursor: help;
}

#forms-specifications .country-info,
.dop-table .country-info {
    margin-bottom: 3px;
}

#comparation-table tr th:not(:first-child),
#comparation-table tr td:not(:first-child) {
    text-align: center;
}

#comparation-info-dialog-body > div {
    padding: 15px 0 0;
}

.parameter-title {
    color: #5f5f5f;
    font-style: normal;
    font-size: 12px;
    display: inline !important;
}

    .parameter-title:hover {
        color: rgba(0, 0, 0, 0.8);
    }

.main-content .popover,
.ui-dialog .popover {
    min-width: 460px;
}

.country-popover-content {
    min-width: 440px;
}

body > .ui-tooltip {
    text-align: center;
}

.ui-front {
    z-index: 2323235 !important;
}

.popover,
.highlight {
    z-index: 11111;
}

.ui-tooltip.highlight {
    text-align: left !important;
    max-width: 520px !important;
    width: 520px !important;
    z-index: 21111121;
}

.row-fluid > .popover {
    -webkit-box-shadow: 0 0 5px #aaa;
    box-shadow: 0 0 5px #aaa;
    border-radius: 3px;
}

    .row-fluid > .popover > .arrow, .row-fluid > .popover > .arrow::after {
        border-style: none;
    }

.overlay-bg {
    width: 100%;
    height: 1000%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.29);
    z-index: 50;
}

.none {display: none!important;}
 .grid {
    display: grid;
    z-index: 999;
}
/* tires */
@media all and (max-width: 1600px) {
    .oil-item {
        width:calc(~"100%/3");
    }
}

@media all and (max-width: 1400px) {
    .oil-item {
        width:50%
    }
}
@media (max-width: 600px){
    .oil-item {
        width: 100%;
    }
}
@media all and (min-width: 1530px) {
    .oil-item .thumbnail {
        height: 650px;
    }
}

@media all and (max-width: 1280px) {
    .oil-item .oil-type {
        font-size: 90%;
    }
}

@media all and (max-width: 1200px) {
    .oil-specs .filtration .form-group .oil-buttons {
        white-space: normal;
    }
    .oil-specs .filtration .form-group .oil-buttons button {
        margin: 0 0 7px;
    }
    .oil-item .oil-information {
        white-space: normal;
    }
    .oil-basket .oil-basket-price .oil-supplier-time1 {
        font-size: 12px;
    }
    #oils-content .oil-basket .count {
        height: 32px;
        width: 32px;
    }

    .oil-basket input[type="image"] {
        width: 53px;
    }

    .oil-item .oil-comparation {
        height: 42px;
        width: 38px;
    }

        .oil-item .oil-comparation a {
            font-size: 25px;
        }
}
.none{
    display:none!important;
}
@media all and (min-width:991px) and (max-width:1423px) {
    .oil-item .show-more {
        font-size: 100%;
    }
}

@media all and (min-width:991px) and (max-width:1335px) {
    .oil-item .thumbnail .caption p span {
        margin: 0;
    }
}

@media all and (min-width:1199px) and (max-width:1240px) {
    .oil-item .thumbnail .caption p span {
        font-size: 88%;
    }
}

@media all and (max-width: 1150px) {
    .row-fluid .col-xs-9 {
        padding: 0;
    }

    #oils-content .col-xs-3 {
        padding: 0 5px;
        width: 33.33%;
    }

    .oil-item .thumbnail .caption p span {
        margin: 0 0 0 0;
    }

    .oil-item .thumbnail .caption p:first-child span {
        text-align: center !important;
    }

    .oil-specs {
        padding: 0 5px;
    }

    #forms-specifications label {
        text-align: left;
        padding: 7px 0 0;
        font-size: 11px;
    }

    #forms-specifications .form-group:last-child label {
        font-size: 10px;
        padding-top: 8px;
    }
}

@media all and (max-width: 992px) {
    .oil-item .show-more {
        font-size: 100%;
        line-height: 1;
    }
    .oil-specs .ms-parent {
        width: 100% !important;
    }
    /*.row-fluid {
        display: flex;
        -ms-flex-flow: column-reverse wrap;
        -webkit-flex-flow: column-reverse wrap;
        flex-flow: column-reverse wrap;
    }*/
    #tire-sort {
        margin-top: 15px;
    }

    .oil-specs {
        text-align: center;
        width: 100%;
    }

        .oil-specs .filter-heading {
            margin: 0;
        }

        .oil-specs #show-parameters-button {
            text-align: center;
        }

    .row-fluid .col-xs-9 {
        width: 100%;
    }
}

@media all and (max-width: 768px) {
    .oil-item .oil-comparation {
        height: 49px;
        width: auto;
        float: none;
        margin: 0 0 0 49px;
    }
    .oil-item {
        width: 100%;
        padding: 0 10px 15px 10px;
    }

    .oil-specs .filter-heading {
        pointer-events: all;
    }
        .oil-item .oil-comparation a {
            font-size: 31px;
        }

    .oil-item .show-more {
        font-size: 110%;
    }
    #oils-content .oil-basket .count {
        height: 39px;
        width: 39px;
    }
    .oil-basket input[type="image"] {
        width: 63px;
    }
}

@media all and (max-width: 630px) {

    #oils-content .oil-basket .count {
        height: 39px;
        width: 39px;
    }

    .oil-basket input[type="image"] {
        width: 63px;
    }
}

@media all and (max-width: 531px) {
    .oil-item .thumbnail {
        height: 650px;
    }
    #comparation-dialog-body .col-xs-4 {
        margin: 0 0 10px;
        width: 50%;
    }
}

@media all and (max-width: 440px) {
    .oil-item .oil-comparation {
        height: 42px;
        width: 38px;
        float: right;
        margin: 0;
    }

        .oil-item .oil-comparation a {
            font-size: 25px;
        }

    .oil-item .show-more {
        font-size: 110%;
    }

    #oils-content .oil-basket .count {
        height: 32px;
        width: 32px;
    }

    .oil-basket input[type="image"] {
        width: 53px;
    }
}

@media all and (max-width: 390px) {
    .oil-item {
        margin: auto;
        width: 100%;
   }
    .oil-item .oil-comparation {
        height: 49px;
        width: auto;
        float: none;
        margin: 0 0 0 49px;
    }

        .oil-item .oil-comparation a {
            font-size: 31px;
        }

    .oil-item .show-more {
        font-size: 110%;
    }
    #oils-content .oil-basket .count {
        height: 39px;
        width: 39px;
    }
    .oil-basket input[type="image"] {
        width: 63px;
    }
}
.select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:28px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-selection--single .select2-selection__clear{position:relative}.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline-block;overflow:hidden;padding-left:8px;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-search--inline{float:left}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;padding:0}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:white;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;user-select:none;-webkit-user-select:none}.select2-results__option[aria-selected]{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff;filter:alpha(opacity=0)}.select2-hidden-accessible{border:0 !important;clip:rect(0 0 0 0) !important;height:1px !important;margin:-1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important}.select2-container--default .select2-selection--single{background-color:#fff;border:1px solid #aaa;border-radius:4px}.select2-container--default .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--default .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold}.select2-container--default .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--default .select2-selection--single .select2-selection__arrow{height:26px;position:absolute;top:1px;right:1px;width:20px}.select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow{left:1px;right:auto}.select2-container--default.select2-container--disabled .select2-selection--single{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none}.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--default .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text}.select2-container--default .select2-selection--multiple .select2-selection__rendered{box-sizing:border-box;list-style:none;margin:0;padding:0 5px;width:100%}.select2-container--default .select2-selection--multiple .select2-selection__rendered li{list-style:none}.select2-container--default .select2-selection--multiple .select2-selection__placeholder{color:#999;margin-top:5px;float:left}.select2-container--default .select2-selection--multiple .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;margin-top:5px;margin-right:10px}.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{color:#999;cursor:pointer;display:inline-block;font-weight:bold;margin-right:2px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover{color:#333}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice,.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder,.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline{float:right}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--default.select2-container--focus .select2-selection--multiple{border:solid black 1px;outline:0}.select2-container--default.select2-container--disabled .select2-selection--multiple{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection__choice__remove{display:none}.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple{border-top-left-radius:0;border-top-right-radius:0}.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--default .select2-search--dropdown .select2-search__field{border:1px solid #aaa}.select2-container--default .select2-search--inline .select2-search__field{background:transparent;border:none;outline:0;box-shadow:none;-webkit-appearance:textfield}.select2-container--default .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--default .select2-results__option[role=group]{padding:0}.select2-container--default .select2-results__option[aria-disabled=true]{color:#999}.select2-container--default .select2-results__option[aria-selected=true]{background-color:#ddd}.select2-container--default .select2-results__option .select2-results__option{padding-left:1em}.select2-container--default .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--default .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-3em;padding-left:4em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-4em;padding-left:5em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-5em;padding-left:6em}.select2-container--default .select2-results__option--highlighted[aria-selected]{background-color:#5897fb;color:white}.select2-container--default .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic .select2-selection--single{background-color:#f7f7f7;border:1px solid #aaa;border-radius:4px;outline:0;background-image:-webkit-linear-gradient(top, #fff 50%, #eee 100%);background-image:-o-linear-gradient(top, #fff 50%, #eee 100%);background-image:linear-gradient(to bottom, #fff 50%, #eee 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic .select2-selection--single:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--classic .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;margin-right:10px}.select2-container--classic .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--classic .select2-selection--single .select2-selection__arrow{background-color:#ddd;border:none;border-left:1px solid #aaa;border-top-right-radius:4px;border-bottom-right-radius:4px;height:26px;position:absolute;top:1px;right:1px;width:20px;background-image:-webkit-linear-gradient(top, #eee 50%, #ccc 100%);background-image:-o-linear-gradient(top, #eee 50%, #ccc 100%);background-image:linear-gradient(to bottom, #eee 50%, #ccc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0)}.select2-container--classic .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow{border:none;border-right:1px solid #aaa;border-radius:0;border-top-left-radius:4px;border-bottom-left-radius:4px;left:1px;right:auto}.select2-container--classic.select2-container--open .select2-selection--single{border:1px solid #5897fb}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow{background:transparent;border:none}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:none;border-top-left-radius:0;border-top-right-radius:0;background-image:-webkit-linear-gradient(top, #fff 0%, #eee 50%);background-image:-o-linear-gradient(top, #fff 0%, #eee 50%);background-image:linear-gradient(to bottom, #fff 0%, #eee 50%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0;background-image:-webkit-linear-gradient(top, #eee 50%, #fff 100%);background-image:-o-linear-gradient(top, #eee 50%, #fff 100%);background-image:linear-gradient(to bottom, #eee 50%, #fff 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0)}.select2-container--classic .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text;outline:0}.select2-container--classic .select2-selection--multiple:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--multiple .select2-selection__rendered{list-style:none;margin:0;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__clear{display:none}.select2-container--classic .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove{color:#888;cursor:pointer;display:inline-block;font-weight:bold;margin-right:2px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{color:#555}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice{float:right}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--classic.select2-container--open .select2-selection--multiple{border:1px solid #5897fb}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--classic .select2-search--dropdown .select2-search__field{border:1px solid #aaa;outline:0}.select2-container--classic .select2-search--inline .select2-search__field{outline:0;box-shadow:none}.select2-container--classic .select2-dropdown{background-color:#fff;border:1px solid transparent}.select2-container--classic .select2-dropdown--above{border-bottom:none}.select2-container--classic .select2-dropdown--below{border-top:none}.select2-container--classic .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--classic .select2-results__option[role=group]{padding:0}.select2-container--classic .select2-results__option[aria-disabled=true]{color:grey}.select2-container--classic .select2-results__option--highlighted[aria-selected]{background-color:#3875d7;color:#fff}.select2-container--classic .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic.select2-container--open .select2-dropdown{border-color:#5897fb}

