:root{
    --primary-color-rgb: 249, 105, 8;
    --primary-color: rgba(var(--primary-color-rgb), 1);
    --primary-color-dark-rgb: 241, 89, 43;
    --primary-color-dark: rgba(var(--primary-color-dark-rgb), 1);
    --primary-color-light-rgb: 255, 174, 0;
    --primary-color-light: rgba(var(--primary-color-light-rgb), 1);
    --secondary-color-rgb: 230, 57, 70;
    --secondary-color: rgba(var(--secondary-color-rgb), 1);
    --secondary-color-dark-rgb: 202, 51, 62;
    --secondary-color-dark: rgba(var(--secondary-color-dark-rgb), 1);
    --tertiary-color-rgb: 25, 167, 89;
    --tertiary-color: rgba(var(--tertiary-color-rgb), 1);
    --tertiary-color-dark-rgb: 1, 111, 72;
    --tertiary-color-dark: rgba(var(--tertiary-color-dark-rgb), 1);
    --text-color-light-rgb: 50, 50, 50;
    --text-color-light: rgba(var(--text-color-light-rgb), 1);
    --text-color-rgb: 30, 30, 30;
    --text-color: rgba(var(--text-color-rgb), 1);
    --text-color-dark-rgb: 10, 10, 10;
    --text-color-dark: rgba(var(--text-color-dark-rgb), 1);
    --white-color-rgb: 255, 255, 255;
    --white-color: rgba(var(--white-color-rgb), 1);
    --black-color-rgb: 0, 0, 0;
    --black-color: rgba(var(--black-color-rgb), 1);
    --grey-color-rgb: 165, 165, 165;
    --grey-color: rgba(var(--grey-color-rgb), 1);
    --grey-color-light-rgb: 221, 221, 221;
    --grey-color-light: rgba(var(--grey-color-light-rgb), 1);
    --light-color-rgb: 247, 247, 247;
    --light-color: rgba(var(--light-color-rgb), 1);
    --form-border-color-rgb: 112, 111, 111;
    --form-border-color: rgba(var(--form-border-color-rgb), 0.3);
    --placeholder-color-rgb: 82, 82, 82;
    --placeholder-color: rgba(var(--placeholder-color-rgb), 1);
    --primary-bg-color-rgb: 255, 246, 229;
    --primary-bg-color: rgba(var(--primary-bg-color-rgb), 1);
    --secondary-bg-color-rgb: 247, 215, 201;
    --secondary-bg-color: rgba(var(--secondary-bg-color-rgb), 1);
    --custom-color-one-rgb: 0, 90, 150;
    --custom-color-one: rgba(var(--custom-color-one-rgb), 1);
    --cart-text-color-rgb: 24, 24, 24;
    --cart-text-color: rgba(var(--cart-text-color-rgb), 1);
    --remove-color-rgb: 255, 0, 0;
    --remove-color: rgba(var(--remove-color-rgb), 1);
    --cart-quantity-button-color-rgb: 61, 61, 61;
    --cart-quantity-button-color: rgba(var(--cart-quantity-button-color-rgb), 1);
    --filter-title-color-rgb: 50, 50, 50;
    --filter-title-color: rgba(var(--filter-title-color-rgb), 1);
    --social-button-color-rgb: 3, 1, 76;
    --social-button-color: rgba(var(--social-button-color-rgb), 1);
    --order-status-color-rgb: 227, 20, 22;
    --order-status-color: rgba(var(--order-status-color-rgb), 1);
    --address-card-border-color-rgb: 255, 147, 102;
    --address-card-border-color: rgba(var(--address-card-border-color-rgb), 1);
    --address-card-default-link-color-rgb: 192, 192, 192;
    --address-card-default-link-color: rgba(var(--address-card-default-link-color-rgb), 1);

    --transition: .4s cubic-bezier(0.5,0,.3,1);
}
@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/Proxima-Nova/Proxima\ Nova\ Thin.otf');
    font-weight: 300;
}
@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/Proxima-Nova/ProximaNova-Regular.otf');
}
@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/Proxima-Nova/Proxima\ Nova\ Bold.otf');
    font-weight: 600;
}
@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/Proxima-Nova/Proxima\ Nova\ Extrabold.otf');
    font-weight: 700;
}
@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/Proxima-Nova/Proxima\ Nova\ Black.otf');
    font-weight: 900;
}
@font-face {
    font-family: 'Sitka';
    src: url('../fonts/SITKAVF.TTF');
}

body{
    font-family: 'Proxima Nova', sans-serif;
    color: var(--text-color);
}

.container{
    max-width: 100%;
}
@media (min-width: 481px){
    .container{
        max-width: calc(100% - 30px);
    }
}
@media (min-width: 768px){
    .container{
        max-width: calc(100% - 64px);
    }
}
@media (min-width: 1280px){
    .container{
        max-width: calc(100% - 114px);
    }
}
@media (min-width: 1440px){
    .container{
        max-width: 1326px;
    }
}

.display-1{
    font-family: 'Sitka', sans-serif;
    font-size: 4.25rem;
    line-height: 1.25;
}
.display-2{
    font-family: 'Sitka', sans-serif;
    font-size: 4rem;
    line-height: 1.15;
}
h1, .h1{
    font-family: 'Sitka', sans-serif;
    font-size: 3.75rem;
    line-height: 1.15;
}
h2, .h2{
    font-family: 'Sitka', sans-serif;
    font-size: 2.875rem;
}
h3, .h3{
    font-family: 'Sitka', sans-serif;
    font-size: 1.875rem;
}
h4, .h4{
    font-family: 'Sitka', sans-serif;
    font-size: 1.75rem;
    line-height: 1.15;
}
h5, .h5{
    font-family: 'Sitka', sans-serif;
    font-size: 1.5rem;
}
h6, .h6{
    font-family: 'Sitka', sans-serif;
    font-size: 1.125rem;
}

.btn{
    --btn-bg: var(--text-color);
    --btn-fg: var(--white-color);
    --btn-hov-bg: var(--text-color-dark);
    --btn-hov-fg: var(--white-color);
    font-size: 1rem;
    line-height: 1;
    padding: 16px 24px;
    min-width: 160px;
    border-radius: 6px;
    border-width: 1px;
    background-color: var(--btn-bg);
    border-color: var(--btn-bg);
    color: var(--btn-fg);
    transition: color var(--transition), background-color var(--transition), border-color var(--transition);
}
.btn:hover{
    background-color: var(--btn-hov-bg);
    border-color: var(--btn-hov-bg);
    color: var(--btn-hov-fg);
}
.btn-primary{
    --btn-bg: var(--primary-color);
    --btn-fg: var(--white-color);
    --btn-hov-bg: var(--primary-color-dark);
    --btn-hov-fg: var(--white-color);
}
.btn-primary-dark{
    --btn-bg: var(--primary-color-dark);
    --btn-fg: var(--white-color);
    --btn-hov-bg: var(--primary-color);
    --btn-hov-fg: var(--white-color);
}
.btn-secondary{
    --btn-bg: var(--secondary-color);
    --btn-fg: var(--white-color);
    --btn-hov-bg: var(--secondary-color-dark);
    --btn-hov-fg: var(--white-color);
}
.btn-tertiary{
    --btn-bg: var(--tertiary-color);
    --btn-fg: var(--white-color);
    --btn-hov-bg: var(--tertiary-color-dark);
    --btn-hov-fg: var(--white-color);
}
.btn-outline{
    background-color: transparent;
    color: var(--btn-bg);
    --btn-hov-bg: var(--btn-bg);
    --btn-hov-fg: var(--btn-fg);
}
.btn-orange{
    background-color: #F1592B;
    color: #fff;
    padding: 17px 35px;
}
.btn-orange:hover {
    text-decoration: none;
    color: #fff;
}
.text-link{
    color: var(--secondary-color);
    font-family: 'Sitka', serif;
    font-size: 18px;
    display: flex;
    align-items: center;
    column-gap: 5px;
    text-decoration: 0px underline;
}


table {
    border-collapse: collapse;
    width: 100%;
  }
  
  td, th {
    text-align: left;
    padding: 8px;
    background-color: #F7F7F7;
  }
  
  tr:nth-child(even) td{
    background-color: rgb(247, 247, 247, 0.2);
  }

  .text-green{
    color: #19A759;
}
.border-top-line{
    border-top: solid 1px rgba(0, 0, 0, 0.2);
}