* {
    box-sizing: border-box;
}

.mb10 {
    margin-bottom: 10px;
}

.mb20 {
    margin-bottom: 20px;
}

body {
    /* background: #E7E8E9; */
}

header {
    background-color: #ffffff;
    width: 100%;
    /* padding-bottom: 40px; */
}

.main {
    /* background-color: #E7E8E9; */
    margin: 0;
    padding: 0;
}

.table {
    background-color: #ffffff;
}

.table thead {
    background: #c72266;
    color: #fff;
}

.titlebox h2 {
    background: #c72266;
    color: #fff;
    text-align: left;
    margin: 10px 0px 20px 0;
    text-transform: capitalize;
    padding: 10px 20px;
    font-size: 24px;
    font-weight: 600;
}

.table-title h2 {
    background: #c72266;
    color: #fff;
    text-align: left;
    margin: 10px 0px 0px 0;
    text-transform: capitalize;
    padding: 10px 20px;
    font-size: 20px;
    font-weight: 600;
}

.form-box {
    display: block;
    margin: 0 auto;
    width: 98%;
}

.boximage {
    width: 100%;
    height: auto;
    background-size: cover;
    border-radius: 5px 5px 0 0;
}

.infotext {
    width: 100%;
    padding: 3%;
    text-align: center;
    color: #162c38;
    font-family: sans-serif;
}

h1 {
    font-family: "Roboto Slab", serif;
    font-size: 1.1em;
    color: #162c38;
    text-transform: uppercase;
}

.infotext p {
    line-height: 1.5em;
    letter-spacing: 0.05em;
}

form {
    width: 100%;
}

.required-input {
    color: #f00;
}

input {
    display: block;
    width: 100%;
    border: solid 1px #ec1f28;
    border-radius: 5px;
    padding: 2%;
    font-size: 0.8em;
    font-family: sans-serif;
    letter-spacing: 0.1em;
    color: #888;
    text-align: left;
}

input[type="submit"] {
    border: none;
    border-radius: 5px;
    background-color: #a82d2d;
    color: #fff;
    text-align: center;
}

input[type="submit"]:hover {
    background-color: #711616;
    cursor: pointer;
}

.form-control {
    height: 30px;
    background: #fff;
    border: 1px #c72266 solid;
    padding: 0 15px;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}

.form-control:focus {
    border-color: #00bcd9;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

textarea.form-control {
    height: 160px;
    padding-top: 15px;
    resize: none;
}

.content-column ul li {
    list-style-type: disc;
    margin-left: 20px;
}

/* Responsive Styles for iOS and mobile */
@media only screen and (max-width: 768px) {
    .titlebox h2,
    .table-title h2 {
        font-size: 20px;
    }

    .infotext h1 {
        font-size: 1.2em;
    }

    input,
    textarea {
        font-size: 0.9em;
    }

    .sbuttons {
        bottom: 5%;
        left: 0;
    }
}

.overflow-x-scroll {
    overflow-x: scroll; 
    scrollbar-width: none; 
    -ms-overflow-style: none; 
  }
  
  .overflow-x-scroll::-webkit-scrollbar {
    display: none; 
  }