/*
    Theme Name: Boston Higashi Registration
    Theme URI: https://www.sperlinginteractive.com
    Version: 1.0
    Author: Sperling Interactive
  Theme URI: https://www.sperlinginteractive.com
*/

/*------------------------------------*\
    Example of Using Root Variable 
    :root {
        --blue: #0000FF          
    }
    .test-element {
        color: var(--blue)
    }
\*------------------------------------*/

:root {
    --lightblue: #3075b6;
    --darkblue: #141f3e;
    --yellow: #fec00f;
}

/* global box-sizing */
*,
*:after,
*:before {
    box-sizing: border-box;
    font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* html element 62.5% font-size for REM use */
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    color: #444;
    background-color: #f5f5f5;
    font: 300 11px/1.4 "Hind Madurai", sans-serif;
}

/* clear */
.clear:before,
.clear:after {
    content: " ";
    display: table;
}

.clear:after {
    clear: both;
}

.clear {
    *zoom: 1;
}

img {
    max-width: 100%;
    vertical-align: bottom;
    height: auto;
}

/* Lightspeed Lazy load fade in */
img[data-lazyloaded] {
    opacity: 0;
}

img.litespeed-loaded {
    -webkit-transition: opacity 0.5s linear 0.2s;
    -moz-transition: opacity 0.5s linear 0.2s;
    transition: opacity 0.5s linear 0.2s;
    opacity: 1;
}

a {
    text-decoration: none;
    color: var(--darkblue);
}

a.register-link {
    color: var(--darkblue);
    text-decoration: underline;
}

a:hover {
}

a:focus {
    outline: 0;
}

a:hover,
a:active {
    outline: 0;
}

input:focus {
    border: 1px solid #04a4cc;
    outline: 0;
}

p,
ul,
ol {
    font-size: 1.6rem;
}

h1 {
    font-size: 3.6rem;
}

h2 {
    font-size: 3.2rem;
}

h3 {
    font-size: 2.8rem;
}

h4 {
    font-size: 2.4rem;
}

h5 {
    font-size: 2rem;
}

h6 {
    font-size: 1.6rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "warnock-pro", serif;
}

blockquote {
    margin: 25px 0;
    padding: 25px 0 25px 5vw;
    font-style: italic;
    border-top: 1px solid;
    border-bottom: 1px solid;
    font-weight: 700;
}

/* button */
.button,
input.searchsubmit.wp-block-search__button,
a#e2pdf-download {
    display: inline-flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 400;
    background: #fec00f;
    padding: 5px 15px;
    position: relative;
    /* z-index: 1; */
    overflow: hidden;
    border-radius: 5px;
    border: 0;
}
input.searchsubmit.wp-block-search__button,
a#e2pdf-download {
    color: #141f3e;
    transition: ease-in .3s;
}

input.searchsubmit.wp-block-search__button:hover,
a#e2pdf-download:hover{
    background-color: #141f3e;
    color: #fff;
}

.button.bg-blue {
    background: #3075b6;
}

.button.bg-blue span {
    border-color: #fff;
}

.button.bg-blue span,
.button.bg-blue i {
    color: #fff;
}

.button.bg-dark-blue {
    background: #141f3e;
}

.button.bg-dark-blue span {
    border-color: #fff;
}

.button.bg-dark-blue span,
.button.bg-dark-blue i {
    color: #fff;
}
a.delete-entry {
    display: inline-flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 400;
    background: #e12d2d;
    color: white;
    padding: 5px 15px;
    position: relative;
    /* z-index: 1; */
    overflow: hidden;
    border-radius: 5px;
    border: 0;
}

.button span {
    padding-right: 15px;
    border-right: 1px solid #141f3e;
    position: relative;
    z-index: 1;
    transition: ease-in 0.4s;
    color: #141f3e;
    line-height: 1.8;
}

.button:hover span {
    border-color: #fff;
    color: #fff;
}

.button:hover i {
    color: #fff;
}

.button i {
    z-index: 1;
    color: #141f3e;
    padding-left: 15px;
    position: relative;
    transition: ease-in 0.4s;
}

.button:hover {
    color: #fff;
}

.button:hover:before {
    left: 0%;
    right: auto;
    width: 100%;
}

.button:before {
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
    width: 0px;
    z-index: 1;
    content: "";
    color: #fff !important;
    background: #141f3e;
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}

.button.bg-dark-blue:hover:before {
    background: #3075b6;
}

.button.bg-dark-blue:hover span {
    border-color: #fff;
}

.button.bg-dark-blue:hover span,
.button.bg-dark-blue:hover i {
    color: #fff;
}

.frm_submit button.frm_button_submit{
    margin-right: 10px !important;
}

/* Formidable Table Buttons */
.frm-alt-table a.button{
    transition: ease-in .3s;
}

.frm-alt-table a.button:hover{
    background-color: #141f3e;
    color: #fff;
}

.frm-alt-table a.button:before{
    display: none;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/
/* wrapper */
.wrapper {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    min-height: 100vh;
    position: relative;
    width: 100%;
    max-width: 2560px;
}

.container {
    max-width: 1280px;
    align-self: center;
    flex: 1 auto;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    padding: 0 20px;
}

/* header */
.header {
    background-color: #fff;
    position: relative;
    max-height: 122px;
    box-shadow: 0px 3px 6px rgba(0,0,0,.20);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.logo-img {
    backface-visibility: hidden;
    height: 140px;
}

.nav ul {
    padding: 0;
    list-style: none;
    margin: 77px 0 0 0;
    display: flex;
}

/* nav */
.nav a {
    color: var(--darkblue);
    font-size: 1.8rem;
    padding: 10px;
    display: block;
    font-weight: 400;
}

/* sidebar */
.sidebar {
}

/* footer */
.footer {
    background: var(--lightblue);
    color: #fff;
    padding: 20px 0;
}

.footer p{
    margin: 0;
}

.footer a {
    color: white;
}

.pagination {
    font-size: 1.6rem;
}

.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    height: auto;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*------------------------------------*\
    PAGES
\*------------------------------------*/
.page-wrap {
    margin-top: 75px;
}

.page-wrap h1 {
    margin-top: 0;
}

.login-column {
    width: 300px;
    padding: 10px;
    margin: 0 auto 50px;
}

.login-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
}

.login-box :first-child {
    margin-top: 0;
}

.login-box :last-child {
    margin-bottom: 0;
}

.login_lost_pw {
    margin: 0 !important;
}

div#loginform-0 fieldset {
    padding: 0;
}

/*------------------------------------*\
    STUDENT APPLICATIONS
\*------------------------------------*/
.applications-header {
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.application-row + .application-row {
    border-top: 1px solid #ddd;
}

.application-row {
    padding: 10px 20px;
}

.app-loader {
    position: relative;
}

.app-loader.loading:after {
    content: "Creating New Application...";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgb(239 239 239 / 80%);
    z-index: 99;
    display: flex;
    justify-content: center;
    font-size: 1.8rem;
}

.application-row.row-header {
    border-bottom: 1px solid;
}

#draft-warning p {
    color: red;
    font-weight: bold;
}
.frm_pagination_cont.frm_ajax_pagination_cont {
    text-align: center;
}

.frm_pagination_cont.frm_ajax_pagination_cont a {
    font-size: 2rem;
    color: #141f3e;
}

/*------------------------------------*\
    ACF GOOGLE MAP
\*------------------------------------*/

.acf-map {
    width: 100%;
    height: 100%;
    min-height: 400px;
    max-height: 600px;
    border: #ccc solid 1px;
    margin: 20px 0;
}

/* Fixes potential theme css conflict. */
.acf-map img {
    max-width: inherit !important;
}

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/
@media only screen and (min-width: 320px) {
}

@media only screen and (min-width: 480px) {
}

@media only screen and (min-width: 769px) {
    .logo-img{
        height: 170px;
    }
}

@media only screen and (min-width: 1024px) {
}

@media only screen and (min-width: 1140px) {
}

@media only screen and (min-width: 1280px) {
}

/*------------------------------------*\
    MISC
\*------------------------------------*/
::selection {
    background: #04a4cc;
    color: #fff;
    text-shadow: none;
}

::-webkit-selection {
    background: #04a4cc;
    color: #fff;
    text-shadow: none;
}

::-moz-selection {
    background: #04a4cc;
    color: #fff;
    text-shadow: none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/
.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%;
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption .wp-caption-text,
.gallery-caption {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

.sticky {
}

.bypostauthor {
}

/*------------------------------------*\
    PRINT
\*------------------------------------*/
@media print {
    * {
        background: transparent !important;
        box-shadow: none !important;
        color: #000 !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }

    pre,
    blockquote {
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    @page {
        margin: 0.5cm;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }

    .nav,
    .sidebar,
    .home-slider,
    #respond {
        display: none;
    }

    @page {
        margin: 2cm;
    }
}
