.mk-input {
    width: 100%;

    font-size: 16px;
    line-height: 16px;
    color: black;
    background-color: white;

    border: 1px solid #D3D3D3;
    border-radius: 5px;

}

.mk-input::placeholder {
    color: #848484;
}

.mk-btn {

    display: inline-block;
    padding: 12px 15px;


    border: 1px solid #D3D3D3;
    border-radius: 5px;

    background-color: #F8F8F8;

    line-height: 14px;
    cursor: pointer;
    -webkit-user-drag: none;
}

.mk-btn:hover {
    text-decoration: none;
}

.mk-btn.mk-primary {
    color: white;
    background: rgb(187, 5, 8);
    background: linear-gradient(0deg, rgba(187, 5, 8, 1) 0%, rgba(233, 8, 12, 1) 100%);

    font-weight: bold;
    font-size: 18px;

    border: 0;
    box-shadow: 0 2px 2px rgba(216, 0, 0, 0.27);
}

.mk-btn.mk-primary:hover {
    background: rgb(210,12,15);
    background: linear-gradient(0deg, rgba(210,12,15,1) 0%, rgba(234,9,13,1) 100%);
}


.mk-btn.mk-green {
    color: white;
    background: rgb(0,172,8);
    background: linear-gradient(180deg, rgba(0,172,8,1) 0%, rgba(0,172,8,1) 50%, rgba(0,136,6,1) 100%);

    font-weight: bold;
    font-size: 16px;

    border: 0;
}

.mk-btn.mk-green:hover {
    background: rgb(0, 136, 6);
    background: linear-gradient(180deg, rgba(0,136,6,1) 0%, rgba(0,136,6,1) 50%, rgba(0,172,8,1) 100%);
}

.mk-ab-notification {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99999;
}

.mk-ab-notification::after {
    content: 'x';
    position: absolute;
    top: -1px;
    right: -15px;
}

.mk-i {
    position: relative;
    font-family: 'Asap', sans-serif;
    font-size: 10px;
    color: #9F9F9F;
    border: 2px solid #9F9F9F;
    border-radius: 50%;
    height: 15px;
    width: 15px;
    display: inline-block;
    background-color: #fff;
    cursor: pointer;
    text-align: center;

    box-sizing: border-box;
    margin-left: 6px;
    vertical-align: middle;
}

.mk-i:before {
    content: 'i';
    display: block;
    position: absolute;
    bottom: 5px;
    left: 4.4px;
    width: 2px;
    height: 0px;
    line-height: 0px;
}

.mk-category {
    display: inline-block;
    position: relative;

    width: 196px;
    height: 41px;
    box-sizing: border-box;
    line-height: 19px;

    padding: 10px 30px 10px 15px;

    border-width: 1px;
    border-color: #C2C2C2;
    border-radius: 5px;
    border-style: solid;

    text-align: left;
    font-size: 15px;
    font-weight: bold;

    box-shadow: 0 2px 0 #ECECEC;
    
    white-space: pre;
    text-overflow: ellipsis;
    overflow-x: hidden;
}

.mk-category:hover {

    text-decoration: none;
    box-shadow: none;
}

.mk-category::after {
    content: ' ';
    position: absolute;
    width: 6px;
    height: 10px;
    top: 15px;
    right: 16px;
    background: url(/img/svg/arrow_1_grey.svg) no-repeat 0 0;
    background-size: 6px 10px;
}

.mk-sort {
    display: inline-block;
    font-size: 0;
}

.mk-sort li {
    display: inline-block;
    font-size: 16px;
    line-height: 19px;
    background-color: #f5f5f5;
}

.mk-sort li a {
    display: inline-block;
    border: 1px #D3D3D3 solid;
    border-right: none;
    padding: 11px 15px;
    height: 19px;
}

.mk-sort li a:hover {
    text-decoration: none;
}

.mk-sort li:first-child a {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.mk-sort li:last-child a {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    border-right: 1px #D3D3D3 solid;
}

.mk-sort li a.selected,
.mk-sort li.selected a {
    border-color: #108A00;
    color: #1E5613;
    font-weight: bold;
    background-color: #fafdfa;
}

.mk-sort li.selected + li a {
    border-left-color: #108A00;
}

@media screen and (max-width: 1280px) {

    .mk-category {
        width: 242px;
    }

}

@media screen and (max-width: 450px) {

    .mk-ab-notification {
        left: 128px;
        width: 120px;
        text-align: center;
        font-size: 12px;
        height: 12px;
        line-height: 12px;
        border-radius: 5px;
    }
}
