.added-to-cart.active {
    transform: translateX(-50%) translateY(0);
}
.added-to-cart > div {
    display: flex;
    align-items: center;
    gap: 10px;
}
.close-added {
    position: absolute;
    right: 24px;
    font-size: 20px;
    cursor: pointer;
}
.added-to-cart a {
    border: 2px solid #1F3E85;
    padding: 5px 10px;
    font-size: 16px;
}
.added-to-cart a:hover {
    background: #1F3E85;
    color: #fff;
}
.inavailable {
    text-align: center;
    font-size: 1.2em;
    line-height: 2em;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: green;
    color: #FFF;
    border: 6px double #FFF;
    margin-bottom: 10px;
}
.on_order {
    text-align: center;
    font-size: 1.2em;
    line-height: 2em;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: #cbcb2a;
    color: #FFF;
    border: 6px double #FFF;
    margin-bottom: 10px;
}
.check_stock {
    text-align: center;
    font-size: 1.2em;
    line-height: 2em;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: #ff961d;
    color: #FFF;
    border: 6px double #FFF;
    margin-bottom: 10px;
}
.not_in_stock {
    text-align: center;
    font-size: 1.2em;
    line-height: 2em;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: #ff0a0a;
    color: #FFF;
    border: 6px double #FFF;
    margin-bottom: 10px;
}
.not_in_sale {
    text-align: center;
    font-size: 1.2em;
    line-height: 2em;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: #424242;
    color: #FFF;
    border: 6px double #FFF;
    margin-bottom: 10px;
}
.product-page-msg {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    margin: 10px 0;
}
.product-page-cat-link {
    padding: 0 5px;
    text-decoration-line: underline;
}
.product-page-cat-link:hover {
    color: #3b76ff;
}
.desc_and_links {
    padding: 10px 15px;
    margin: 0 0 20px 0;
    display: grid;
    grid-template-columns: 27% 1fr;
    grid-column-gap: 15px;
    background: #efefef;
}
.link_cloud ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.link_cloud li {
    position: relative;
    margin: 0;
    padding: 0 0 .25em 1.5em;
}
.link_cloud li::before {
    content: '';
    position: absolute;
    top: .75em;
    left: 0;
    height: 1px;
    width: 1em;
    background: #468a99;
}
.here_goes_desc {
    padding: 5px 0;
}
.prodcode {
    list-style: none;
    background: yellow;
    margin: 0 0 1em 0;
    padding: 12px;
    line-height: 2.5em;
}
.prodcode li {
    position: relative;
    float: left;
    box-sizing: border-box;
    width: 50%;
}
.prodcode li:first-child {
    text-align: center;
}
.prodcode li:first-child::after {
    content: '';
    position: absolute;
    top: 9px;
    right: 2px;
    width: 20px;
    height: 20px;
    border-left: 1px solid #000;
    border-bottom: 1px solid #000;
    -webkit-transition: all 250ms ease;
    -moz-transition: all 250ms ease;
    -ms-transition: all 250ms ease;
    -o-transition: all 250ms ease;
    transition: all 250ms ease;
    animation: 2s infinite strelka;
}
.whitecode {
    font-size: 2em;
    line-height: 1.4em;
    display: inline-block;
    background: #FFF;
    width: 60%;
    margin: 0 20%;
    letter-spacing: 1px;
}
.prodcode li:last-child {}
.prodcode:after {
    content: '';
    display: table;
    clear: both;
}
.single-sec {
    margin: 0 0 20px 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}
.single-left {
    margin: 0 20px 0 0;
}
.single-right {
    margin: 0;
}
.single-sec:after {
    content: '';
    display: table;
    clear: both;
}
.navbar-form .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
}
.navbar-form .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
}
.main_big_image {
    display: block;
    margin: 0 0 1em 0;
}
.main_big_image img,
.main_big_image picture {
    width: 100%;
    height: auto;
}
.additional_images {
    display: flex;
    overflow-x: auto;
}
.small_link_page {
    display: block;
    margin: 0 0 1em 0;
}
.small_link_page img,
.small_link_page picture {
    width: auto;
    height: 120px;
}
@keyframes strelka {
    0%,100% {
        -moz-transform: translateX(0) translateY(0) rotate(45deg);
        -webkit-transform: translateX(0) translateY(0) rotate(45deg);
        -o-transform: translateX(0) translateY(0) rotate(45deg);
        -ms-transform: translateX(0) translateY(0) rotate(45deg);
        transform: translateX(0) translateY(0) rotate(45deg);
        opacity: 0;
    }
    90% {
        -moz-transform: translateX(-10px) translateY(0) rotate(45deg);
        -webkit-transform: translateX(-10px) translateY(0) rotate(45deg);
        -o-transform: translateX(-10px) translateY(0) rotate(45deg);
        -ms-transform: translateX(-10px) translateY(0) rotate(45deg);
        transform: translateX(-10px) translateY(0) rotate(45deg);
        opacity: 1;
    }
    91% { opacity: 0; }
}

@media screen and (max-width: 520px) {
    .prodcode li {
        float: none;
        width: 100%;
        text-align: center;
    }
    .prodcode li:first-child::after {
        display: none;
    }
    .whitecode {
        margin-bottom: 7px;
    }
}


@media screen and (max-width: 760px) {
    .single-sec {
        grid-template-columns: 1fr;
    }
}
@media screen and (max-width: 860px) {
    .desc_and_links {
        grid-template-columns: 38% 1fr;
    }
}
@media screen and (max-width: 680px) {
    .desc_and_links {
        grid-template-columns: 1fr;
    }
}
@media screen and (max-width: 450px) {
    .priceoptions tr td {
        display: block;
    }
}

.see_also_rels__nav {
    margin: 0 0 15px 0;
}
.see_also_rels__nav_second {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    margin: 7px 0 0 0;
}
.btn.see_also_rels__nav_button {
    overflow: visible;
    margin: 0 10px 0 0;
}
.see_also_rels__nav_button.active,
.see_also_rels__nav_button.active:hover
{
    color: #FFF;
    background-color: #1F3E85;
    border-color: #1F3E85;
}
.products li.see_also_rels__data_unit__last {
    padding: 0 20px 50px 0 !important;
    height: 240px;
    position: relative;
}
.products li.see_also_rels__data_unit__last a {
    position: absolute;
    top: 0;
    left: 0;
    right: 20px;
    height: 127px;
    border: 1px solid #CCC;
    border-radius: 4px;
    padding: 6px 10px;
    z-index: 200;
}
.products li.see_also_rels__data_unit__last a:hover {
    color: #1F3E85;
    border-color: #1F3E85;
}
.see_also_rels__data_unit__last_vsego {
    position: absolute;
    top: 100px;
    left: 10px;
    font-size: 12px;
    pointer-events: none;
}
.products li.see_also_rels__data_unit__last a:hover ~ .see_also_rels__data_unit__last_vsego {
    color: #1F3E85;
}