@font-face {
    /*font-family: "Roboto-Regular";
    src: url("../fonts/Roboto-Regular.eot");
    src:url("../fonts/Roboto-Regular.svg#filename") format("svg");
    src:url("../fonts/Roboto-Regular.ttf") format("truetype");*/

    font-family: "FreeSans";
    src: url("../fonts/FreeSans.eot");
    src: url("../fonts/FreeSans.svg#filename") format("svg");
    src: url("../fonts/FreeSans.ttf") format("truetype");
    font-display: swap;
}

* {
    box-sizing: border-box;
}

html {
    /* Prevent font scaling in landscape while allowing user zoom */
    height: 100%;
}

body {
    position: relative;
    font-family: 'FreeSans';
    font-size: 15px;
    margin: 0px;
    height: 100%;
}

h1 {
    /* font-size: 32px; */
    font-size: 1.8em;
    color: #30323d;
}

h2 {
    /* font-size: 20px;*/
    font-size: 1.6em;
    color: #30323d;
    margin: 10px 0;
}

h3 {
    /* font-size: 20px;*/
    font-size: 1.1em;
    color: #30323d;
    margin: 10px 0;
}

h6 {
    color: #30323d;
    font-size: 15px;
    margin: 20px 0;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

input:focus {
    border-color: #027bce;
    outline: none;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    position: relative;
    text-align: center;
    width: calc(100% - 10px);
    font-size: 13px;
    border-radius: 7px;
    table-layout: fixed;
    border-color: grey;
    /* margin: 0 5px 10px 5px; */
}

thead {
    display: table-header-group;
    vertical-align: middle;
    border-color: inherit;
    border-collapse: separate;
}
/* 

caption {
    background-color: #30323d;
    color: white;
    font-weight: bold;
    text-align: center;
    font-size: 13px;
    padding: 10px;
    margin-bottom: 1px;
} */

th {
    background: white;
    text-transform: uppercase;
    color: #30323d;
    padding: 20px 10px;
    margin-bottom: 10px;
    border: none;
    position: sticky;
    z-index: 120;
    border-bottom: thin solid #b1b1b1;

}

tr {
    height: 30px;
    color: #30323d;
    display: table-row;
    background-color: white;
    border-bottom: thin solid #f1f1f1;
}

td:first-child {
    font-weight: bold;
}

td {
    min-width: 130px;
    padding: 20px 10px;
    margin: 10px;
    word-wrap: break-word;
    outline: none;
}

.data-row {
    cursor: pointer;
}

.data-row.disabled {
    cursor: not-allowed;
}

.data-row:hover,
.data-row.highlighted {
    background-color: #e4f4ff
}

.data-row.cancelled {
    color: #0f0f0f;
    opacity: 0.7;
}

.data-row.cancelled:hover {
    background: white;
}

#base-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 40px;
}

.title-container {
    height: 200px;
    width: 100%;
    background-color: #f5f5f5;
    display: flex;
    box-shadow: 0 0 40px -20px #555555;
}

.title-container::before {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 275px;
    opacity: 0.08;
    /* background-image: url('../images/server.jpg'); */
    filter: blur(2px);
    -webkit-filter: blur(2px);
    /* background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover; */
}

.page-title {
    position: absolute;
    align-self: center;
    /* letter-spacing:3px; */
    position: relative;
    margin: 0 auto;
    text-align: center;
    color: #30323d;
    font-size: 35px;
    padding-bottom: 20px;
    z-index: 2;
}

.page-title::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    width: 70%;
    left: calc(15%);
    border-bottom: 4px solid #B80056;
}

.page-container {
    display: flex;
    margin: 40px 5%;
    gap: 20px;
    flex-direction: column;
}

.subtitle-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding: 10px 20px;
}

.subtitle {
    border-bottom: 2px solid #c5c5c5;
    text-align: center;
    justify-content: center;
    align-self: center;
    color: #B80056;
    font-size: 20px;
    margin: 50px 15px 20px 15px;
    padding: 15px 0;
}

.subtitle-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}

.button {
    cursor: pointer;
    transition: all 0.4s;
}

.button.submit {
    box-shadow: 0px 0px 2px #555555;
    background-color: #30323d;
    color: white;
    padding: 0px 20px;
    font-weight: bold;
    text-decoration: none;
    font-size: 12px;
    height: 40px;
    border: none;
    border-radius: 7px;
    overflow: hidden;
    -webkit-appearance: none;
    appearance: none;
}

.button:hover {
    transform: scale(1.05);
}

.download-links {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.download-link {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.list-points {
    list-style: none;
    margin-top: 0;
    line-height: 2.2em;
    font-size: 1.1em;
}

.list-points>li:before {
    display: inline-block;
    content: "-";
    width: 1em;
    margin-left: -1em;
}


.input-container {
    overflow: visible;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    gap: 20px;
}

.form-input {
    position: relative;
    padding: 0 5px 0 20px;
    flex-grow: 1;
    height: 40px;
    background: #f1f1f1;
    line-height: 40px;
    overflow: hidden;
    left: 0;
    border-radius: 7px;
    text-align: left;
    border: 1px solid #6f6f6f;
    z-index: 96;
}

.slider {
    padding: 0;
}

.custom-select {
    min-width: 200px;
    flex-grow: 1;
    position: relative;
    background-color: #f1f1f1;
    display: flex;
    padding: 0 5px;
    height: 40px;
    border: 1px solid #6f6f6f;
    overflow: visible;
    align-items: center;
    font-weight: normal;
    left: 0;
    border-radius: 7px;
    outline: 0;
}

.custom-select>select {
    display: none;
}

.select-selected {
    width: 100%;
}

.select-selected:after {
    z-index: 99;
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: "\f078";
    font-size: 12px;
    height: calc(100% - 30px);
    top: 5px;
    padding: 10px 10px;
    right: 0px;
    line-height: 80%;
    border-left: thin solid #b1b1b1;

}

.select-selected.select-arrow-active:after {
    content: "\f077";
}

.select-items div,
.select-selected {
    padding: 8px 5px;
    z-index: 99;
    cursor: pointer;
}

.select-items div {
    padding-left: 16px;
}

.select-items {
    position: absolute;
    background-color: white;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0px 0px 50px -13px #555555;
    border-radius: 7px;
    max-height: 400px;
}

.scroll-container {
    overflow-y: auto;
    overflow-x: hidden;
}


body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-thumb:hover {
    background: #30323d;
}

body::-webkit-scrollbar-track {
    background: transparent;
    width: 10px;
    background: #b1b1b1
}

body::-webkit-scrollbar-thumb {
    background: #4f4f4f;
    border-radius: 40px;
    transition: all 0.4s ease-in;
    background-clip: padding-box;
}

.scroll-container::-webkit-scrollbar {
    width: 5px;
}

.scroll-container::-webkit-scrollbar:hover {
    width: 10px;
}

.scroll-container::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 40px;
}

.scroll-container::-webkit-scrollbar-thumb {
    background: #3a3a3a;
    border-radius: 40px;
    background-clip: padding-box;
}

.select-hide {
    display: none;
}

.select-items div:hover,
.same-as-selected {
    color: #027bce;
}

.link {
    text-decoration-color: #a2dffb;
    color: #007db5;
}

.link:hover,
.link:focus {
    color: #B80056;
    text-decoration-color: #B82C6D;
}

.text-icon{
    padding-right: 10px;
}

.amazon-link {
    background-color: rgb(255, 164, 28);
    border-radius: 7px;
    font-size: 14px;
    width: 250px;
    color: #30323d;
    padding: 10px 30px;
    border-radius: 20px;
    border: #FF8F00;
    overflow: hidden;
    font-weight: bold;
    position: relative;
}

.amazon-link:hover {
    color: black;
    cursor: pointer;
    background-color: #FF8F00;
}

.seperator {
    border-bottom: 1px solid #e7e6e6;
    width: 90%;
    margin: 0 5%;
}

.price{
    color: #b80056;
    font-weight: bold;
  }
  