/* Helper Classes, we love 'em! */


/*
 *	MARGINS
 */

.margin-top-small {
    margin-top: 15px !important;
}

.margin-top {
    margin-top: 35px !important;
}

.margin-top-2 {
    margin-top: 55px !important;
}

.margin-top-3 {
    margin-top: 75px !important;
}

.margin-bottom-small {
    margin-bottom: 15px;
}

.margin-bottom {
    margin-bottom: 35px !important;
}

.margin-bottom-2 {
    margin-bottom: 55px !important;
}

.margin-bottom-3 {
    margin-bottom: 75px !important;
}

.margin {
    margin: 35px !important;
}

.margin-small {
    margin: 15px !important;
}

.margin-bottom-0 {
    margin-bottom: 0 !important;
}

.margin-right-0 {
    margin-right: 0 !important;
}

.margin-top-0 {
    margin-top: 0 !important;
}

.margin-left-0 {
    margin-left: 0 !important;
}


/*
*	PADDING
*/

.padding-top-small {
    padding-top: 15px;
}

.padding-top {
    padding-top: 35px;
}

.padding-bottom-small {
    padding-bottom: 15px;
}

.padding-bottom {
    padding-bottom: 35px;
}

.padding-small {
    padding: 15px;
}

.padding {
    padding: 35px;
}


/*
*	DIVS
*/

.rounded {
    border-radius: 15px;
}

.round {
    border-radius: 50%;
}

.noscroll {
    overflow: hidden;
}


/*
*	Floats
*/

.float-left {
    float: left;
}

.float-right {
    float: right;
}


/*
*	Z-Index
*/

.z-1 {
    z-index: 1;
}

.z-2 {
    z-index: 2;
}

.z-3 {
    z-index: 3;
}

.z-4 {
    z-index: 4;
}

.z-5 {
    z-index: 5;
}

.z-6 {
    z-index: 6;
}

.z-7 {
    z-index: 7;
}

.z-8 {
    z-index: 8;
}

.z-9 {
    z-index: 9;
}

.z-10 {
    z-index: 10;
}


/*
*	POSITIONING
*/

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.flex-center,
.flexcenter {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.flex-center-left,
.flexcenterleft {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.flex-center-right,
.flexcenterright {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
}

.flex-top-right,
.flextopright {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    flex-direction: column;
}

.flex-center-row,
.flexcenterrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.flex-between-row,
.flexbetweenrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}

/*
*	MISC
*/

.clear {
    clear: both;
}

.maxwidth img {
    max-width: 100%;
}

.maxwidth {
    max-width: 100%;
    height: auto;
}

.maxwidth img {
    max-width: 100%;
    height: auto;
}

.smalltext {
    font-size: 13px;
}

.tinytext {
    font-size: 10px;
}

.shaddow {
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.dots {
    list-style-type: circle;
    margin-left: 15px;
}

strong {
    font-weight: 700 !important;
}

.strikethrough {
    text-decoration: line-through;
}

/* Text meant only for screen readers. */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
    background-color: #EEEEEE;
    clip: auto !important;
    clip-path: none;
    color: #444444;
    display: block;
    font-size: 1em;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar. */
}

.size-auto,
.size-full,
.size-large,
.size-medium,
.size-thumbnail {
    max-width: 100%;
    height: auto;
}


/*
*	BOOTSTRAP GRID EXTENSIONS
*/

.container-small, .container-large {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container-small {
        max-width: 490px;
    }
    
    .container-large {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container-small {
        max-width: 620px;
    }
    
    .container-large {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container-small {
        max-width: 780px;
    }
    
    .container-large {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container-small {
        max-width: 940px;
    }
    
    .container-large {
        max-width: 1140px;
    }
}

@media (min-width: 1600px) {
    .container-large {
        max-width: 1540px;
    }
}
