main {
    padding-top: 11.1rem
}

.hor-ver-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.clearfix:before, .clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.squarebox,
.semisquarebox,
.rectanglebox {
    position: relative;
    overflow: hidden;
}

.squarebox:before,
.semisquarebox:before,
.rectanglebox:before {
    content: "";
    display: block;
}

.squarebox:before {
    padding-top: 100%;
}

.semisquarebox:before {
    padding-top: 60%;
}

.rectanglebox:before {
    padding-top: 50%;
}

/* ========================================== */

a {
    color: #007493;
    text-decoration: none;
}

h1 {
    font-size: 2rem;
    line-height: 2.4rem;
}

h2 {
    font-size: 1.8rem;
    line-height: 2.2rem;
}

h3, h4, h5 {
    font-size: 1.6rem;
    line-height: 2rem;
}

@media (min-width: 992px) {
    h1 {
        font-size: 2.4rem;
        line-height: 3rem;
    }

    h2 {
        font-size: 2.2rem;
        line-height: 2.6rem;
    }

    h3 {
        font-size: 2rem;
        line-height: 2.4rem;
    }

    h4 {
        font-size: 1.8rem;
        line-height: 2.2rem;
    }
}

main.container {
    position: relative;
    z-index: 0;
}

.container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    width: 100%;
}

.container.nopadding {
    padding: 0;
}

@media (min-width: 576px) {
    .container {
        max-width: 576px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 992px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1320px) {
    .container {
        max-width: 1310px;
    }
}

.btn {
    font-size: 1.6rem;
    padding: 0 2.5rem;
    text-decoration: none;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-align: center;
    height: 4.5rem;
    font-weight: 500;
    border-radius: .4rem;
}

.btn-outlined {
    background: none;
    border: 0.2rem solid;
}

.btn-outlined-primary {
    border-color: #007493;
    color: #007493;
}

.btn-outlined-primary:hover {
    background: #007493;
    border-color: #007493;
    color: #fff;
}

.btn-outlined-secondary {
    border-color: #1eade9;
    color: #1eade9;
}

.btn-outlined-secondary:hover {
    background: #1eade9;
    color: #fff;
}

.btn-solid {
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    border: 0;
}

.btn-solid-primary {
    background: #007493;
    color: #fff;
}

.btn-solid-primary:hover {
    background: #005b73;
    color: #fff;
}

.btn-solid-primary-on-dark:hover {
    background: transparent;
    border-color: #fff;
}

.btn-solid-secondary {
    background: #1eade9;
    border: none;
}

.btn-solid-secondary:hover {
    background: #159fd8;
    color: #fff;
}

.btn-sm {
    font-size: 1.4rem;
    padding: 0 1.75rem;
    height: 3.6rem;
}

.btn-lg {
    font-size: 1.6rem;
    padding: 0 2.5rem;
    height: 6rem;
}

@media (min-width: 992px) {
    .btn-lg {
        font-size: 1.8rem;
        padding: 2rem 3rem;
    }
}

.table table {
    width: 100%;
}

.table th:first-child, .table td:first-child {
    padding-left: 0;
}

.table th:last-child, .table td:last-child {
    padding-right: 0;
}

.table th {
    padding: 0.75rem;
}

.table td {
    padding: 0.5rem 0.75rem;
}

@media (max-width: 991px) {
    .table {
        overflow-x: auto;
    }

    .table table {
        width: 200%;
    }
}

.box {
    background: #fff;
    border: 0.1rem solid #e5e5e5;
    border-radius: 1rem;
    -moz-border-radius: 1rem;
    -webkit-border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.box:last-child {
    margin-bottom: 0;
}

.capitalize {
    text-transform: capitalize;
}

@media (min-width: 992px) {
    .box {
        padding: 2rem;
    }
}

.alertmessage {
    position: relative;
    display: inline;
    color: #ea1a2c;
    margin-left: 0.3rem;
    margin-bottom: -0.05rem;
}

.alertmessage .warning-list {
    position: absolute;
    background: #fdeff0;
    border-radius: 0.5rem;
    -moz-border-radius: 0.5rem;
    -webkit-border-radius: 0.5rem;
    border: 0.1rem solid #ea1a2c;
    padding: 0.5rem 0.75rem;
    color: #000;
    z-index: 1;
    width: 20rem;
    top: 2rem;
    left: 50%;
    margin-left: -10rem;
    display: none;
}

.alertmessage .warning-list i {
    font-family: "Roboto", sans-serif;
    display: block;
    font-size: 1.1rem;
    font-style: normal;
    padding: 0.25rem 0;
    line-height: 1.4rem;
}

.alertmessage .warning-list i:before {
    content: "ALERT:";
    color: #ea1a2c;
}

.alertmessage .warning-list:before {
    content: "";
    position: absolute;
    left: 50%;
    top: -0.6rem;
    border-width: 0 0.7rem 0.7rem;
    border-style: solid;
    border-color: #fdeff0 transparent;
    display: block;
    width: 0;
    margin-left: -0.7rem;
    z-index: 1;
}

.alertmessage .warning-list:after {
    content: "";
    position: absolute;
    left: 50%;
    top: -0.7rem;
    border-width: 0 0.7rem 0.7rem;
    border-style: solid;
    border-color: #ea1a2c transparent;
    display: block;
    width: 0;
    margin-left: -0.7rem;
    z-index: 0;
}

.alertmessage:hover .warning-list {
    display: block;
}

/*.default-profile-photo {*/
/*background: url("/global/img/page-sprite-imgs.png") no-repeat 0 -4.4rem;*/
/*width: 4.5rem;*/
/*height: 4.5rem;*/
/*position: absolute;*/
/*border-radius: 8rem;*/
/*-moz-border-radius: 8rem;*/
/*-webkit-border-radius: 8rem;*/
/*}*/

.form .field-col {
    margin-bottom: 1.5rem;
}

.form input {
    width: 100%;
    border-radius: 0.4rem;
    -moz-border-radius: 0.4rem;
    -webkit-border-radius: 0.4rem;
    border: 0.1rem solid #ddd;
    font-size: 1.6rem;
    padding: 1.25rem 1.5rem;
}

.form input[type=checkbox], .form input[type=radio] {
    padding: 0;
    width: 1.8rem;
    height: 1.8rem;
    border: 0;
}

.select2-container--default .select2-selection--single {
    border-color: #ddd;
    border-radius: .4rem;
    height: auto;
    padding: 5px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    border-left: 1px solid #DDD;
}