/*
* Widths and heights
*/

.w-auto {
    width:auto;
}

.w-100 {
    width:100%;
}

.w-90 {
    width:90%;
}

.w-85 {
    width:85%;
}

.w-80 {
    width:80%;
}

.w-75 {
    width:75%;
}

.w-70 {
    width:70%;
}

.w-60 {
    width:60%;
}

.w-50 {
    width:50%;
}

.w-45 {
    width:45%;
}

.w-40 {
    width:40%;
}

.w-30 {
    width:30%;
}

.w-25 {
    width:25%;
}

.w-20 {
    width:20%;
}

.min-w-50 {
    min-width:50%;
}


.max-w-70 {
    max-width:70%;
}

.max-w-80 {
    max-width:80%;
}



.max-w-10vw {
    max-width:10vw;
}

.max-w-15vw {
    max-width:15vw;
}


.h-auto {
    height:auto;
}

.h-100 {
    height:100%;
}

.h-90 {
    height:90%;
}

.h-85 {
    height:85%;
}

.h-80 {
    height:80%;
}

.h-70 {
    height:70%;
}

.h-60 {
    height:60%;
}

.h-50 {
    height:50%;
}

.h-40 {
    height:40%;
}

.h-30 {
    height:30%;
}

.h-20 {
    height:20%;
}

.h-10 {
    height:10%;
}


.h-150px {
    height:150px;
}

.h-300px {
    height:300px;
}

.min-h-1050px-i {
    min-height:1050px;
}

.min-h-900px-i {
    min-height: 900px!important;
}

.min-h-850px-i {
    min-height: 850px!important;
}

.min-h-950px {
    min-height:950px;
}


.max-h-450px {
    max-height:450px;
}

.max-h-600px {
    max-height:600px;
}

.max-h-80 {
    max-height:80%;
}

.h-unset {
    height:unset!important;
}

/*
* paddings and margins
*/

.p-05rem {
    padding:.5rem;
}

.p-1rem {
    padding:1rem;
}


.pt-1rem {
    padding-top:1rem
}


.pr-1rem {
    padding-right:1rem;
}


.pl-1rem {
    padding-left:1rem;
}


.pb-1rem {
    padding-bottom:1rem;
}



.ml-auto {
    margin-left:auto;
}

.ml-1rem {
    margin-left:1rem;
}

.ml-2rem {
    margin-left:2rem;
}

.ml-5rem {
    margin-left:5rem;
}


.mr-auto {
    margin-right:auto;
}

.mr-2rem {
    margin-right:2rem;
}

.mr-5rem {
    margin-right:5rem;
}


.m-05rem {
    margin-top:0.5rem;
}

.mt-1rem {
    margin-top:1rem;
}

.mt-2rem {
    margin-top:2rem;
}



.mb-2rem {
    margin-bottom:2rem;
}


.ml-2rem {
    margin-left: 2rem;
}

.m-auto {
    margin:auto;
}

@media (max-width: 1023px) {
    .ml-5rem,
    .mr-5rem {
        margin-left: 0;
        margin-right: 0;
    }
}

/*
* Displayes
*/

.display-block {
    display:block;
}
/*
* Positions
*/

.position-absolute {
    position:absolute;
}

.position-relative {
    position:relative;
}

/*
* Flex
*/
.flex {
    display:flex;
}

.flex-row {
    flex-direction: row;
}

.flex-col {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.justify-content-center {
    justify-content: center;
}

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

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

.justify-content-right {
    justify-content: right;
}

.justify-content-left {
    justify-content: left;
}

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

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


.align-items-start {
    align-items: flex-start;
}

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



/*
* Shadows
*/

.bshadow-left-1 {
    -webkit-box-shadow: -9px 0px 10px -4px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: -9px 0px 10px -4px rgba(0, 0, 0, 0.5);
    box-shadow: -9px 0px 10px -4px rgba(0, 0, 0, 0.5);
}


.bshadow-right-1 {
    -webkit-box-shadow: 9px 0px 10px -4px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 9px 0px 10px -4px rgba(0, 0, 0, 0.5);
    box-shadow: 9px 0px 10px -4px rgba(0, 0, 0, 0.5);
}

/*
* Text Shadows
*/
.text-shadow {
    text-shadow: 1px 2px 1px #4b4b4b!important;
}


/*
* Fonts
*/

.font-size-1rem {
    font-size:1rem;
    line-height:1.2rem;
}

.font-size-20px {
    font-size:20px;
    line-height:22px;
}

.font-size-26px {
    font-size:26px;
    line-height:28px;
}

.font-weight-200 {
    font-weight:200;
}

.font-weight-300 {
    font-weight:300;
}

.font-weight-400 {
    font-weight:400;
}

.font-weight-500 {
    font-weight:500;
}

.font-weight-700 {
    font-weight:700;
}

.font-weight-800 {
    font-weight:800;
}

/*
* Text aligns
*/

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

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

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


.opacity-75 {
    opacity:0.75;
}

/*
* Text colors
*/

.text-ov-blue {
    color:rgba(150,201,255,1);
}

.text-ov-green {
    color:rgba(61,216,58,1);
}

/*
* Inputs
*/

/*
* Inputs
*/

input[type="text"],
input[type="email"],
input[type="tel"]
{
    padding:0.5rem;
    margin:0.5rem 0;

    font-size:1.2rem;
    line-height: 1.2rem;

    color:rgba(255,255,255,1);

    border:1px solid var(--col-primary-green);
    border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;

    background:var(--col-primary-blue);

    outline:none;
}

input[type="date"],
input[type="time"] {
    padding:0.5rem;
    margin:0.5rem 0;

    min-height:2rem;

    font-size:1.1rem;
    line-height:1.2rem;
    color:rgba(255,255,255,1);
    border:1px solid var(--col-primary-green);
    border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
    background:var(--col-primary-blue);
    outline:none;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input[type="radio"] {
    width:18px;
    height:18px;
    accent-color: var(--col-primary-green);
    margin-right:0.35rem;
    cursor:pointer;
}

/* tone down native pickers so they fit the color scheme */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(1) brightness(1.5);
    opacity: 0.8;
}

input[type="date"]::-moz-focus-inner,
input[type="time"]::-moz-focus-inner {
    border: 0;
    padding: 0;
}

textarea {
    padding:0.5rem;
    margin:0.5rem 0;

    font-size:1.2rem;
    line-height: 1.2rem;

    color:rgba(255,255,255,1);

    border:1px solid var(--col-primary-green);
    border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;

    background:var(--col-primary-blue);

    outline:none;

    resize: none;
}
