si* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 500;
    background-color: #eeeeee;
    color: #333333;
    margin: 0;
    padding: 0;
}

.signature-font {
    font-family: 'Great Vibes', cursive;
    font-size: 1.7rem;
}

main {
    background-color: #ffffff;
    max-width: 695px;
    min-height: 100vh;
    margin: 0 auto;
    padding: 30px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    /* border-top: solid 30px #f0e68c; */
    position: relative;
    padding-top: 50px;
}


/* main::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: url("logo.png");
  opacity: 0.1;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 297.5px auto;
} */


/* main * {
  position: relative;
  z-index: 100;
} */

ul {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
}

table {
    width: 100%;
    table-layout: fixed;
}

table.table-fluid {
    table-layout: auto;
}

th,
td {
    padding: 5px 10px;
    word-wrap: break-word;
    word-break: break-word;
    border-bottom: 1px solid #ddd;
}

table,
th,
td {
    border-collapse: collapse;
}

table th {
    color: #ffffff;
    background-color: #333333;
}


/*table.table-striped tr:nth-child(even) {*/


/*  background-color: #eeeeee;*/


/*}*/


/*table.table-striped tr:nth-child(odd) {*/


/*  background-color: #ffffff;*/


/*}*/

.section {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
}

section.logo img {
    max-width: 100%;
}

section.address {
    display: flex;
    word-wrap: break-word;
    word-break: break-word;
}

section.body h3,
section.terms_and_conditions h3,
section.schedule h3 {
    si text-align: left;
    text-transform: uppercase;
}

section.body p,
section.terms_and_conditions p {
    word-wrap: break-word;
    word-break: break-word;
}

section.signatures img {
    height: 50px;
}

.no-margin {
    margin: 0;
}

.margin-top {
    margin-top: 30px;
}

.margin-top-small {
    margin-top: 10px;
}

.no-margin-top {
    margin-top: 0;
}

.m_25 {
    margin: 3.5px 0px;
}

.margin-bottom {
    margin-bottom: 10px;
}

.padding-horizontal {
    padding: 0 30px;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.float-center {
    justify-content: space-around;
}

.float-right {
    justify-content: flex-end;
}

.ph-row div {
    border-radius: 8px;
}

.btn {
    position: relative;
    display: inline-block;
    margin: 10px auto;
    padding: 12px 24px;
    overflow: hidden;
    border: none;
    outline: none;
    border-radius: 2px;
    background-color: #2ecc71;
    color: #ecf0f1;
    font-size: 12px;
    font-weight: 600;
    transition: background-color 0.3s;
    text-transform: uppercase;
    cursor: pointer;
}

.btn:not(:disabled):hover,
.btn:not(:disabled):focus {
    background-color: #27ae60;
}

.btn.clear,
.btn.clear:not(:disabled):hover,
.btn.clear:not(:disabled):focus {
    background-color: transparent;
    box-shadow: none;
    color: #424242;
}

button:disabled {
    opacity: .6;
}

.btn>* {
    position: relative;
}


/* .btn:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 0;
    padding-top: 0;
    border-radius: 100%;
    background-color: rgba(236, 240, 241, 0.3);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.btn:active:before {
    width: 120%;
    padding-top: 120%;
    transition: width 0.2s ease-out, padding-top 0.2s ease-out;
} */

.loading {
    position: relative;
    pointer-events: none;
}

.loading::before {
    content: '';
    position: absolute;
    background: inherit;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: inherit;
    opacity: .9;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -6px;
    margin-left: -6px;
    width: 12px;
    height: 12px;
    border: 2px solid transparent;
    border-top-color: inherit;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.text-wrap {
    word-wrap: break-word;
    word-break: break-word;
}

.strip {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    line-height: 50px;
    background: rgb(205, 218, 32);
    color: #fff;
    text-align: right;
    padding: 0 1rem;
}

.strip.green {
    background: #27ae60;
}

.strip.red {
    background: crimson;
}

.accept_contract {
    margin-top: 10px;
    width: 100%;
}

.border-bottom {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 1rem;
}

.justify-between {
    display: flex;
    justify-content: space-between;
}

button:disabled {
    cursor: not-allowed;
}