html {
    height: 100%;
    scroll-behavior: smooth;
}
body {
    background-color: #fff;
    margin: 0;
    color: #222;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    min-height: 100%;
    display: block;
}
a, a:visited {
    color: #000;
}
a:hover {
    color: #41ad49;
}
.head-mobile, .mobile-menu {
    display: none;
}
.container {
    max-width: 1250px;
    margin: 0 auto;
    overflow: hidden;
}
.content {
    border: 1px solid #ddd;
    padding: 15px;
    background-color: #fdfdfd;
    margin: 20px 0 20px;
    display: flex;
}
.left-menu {
    width: 20%;
    float: left;
    margin: 9px 4px;
}

.left-menu p {
    font-size: 13px;
    padding: 0 0 12px 0;
    color: #959595;
    border-bottom: 1px solid #e5e5e5;
    margin-right: 10px;
}
#menu {
    display: none;
}
.items-selected h5 {
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 18px;
}
button:hover, input[type=submit]:hover, input[type=button]:hover {
    cursor: pointer;
    opacity: 0.9;
}
.menu-button {
    padding: 0 0 8px 0;
    font-size: 42px;
    color: #4e4e4e;
    border-bottom: 1px solid #ddd;
    margin: -10px 10px 25px 0;
}
.menu-button-mobile {
    display: none;
}
.menu-button:hover {
    color: #000;
    cursor: pointer;
}
.content-list {
    width: 80%;
    float: left;
}
.list-header
{
    display: flex;
    margin: 4px 0;
    align-items: center;
    justify-content: space-between;
}
.groups .group {
    display: flex;
    grid-auto-flow: column;
    flex-wrap: wrap;

    align-items: center;
    align-content: center;
    gap: 2%;
    background-color: #fff;
    border: 1px solid #dddddd;
    margin-bottom: 12px;
}
.groups .group-title {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    width: 4%;
    font-weight: 700;
}
.groups .group-items {
    width: 94%;
    box-sizing: border-box;
    padding: 10px 0px;
}
.list-header h3
{
    margin: 0;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 400;
}
.list-header h3 > span {
    text-transform: initial;
    font-size: 12px;
    display: block;
    width: 98%;

}

.list-header p
{
    
    display: grid;
    align-items: center;
    grid-auto-flow: column;
    margin: 4px 0;
    font-size: 13px;
    grid-gap: 0;
}
.list-header p > label  {
    padding-right: 10px;
}
.select-item {
    display: block;
    padding: 0;
    height: auto;
    
    position: relative;
    margin: 0 12px 0 0;
    border-bottom: 1px solid #e9e9e9;
}
.hidden {
    display: none;
}
.show {
    display: block!important;
}
.select-item.open {
    height: auto!important;
}
.select-item.checked {
    opacity: 1;
}
.group-items.checked {
    opacity: 0.35;
    pointer-events:none;
}
.select-item.checked .items-child {  
    color: initial;
}
.select-item .item-child-divider  {  
   padding: 25px 0 15px;
   font-weight: 500;
}
.select-item:hover {
    opacity: 0.9;
}
.select-item [type="checkbox"] + label {

    padding: 12px 67px 12px 18px;
    line-height: 1.5;
    font-size: 15px;
    cursor: pointer;
    width: auto;
    display: grid;
    align-items: center;
    grid-gap: 0;
    grid-template-columns: 32px auto;
}
.select-item [type="checkbox"] {
position: relative;
left: 15px;
top: -4px;
z-index: 0;
-webkit-appearance: none;
display: none;
}
.select-item-before {
width: 22px;
height: 22px;
background-size: cover;
display: block;
content: "";
float: left;
margin-right: 0;
z-index: 5;
position: relative;
}
.select-item.checked > label > span, .select-item .item-child.checked > label > span {
    font-weight: 700;
}
.select-item [type="checkbox"]:checked+label .select-item-before {
background-image: url("../images/checked4.png");
}
.select-item-before.checked {
    background-image: url("../images/checked4.png");
    }
.select-item i.fa-chevron-down {
    position: absolute;
    right: 18px;
    top: 14px;
    font-size: 19px;
}
.items-child {
    display: none;
    width: auto;
    padding-left: 45px;
}
.item-child {
    display: block;
    height: auto;       
    width: auto;
    border-top: 1px solid #ddd;
    position: relative;
}
/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 34px;
  }
  
  /* Hide default HTML checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  /* The slider */
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: #2196F3;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }
  .fa-info-circle {
    position: absolute;
    top: 13px;
    right: 42px;
    font-size: 23px!important;
    color: #111;
  }
  .item-desc {
    padding: 4px 16px 8px 50px;
    font-size: 14px;
    color: #000;
    display: none;
  }
  .left-menu h3 {
    margin: 5px 0;
    text-transform: uppercase;
    font-weight: 400;
  }
.bg-color-1 {
    background-color: #91A9D6;
}
.bg-color-2 {
    background-color: #939393;
}
.bg-color-3 {
    background-color: #D2D2D3;
}
.bg-color-4 {
    background-color: #F4D1Ca;
}
.bg-color-5 {
    background-color: #C3E7F9;
}
.bg-color-6 {
    background-color: #E7F3F6;
}
.bg-color-7 {
    background-color: #7BCBC8;
}
.bg-color-8 {
    background-color: #E7A0A2;
}
.bg-color-9 {
    background-color: #c182b9;
}
.bg-color-10 {
    background-color: #edea82;
}
.bg-color-11 {
    background-color: #d38888;
}
.bg-color-11 > span {
    font-weight: 700;
}
.bg-color-12 {
    background-color: #41aae1;
}
.bg-color-13 {
    background-color: #47ab58;
}
.icon-list {
    vertical-align: middle;
    margin-right: 15px;
}
.colors {
    list-style-type: none;
    padding-inline-start: 0px;
    margin-bottom: 40px;

}
.colors li {
    padding: 6px 0;
    text-decoration: none;
    display: grid;
    align-items: center;
    gap: 10px;
    grid-template-columns: 22px auto;
    font-size: 13px;
    font-style: italic;

}
.colors span {
    width: 22px;
    height: 22px;
}
  
  /**TREE List */

  .tree,
  .tree ul {
    margin: 15px 0 25px 0; /* indentation */
    padding:0;
    list-style:none;
    color:#dddddd;
    position:relative;
  }
  
  .tree ul {margin-left:.5em} /* (indentation/2) */
  
  .tree:before,
  .tree ul:before {
    content:"";
    display:block;
    width:0;
    position:absolute;
    top:0;
    bottom:0;
    left:0;
    border-left:1px solid;
  }
  
  .tree li {
    margin:0;
    padding: 5px 17px;
    line-height: 1.3;
    font-weight:bold;
    font-weight: 400;
    position: relative;
    font-size: 14px;
  }
  .tree li a {
      color: #15344f;
      text-decoration: none;
  }
  .tree li a:hover {
    color: #ce2222;
    }
  .tree li.active a {
      color: #ce2222;
      font-weight: 500;
  }
  
  .tree li:before {
    content:"";
    display:block;
    width:10px; /* same with indentation */
    height:0;
    border-top:1px solid;
    margin-top:-1px; /* border top width */
    position:absolute;
    top:1em; /* (line-height/2) */
    left:0;
  }
  
  .tree li:last-child:before {
    background:white; /* same with body background */
    height:auto;
    top:1em; /* (line-height/2) */
    bottom:0;
  }
  .close-menu {
      display: none;
  }
  .cart {
    position: fixed;
    right: 8px;
    top: 117px;
    font-size: 37px;
    background-color: #ddd;
    border-radius: 50%;
    padding: 14px;
    z-index: 10;
}
  .cart a {
      color: #666;
      position: relative;
  }
  .cart .qty {
    text-decoration: none;
    position: absolute;
    font-size: 14px;
    left: -6px;
    bottom: -1px;
    background-color: #d2252c;
    border-radius: 50%;
    width: 24px;
    height: 20px;
    padding: 4px 0 0 0;
    text-align: center;
    color: #fff;
  }
  .cart-items {
    display: none;
    position: absolute;
    font-size: 12px;
    right: 13px;
    top: 70px;
    width: 230px;
    height: auto;
    background-color: #fff;
    padding: 10px;
    border-radius: 0;
    padding-bottom: 54px;
    border: 1px solid #ddd;
  }
  .cart-items.open {
    display: block;
}
.cart-items div { 
    display: block;
    border-radius: 4px;
    margin: 2px;
}
.cart-items .item-title { 
    display: inline-block;
    padding: 6px;
    border-radius: 4px;
    white-space: nowrap;
    max-width: 95%;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 12px;
    margin: 0 2px;
}
.child-items {
    display: inline-block;
    font-size: 11px;
    border: 1px solid #fff;
    padding: 2px 4px;
    border-radius: 4px;
    margin: 2px;
}
.cart-send {
    position: absolute;
    bottom: 12px;
    background-color: #004a8f;
    color: #fff;
    text-decoration: none;
    padding: 8px;
    border-radius: 6px;
    font-size: 16px;
    left: 12px;
    text-align: center;
    border: none;
}
.cart-destroy {
    background-color: #e1e1e1;
    right: 8px;
    left: auto;
    color: #444;
}
.btn {
    background-color: #004a8f;
    color: #fff;
    text-decoration: none;
    padding: 8px;
    border-radius: 6px;
    font-size: 16px;
    text-align: center;
    border: 0;
    padding: 15px 30px;
    float: right;
    display: inline-block;
    width: 20%;
}
/** send **/
.content.send, .content.cats {
    display: block; 
    padding: 30px;
    text-align: center;
}
.content.send h3 {
    text-align: center;
    margin: 10px 0 30px;
    font-size: 26px;
    font-weight: 400;
    text-transform: uppercase;
}
.send-form {
    text-align: left;
    max-width: 80%;
    margin: 0 auto;
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
    color: #444;
}
.send-form div {
    margin: 25px 0;
}
.send-form label {
    width: 35%;
    display: inline-block;
    text-align: right;
    padding: 7px 15px 0 0;
    vertical-align: top;
}
.send-form input, .send-form select, .send-form textarea {
    width: 62%;
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid #ddd;
}
.send-form textarea {
   height: 66px;
    font-family: 'Open Sans';
}
.items-selected {
    width: 80%;
    margin: 0 auto;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}
.items-selected div {
    display: inline-block;
    padding: 8px;
    margin: 4px;
    border-radius: 6px;
    font-size: 14px;
}
.btn-send {
    margin: 40px 10px 10px;
    padding: 18px 31px;
    border: 0;
    background-color: #004a8f;
    color: #fff;
    border-radius: 6px;
    font-size: 18px;
}
.btn-send:hover {
    opacity: 0.8;
    cursor: pointer;
}
.message {
    display: none;
    text-align: center;
    margin: 30px 20px 0px;
}
.message h5 {
    font-size: 18px;
}
.categories {
    display: grid;
    grid-template-columns: repeat(4,25%);
}
.content.cats > p {
    font-size: 14px;
    color: #8f8f8f;
    margin-bottom: 30px;
}
.categories > div {
    padding: 10px;
}
.categories > div > a {
    position: relative;
    display: block;
}
.categories > div > a:hover {
    opacity: 0.8;
}
.categories > div h3 {
    position: absolute;
    bottom: 0;
    color: #fff;
    text-align: center;
    left: 0;
    right: 0;
    margin: 0 20px 17px;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    height: auto;
    align-items: center;
    display: flex;
    /* text-align: center; */
    justify-content: center;
    line-height: 1.5;
    flex-direction: column;
}
.categories h3 > span {
    font-size: 13px;
    padding: 8px 0 0 0;
    text-transform: initial;
}
.img-cat {
    width: 100%;
    height: 250px;
    background-size: cover;
}
.img-cat:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #000000d9, transparent);
    left: 0;
}
.btn-desc {
    display: inline-block;
    width: 78%;
    text-align: right;
    padding: 5px 10px 0 0;
    font-size: 14px;
    color: #666;
}
.btn-send-desc {
    display: block;
    width: auto;
    text-align: center;
    padding: 0 20% 25px;
    font-size: 14px;
    color: #666;
    border-bottom: 1px solid #ddd;
}
#menu h3 i {
    display: none;
}
.go-back {
    text-align: left;
    display: block;
}
.go-back a {
    background: none!important;
    border: none;
    font-size: 16px;
    color: #7c7c7c;
    text-decoration: none;
}
.go-back a:hover {
    color: #d23737;
    cursor: pointer;
}
.go-back i {
    margin-right: 6px;
    font-size: 13px;
}
/** HEADER *** */
.top-header {
    padding: 14px 0 10px;
    background-color: #15344f;
    text-align: right;
    font-family: 'Nunito', sans-serif;
}
.top-header ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.top-header ul li {
    display: inline-block;
    margin-left: 35px;
}
.top-header ul li a {
    display: inline-block;
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
    color: #ffffff;
    text-decoration: none;
}
.mainmenu {
    border-bottom: 1px solid #dfe4e9;
}
.h-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Nunito', sans-serif;

}
.h-menu .branding {
    padding: 15px 30px 15px 30px;
    border-left: 1px solid #dfe4e9;
    border-right: 1px solid #dfe4e9;
}
.h-menu .branding img {
    height: 60px;
}
.visible-menu {
    width: 100%;
}
.h-menu .outside-menu, #menu-container > div {
    position: relative;
}
.h-menu ul {
    text-transform: uppercase;
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}
.h-menu .visible-menu ul li {
    
    border-right: 1px solid #dfe4e9;
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}
.h-menu .visible-menu ul li a {
    padding: 0 30px;
    font-size: 16px;
    font-weight: bold;
    line-height: normal;
    color: #15344f;
    margin: 0;
    text-transform: none;
    text-decoration: none;
    display: flex;
    align-items: center;
    border-bottom: 3px solid #fff;
    width: 100%;
    height: 87px;
}
.h-menu .visible-menu ul li a:hover {
    background: rgba(0,141,188,0.1);
    border-bottom: 3px solid #008dbc;
}
/** END HEADER *** */

/** footer *** */
.footer-message {
    text-align: center;
    font-size: 14px;
    color: #004a8f;
}
.footer-second-column {
    border-top: 1px solid #dfe4e9;
    border-bottom: 1px solid #dfe4e9;
    font-family: 'Nunito', sans-serif;
} 
.footer-first {
    padding-bottom: 18px;
    padding-top: 68px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
}
.footer-first > div {
    margin-bottom: 1rem;
}
.footer-first img {
    width: 166px;
    height: auto;
}
.footer-first > div {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 45px;
}
.footer-second {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-second > div {
    display: flex;
}
.footer-second > div > a {
    border-left: 1px solid #dfe4e9;
    position: relative;
    padding: 0 40px;
    display: flex;
    align-items: center;
    height: 70px;
    text-decoration: none;
    color: #15344f;
    font-size: 14px;
    border-bottom: 3px solid #fff;
    text-align: left;
}
.footer-second > div > a:hover {
    background: rgba(0,141,188,0.1);
    border-bottom: 3px solid #008dbc;
}
.footer-second > span span {
    position: relative;
    top: 33px;
    font-size: 14px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.86;
    letter-spacing: normal;
    text-align: left;
    color: #15344f;
    pointer-events: none;
}
.footer-second > div > a:nth-of-type(4) {
    padding-left: 100px;
}
.footer-second > div > a:nth-of-type(4):before {
    content: '';
    display: inline-block;
    height: 49px;
    width: 42px;
    background: url("https://stampar.hr/sites/default/files/zg.svg");
    position: absolute;
    left: 35px;
    top: 13px;
}
.footer-second i {
    font-size: 24px;
    
}
.footer-second .social a {
    border: 1px solid #15344f;
    padding: 10px;
    margin: 10px;
    height: auto;
    width: 24px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #15344f;
}
.footer-second .social a:hover {
    background-color: #15344f;
    color: #fff;
    border-bottom:none;
}
.footer-third {
    padding: 15px 0;
    font-size: 12px;
    color: #15344f;
    display: flex;
    justify-content: space-between;
}
.footer-third a {
    text-decoration: none;
    font-weight: bold;
    color: #15344f;
}
/** end footer *** */
@media (max-width: 768px ) { 
    .content {
        border: none;
        padding: 15px;
        background-color: #fdfdfd;
        margin: 0;
        display: flex;
    }
    .head-mobile {
        display: block;
        margin: 0 auto;
    }
    .mobile-menu {
        display: block;

    }
    .mobile-menu-button {
        padding: 18px 22px;
        font-size: 24px;
        color: #15344f;
    }
    .mobile-menu-button.active {
        z-index: 12;
        position: absolute;
        top: 29px;
        right: 0;
        color: #fff;
    }
    .mobile-menu .mobile-menu-list {
        display: none;
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        background-color: #15344f;
        padding: 20px;
        bottom: 0;
        z-index: 11;
        transition-duration: .4s; 
    }
    .mobile-menu .mobile-menu-list ul {
        justify-content: flex-end;
        align-items: flex-start;
        flex-direction: column;
        margin-top: 80px;
    }
    .mobile-menu .mobile-menu-list ul li {
        border-bottom: 1px solid #1e405d;
        width: 98%;
        padding: 8px 4px;
    }
    .mobile-menu .mobile-menu-list ul li a {
        color: #fff;
        text-decoration: none;
        padding: 4px 0;
        text-transform: none;
    }
    .mobile-menu .mobile-menu-list.show {
        display: block;
        
    }
    .h-menu .branding {
        padding: 10px;
        border-left: none;
        border-right: none;
    }
    .head {
        display: none;
    }
    header:before {
        background-color: #fff;
        border-top: 1px solid #262628;
        border-bottom: 1px solid #ddd;
        height: 51px;
    }

    #left-content {
        height: 100%;
        display: none;
        position: fixed;
        z-index: 11;
        top: 0;
        left: 0;
        background-color: #3a3a3a;
        overflow-x: hidden;
        padding: 40px 15px;
        color: #fff;
        right: 0;
    }
    .tree li {
        padding: 9px 17px;
        font-size: 13px;
    }
    .tree li:before {
        top: 18px;
    }
    .content-list {
        transition: all 0.2s;
    }
    @keyframes slidein {
        from {
            margin-left: -270px;
        }
        
        to {
            margin-left: 0;
        }
        }
    .fa-close {
        position: absolute;
        top: 15px;
        right: 19px;
        font-size: 31px!important;
        
    }
    .close-menu {
        display: block;
        color: #fff;
    }
    .menu-button {
        display: none;
    }
    #menu h3 i {
        display: inline-block;
        font-size: 12px;
        padding: 0 0 4px 4px;
        vertical-align: middle;
    }
    .left-menu p {
        border-bottom: none;
    }
    .content, .list-header {
        display: flex;
        flex-direction: column;
        padding: 10px;
        font-size: 13px;
    }
    .tree li a {
        color: #e5e5e5;
        text-decoration: none;
    }
    .tree li:last-child:before {
        background: #3a3a3a;
        height: auto;
        top: 1em;
        bottom: 0;
    }
    .list-header {
        padding: 0;
    }
    #menu {
        display: block;
        
        padding-bottom: 15px;
    }
    .tree {
        display: none;
    }
    .list-header p {
        border-left: none;
        padding-left: 0;
        border: 1px solid #ddd;
        padding: 5px;
    }
    .menu-button-mobile {
        display: flex;
        align-items: center;
    }
    .menu-button-mobile  i {
        padding: 8px;
        background-color: #ddd;
        border-radius: 50%;
        width: 20px;
        height: 20px;
        font-size: 22px;
        text-align: center;
    }
    .menu-button-mobile  span {
        padding: 0px 0 0 6px;
        font-size: 14px;
        display: inline-block;
    }
    .content-list, .list-header h3, .list-header p {
        width: 100%;
        
    } 
    .groups .group  {
        gap: 0;
    }
    .groups .group-title {
        width: 6%;
    }
    .select-item [type="checkbox"] + label {
        padding: 10px 10px;
        line-height: 1.3;
        font-size: 14px;
    }
    .select-item {
        margin: 6px 0px; 
    }
    .select-item i.fa-chevron-down {
        position: absolute;
        right: 7px;
        top: 14px;
        font-size: 14px;
    }
    .groups .group {
        flex-direction: column;
        background-color: transparent;
        border: none;
    }
    .groups .group-title {
        width: auto;
        writing-mode: unset;
        text-orientation: unset;
        padding: 10px 0 0;
        font-size: 16px;
    }
    .groups .group-items {
        border-left: none;
        width: 100%;
    }
    .items-child {
        padding-left: 20px;
    }
    .fa-info-circle {
        top: 11px;
        right: 21px;
        font-size: 20px!important;
    }
    .cart {
        position: fixed;
        top: 102px;
    }
    .send-form {
        max-width: 100%;
    }
    .send-form label, .send-form textarea {
        width: 100%;
        display: inline-block;
        text-align: left;
        padding-right: 0;
    }
    .send-form input, .send-form select {
        width: 100%;
        display: inline-block;
        padding: 8px 14px;
        border: 1px solid #ddd;
    }
    .items-selected h5 {
        margin-bottom: 10px;
    }
    .items-selected {
        width: 100%;
    }
    .categories {
        display: grid;
        grid-template-columns: 50% 50%;
    }
    .cart-items div { 
        font-size: 12px;
        display: block;
    }
    .cart-items div span { 
        font-size: 10px;
    }
    .outside-menu, .visible-menu {
        display: none;
    }
    .h-menu .branding img {
        height: 54px;
    }
    .cart {
        font-size: 24px;
    }
    .cart .qty {
        text-decoration: none;
        position: absolute;
        font-size: 10px;
        left: -14px;
        bottom: -17px;
        background-color: #d2252c;
        border-radius: 50%;
        width: 18px;
        height: 16px;
        padding: 2px 0 0 0;
        text-align: center;
        color: #fff;
    }
    .footer-first > div {
        gap: 20px;
        flex-direction: column;
        font-size: 12px;
        font-weight: 400;
        line-height: 1.6;
        text-align: center;
    }
    .footer-second {
        flex-direction: column;
    }
    .footer-second > div {
        flex-direction: column;
        width: 100%;
    }
    .footer-second .social {
        flex-direction: row;
        justify-content: center;
    }
    .footer-second > div > a {
        border-left: none;
        position: relative;
        padding: 0 15px;
        display: flex;
        align-items: center;
        height: 40px;
        text-decoration: none;
        color: #15344f;
        font-size: 14px;
        border-bottom: 1px solid #ddd;
        text-align: left;
    }
    .footer-second > div > a:nth-of-type(4):before {
        height: 30px;
        width: 25px;
        left: 15px;
        top: 5px;
        background-size: cover;
    }
    .footer-second > div > a:nth-of-type(4) {
        padding-left: 50px;
    }
    .footer-third {
        padding: 15px 0;
        font-size: 10px;
        color: #15344f;
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    footer {
        background-color: #f0f0f0;
    }
}
@media (max-width: 468px) { 
    .categories {
        display: grid;
        grid-template-columns: 100%;
    }
    .content.cats {
        padding: 10px!important;
    }
    .content.cats > h2 {
        padding-top: 40px;
    }
    .content.cats > p {
        margin-bottom: 15px;
    }
    .content.send {
        padding: 10px!important;
    }
    .img-cat { 
        height: 180px;
    }
    .btn-desc {
        width: 100%;
        text-align: center;
        padding: 0 0 19px;
        font-size: 12px;
        color: #666;
    }
    .btn {
        width: 100%;
    }
    .select-item [type="checkbox"] + label {
        padding: 10px 10px;
        line-height: 1.3;
        font-size: 13px;
    }
    .btn-send-desc {
        padding: 15px 0 0;
        font-size: 12px;
        color: #666;
    }
    .items-selected span {
      
        font-size: 11px;
    }

  }