  :root {

    --lahti_red: #ed1c24;

    --primary: #051821;
    --secondary: #1cede5;
    --third: #12355B;
    --fourth: #ADB4BF;

    --background: #dbdbdb;
    --background2: #eeeeee;

    --danger: darkred;
    --success: #4BB543;

    /* ALERTS COLORS */
    --a_primary: #0676ed;
    --a_background: #222b45;
    --a_warning: #f2a600;
    /* --a_success: #12c99b; */
    /* --a_error: #e41749; */
    --a_dark: #151a30;

    /* PROGRESS DETAILS */
    --progress-bar-width: 75px;
    --progress-bar-height: 75px;
    --font-size: 1rem;

    /* DROPDOWN DETAILS */

    --dropdown-width: 150px;
    --dropdown-background: white;
    --dropdown-color: black;

  }

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }



  html {
    font-family: 'Poppins', sans-serif;
    /* position: relative; */
    min-height: 100%!important;
	  height: auto!important;

  }

  body {
      /* margin-left: 80px; */
      /* position: relative; */
      min-height: 100vh; /*Ensure the body takes up at least the full height of the viewport*/
      /* display: flex;
      flex-direction: column; */
      max-width: 100%;
      overflow-x: scroll;
      -webkit-overflow-scrolling: touch;
      zoom: 1;

  }

  .row{
    max-width: 90%;
    margin: 0px 5%;
    flex: 1;
  }

  .row::after {
    content: "";
    clear: both;
    display: table;
  }

  .header {
    background-color: var(--primary);
    color: #ffffff;
    padding: 15px;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    margin-left: 0px;
  }

  .header span {
    float: inline-end;
    font-size: 15px;
    padding: 7.5px;
  }

  /* .banner {
    padding: 15px;
    margin: 15px;
    border-radius: 25px;
    background-color: var(--background2);
  } */

  /* PAGINATION */

  .pagination{
    text-align: end;
    margin: 15px auto;
  }

  .pagination_button{
    padding: 5px;
    border: 0.5px solid var(--secondary);
    border-radius: 5px;
    margin: auto 0px;
    cursor: pointer;
    color: var(--primary);
    font-weight: bold;
  }

  .pagination_button:hover{
    background-color: var(--secondary);
  }

  /* ALERTS */

  .alerts-div{
    width: 100%;
    display: flex;
    align-items: center;
  }

  .alert {
    min-height: 67px;
    width: 19.5%;
    max-width: 100%;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    padding: 12px 22px;
    display: flex;
    align-items: center;
    margin: auto;
  }
  .alert-warning {
    background: var(--a_warning);
  }
  .alert-success {
    background: var(--success);
  }
  .alert-primary {
    background: var(--a_primary);
  }
  .alert-dark {
    background: var(--a_dark);
  }
  .alert-error {
    background: var(--danger);
  }
  .alert .icon__wrapper {
    height: 34px;
    width: 34px;
    border-radius: 50%;
    background: var(--a_background);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .alert .icon__wrapper span {
    font-size: 21px;
    color: #ffffff;
  }
  .alert p {
    color: #ffffff;
    font-family: Verdana;
    margin-left: 10px;
  }
  .alert p a,
  .alert p a:visited,
  .alert p a:active {
    color: #ffffff;
  }
  .alert .open {
    margin-left: auto;
    margin-right: 5px;
  }

  .alert .open a{
    color: #ffffff;
  }

  .alert .close, .alert .open {
    color: #ffffff;
    transition: transform 0.5s;
    font-size: 18px;
    cursor: pointer;
  }
  .alert .close:hover, .alert .open:hover {
    transform: scale(1.3);
  }

  .alert-box {
    min-height: 67px;
    width: 50%;
    max-width: 100%;
    padding: 12px 22px;
    border-radius: 25px;
    border: 3px solid #ffffff;
    align-items: center;
    text-align: center;
    vertical-align: middle;
    position: fixed;
    margin-left: 25%;
    margin-top: 5px;
    z-index: 1;
  }

  .alert-box h2{
    text-align: center;
    font-size: 25px;
    margin: 5px auto;
    text-transform: uppercase;
  }

  .success {
      color: #ffffff;
      background-color: var(--success);
      display: none;
  }

  .failure {
      color: #ffffff;
      background-color: var(--a_warning);
      display: none;
  }

  .delete_product {
    color: #ffffff;
    background-color: var(--danger);
    display: none;
}

  .warning {
      color: #ffffff;
      background-color: var(--a_primary);
      display: none;
  }

  /* MODAL IMAGE */

  /* The Close Button */
  .close-modal {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
  }

  .close-modal:hover,
  .close-modal:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
  }

  /* COLLUMNS */
  [class*="col-"] {
    float: left;
    padding: 15px;
  }

  /* For mobile phones: */
  [class*="col-"] {
    width: 100%;
  }

  /* CONTACT HOVER */


  :root {
    --size: 6rem;
    --transition-duration: 500ms;
    --transition-easing: ease-out;
  }

  .contact_items {
    display: inline-block;
    width: 80%;
    margin: 25px auto 15px auto;
    margin-left: 10%;
  }

  .contact_items .container {
    display: flex;
    /* grid-template-columns: repeat(5, 1fr); */
    gap: 1.25rem;
    width: 100%;
  }
  .contact_items .container .icon {

    width: var(--size);
    height: var(--size);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--primary);
    font-size: 3.5rem;
    border: 1px solid var(--background2);
    background-color: var(--background);
    backdrop-filter: blur(2px);
    border-radius: 0.5rem;
    box-shadow: 0px calc(var(--size) / 6) calc(var(--size) / 3) rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-duration) var(--transition-easing);
    /* overflow: hidden; */
    flex: 25%;
    padding: 10px;
  }

  .contact_items .container .icon span {
    font-size: 16px;
  }
  /* .contact_new_items .container .icon::before {
    content: '';
    background: var(--background2);
    width: 20%;
    height: 50%;
    top: 0%;
    left: -100%;
    transform: skew(45deg);
    position: absolute;
    transition: left var(--transition-duration) var(--transition-easing);
  }
  .contact_new_items .container .icon:hover {
    transform: translateY(-8px);
  }
  .contact_new_items .container .icon:hover::before {
    left: 150%;
  } */



  /* ----- */

  @media only screen and (min-width: 350px) {
    /* For mobile: */

    :root {
      --progress-bar-width: 70px;
      --progress-bar-height: 68px;
      --font-size: 0.9rem;
    }
    .col-5 {width: 94.5%;}
    .col-7 {width: 94.5%;}
    .col-11 {width: 94.5%;}




  }
  @media only screen and (max-width: 600px) {

    .header span {
      font-size: 12px;
      padding: 0px;
      width: 40%;
    }

    .alert{
      margin: 0.5% auto;
      border-radius: 15px;
    }





  }

  @media only screen and (min-width: 600px) {
    /* For tablets: */

    /* .col-s-1 {width: 8.33%;}
    .col-s-2 {width: 16.66%;}
    .col-s-3 {width: 25%;}
    .col-s-4 {width: 33.33%;}
    .col-s-5 {width: 41.66%;}
    .col-s-6 {width: 50%;}
    .col-s-7 {width: 58.33%;}
    .col-s-8 {width: 66.66%;}
    .col-s-9 {width: 75%;}
    .col-s-10 {width: 83.33%;}
    .col-s-11 {width: 95%;}
    .col-s-12 {width: 100%;} */

    .header span {
      font-size: 12px;
      padding: 12.5px 0px;
    }

  }

  @media screen and (max-width: 830px) {

    .alerts-div{
      display: block;
    }

    .alert{
      width: 90.5%;
      margin: 0% auto 0.5% auto;
    }

    .contact_items .container {
      flex-direction: column;
    }

    .contact_items .container .icon {
      width: 100%;
    }

  }


  @media only screen and (min-width: 830px) {
    /* For desktop: */

    .col-1 {width: 8.33%;}
    .col-2 {width: 16.66%;}
    .col-3 {width: 25%;}
    .col-4 {width: 33.33%;}
    .col-5 {width: 41.66%;}
    .col-6 {width: 50%;}
    .col-7 {width: 58.33%;}
    .col-8 {width: 66.66%;}
    .col-9 {width: 75%;}
    .col-10 {width: 83.33%;}
    .col-11 {width: 96.5%;}
    .col-12 {width: 100%;}
  }

  @media only screen and (min-width: 1024px) {

    .col-11 {width: 98.4%;}

  }