/* Web css for the site*/

* {
    scroll-behavior: smooth;
    font-family: 'Rokkitt' !important;
   
}

@font-face {
    font-family: 'Rokkitt';
    src: url('/static/fonts/Rokkitt/Rokkitt-VariableFont_wght.ttf') format('truetype'); /* Adjust the path as necessary */
    font-weight: 100 900; /* Define the range of weights available */
    font-stretch: 50% 100%; /* Optional: Define the range of widths available */
    font-style: normal; /* You can also define italic if available */
}

#grad1 {
    background-color: #1f90f2;
    /* For browsers that do not support gradients */
    background-image: linear-gradient(to left, #0076da, white);
}

#grad2 {
    background-color: #1f90f2;
    /* For browsers that do not support gradients */
    background-image: linear-gradient(to left, #1f90f2, white);
}

.hover-effect {
    transition: transform 0.3s ease;
}

.hover-effect:hover {
    transform: scale(1.02) rotate(2deg);
}

h1 {
    font-size: 5.5vw !important;
    line-height: 6vw !important;
}

h2 {
    font-size: 3rem !important;
}

h3 {
    font-size: 14px !important;
}


blockquote,
p,
li {
    font-size: 1.2rem;
    line-height: 1.5rem;
}

a {
    text-decoration: none !important;
    color: rgb(47, 39, 151) !important;
}

li {
    word-wrap: break-word;
}


a:hover {
    text-decoration: underline !important;
    text-underline-offset: 3pt;
    color: #9a6e1e;
}

.active {
    color: black;
    text-decoration: underline;
    text-underline-offset: 4pt;
    text-decoration-thickness: 1px;
}

.table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 19px;
}

#logo {
    height: 100px;
    padding: 10px;
    width: auto;
}

/* Refund Form styling*/


.page {
    border-style: dotted;
    border-radius: 3px;
    padding: 10px;
    background-color: white;
    word-wrap: break-word;
}


table {
    border-top: 2px solid black;
    line-height: 1.2;
    text-align: left;
    border-collapse: collapse;
}

th,
td,
tr {
    border-bottom: 2px solid black !important;
    vertical-align: top;
    padding: 0;
    font-size: 1.2rem;
    line-height: 1.5rem;
}

form {
    border-radius: 0px;
    border: none;
}

form:active {
    border-radius: unset;
}

input,
textarea {
    border-radius: unset;
    font-size: 18pt;
    border-bottom: 1px solid black;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    background-color: antiquewhite;
    outline: -webkit-focus-ring-color auto 0px;
}

::-webkit-input-placeholder {
    color: rgb(116, 116, 116);
}


.hover-effect:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

select {
    background: none;
    padding: 0;
}

option {
    font-size: inherit;
}


/* for IE10 */
.dropdown-container select::-ms-expand {
    display: none;
}

.content {
    padding: 0 18px;
    display: none;
    overflow: hidden;
}
