/*==================================
    Fonts
==================================*/

html, body {
    overflow-x: hidden;
}

.modal-open {
    padding-right: 0px !important;
}

body {
    font-family: 'Exo 2', sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.5;
    word-wrap: break-word;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.9);
    background-image: url(../../files/media/cranberries_134.jpg);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-weight: 900;
    word-wrap: break-word;
    word-break: break-word;
}

.custom-font {
    font-family: 'Exo 2', sans-serif;
    text-transform: none;
    font-weight: 900;
}

blockquote {
    border-left: 5px solid #ececec;
    padding: 15px 30px;
    font-style: italic;
}

blockquote p::before, blockquote p::after {
    content: '"';
}

/*==== End of Fonts ====*/


/*==================================
    Bootstrap colors override
==================================*/

/*Links*/

a {
    color: #ffffff;
}

a:hover,
a:focus,
a:active {
    color: #8b9274;
    text-decoration: none;
}

.adminaction,
.admin-blockactions {
    color: #222222 !important;
    text-shadow: none;
}

/*Text colors*/

.text-primary {

}

.text-secondary {

}

.text-light {

}

.text-dark {
    color: #222222 !important;
}

.text-muted {
    color: rgba(255,255,255,0.9) !important;
}

.text-white {

}


/*Background colors*/

.bg-primary {
    background: #536028 !important;
}

.bg-secondary {

}

.bg-light {

}

.bg-dark {
    background: #142106 !important;
}

.bg-white {

}

/*==== End of Bootstrap colors override ====*/

/*==================================
    Buttons
==================================*/

/* Default button styling */
.btn {
    /* Display and box model */
    display: inline-block;
    padding: 1rem 2.6rem;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* Typography */
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    /* Border and border radius */
    border-radius: 0;
    border: 1px solid transparent;
    text-transform: uppercase;
    /* Transitions */
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    cursor: pointer;
}

.btn:hover, .btn:focus {
    text-decoration: none;
}

.btn:focus, .btn.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn.disabled, .btn:disabled {
    opacity: 0.65;
    cursor: default;
}

.btn:not(:disabled):not(.disabled):active, .btn:not(:disabled):not(.disabled).active {
    background-image: none;
}

a.btn.disabled,
fieldset:disabled a.btn {
    pointer-events: none;
}


/* Primary button */

.btn-primary {
    color: #ffffff;
    background-color: #536028;
    border-color: #536028;
}

.btn-primary:hover {
    color: #ffffff;
    background-color: #8b9274;
    border-color: #8b9274;
}

.btn-primary:focus, .btn-primary.focus {
    box-shadow: 0 0 0 0.2rem rgba(21, 21, 45, 0.5);
    color: #ffffff;
}

.btn-primary.disabled, .btn-primary:disabled {
    color: #fff;
    background-color: #131313;
    border-color: #131313;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
    color: #ffffff;
    background-color: #536028;
    border-color: #536028;
}

.btn-primary:not([disabled]):not(.disabled).active,
.btn-primary:not([disabled]):not(.disabled):active,
.show>.btn-primary.dropdown-toggle,
.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(21, 21, 45, 0.5);
    color: #ffffff;
}

/* Secondary button */

.btn-secondary {
    color: #ffffff;
    background-color: #131313;
    border-color: #131313;
}

.btn-secondary:hover {
    color: #ffffff;
    background-color: #2d2d2d;
    border-color: #2d2d2d;
}

.btn-secondary:focus, .btn-secondary.focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.25);
}

.btn-secondary.disabled, .btn-secondary:disabled {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active,
.show > .btn-secondary.dropdown-toggle {
    color: #ffffff;
    background-color: #131313;
    border-color: #131313;
}

.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.25);
}


/* Outline primary button */

.btn-outline-primary {
    color: #131313;
    background-color: transparent;
    background-image: none;
    border-color: #131313;
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: #131313;
    border-color: #131313;
}

.btn-outline-primary:focus, .btn-outline-primary.focus {
    box-shadow: 0 0 0 0.2rem rgba(21, 21, 45, 0.5);
}

.btn-outline-primary.disabled, .btn-outline-primary:disabled {
    color: #131313;
    background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: #131313;
    border-color: #131313;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(21, 21, 45, 0.5);
}


/* Outline secondary button */

.btn-outline-secondary {
    color: #fff;
    background-color: transparent;
    background-image: none;
    border-color: #fff;
}

.btn-outline-secondary:hover {
    color: #fff;
    background-color: #131313;
    border-color: #131313;
}

.btn-outline-secondary:focus, .btn-outline-secondary.focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
    color: #6c757d;
    background-color: transparent;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active,
.show > .btn-outline-secondary.dropdown-toggle {
    color: #fff;
    background-color: #131313;
    border-color: #131313;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

/* Outline light button */

.btn-outline-light {
    color: #ffffff;
    border-color: #ffffff;
}

.btn-outline-light:focus, .btn-outline-light.focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}

a:not([href]):not([tabindex]),
a:not([href]):not([tabindex]):focus,
a:not([href]):not([tabindex]):hover {
    color: #ffffff;
}

a:not([href]):not([tabindex]):hover {
    cursor: pointer;
}

.page-item.active .page-link {
    background-color: #536028;
    border-color: #536028;
}

.page-link {
    color: #536028;
}

.page-item:first-child .page-link {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.page-item:last-child .page-link {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.page-link:focus, 
.page-link:hover {
    color: #8b9274;
}

/*Custom button*/

.custom-btn {
    bottom: 0;
    right: 0;
    max-width: 92%;
    display: inline-block;
    white-space: normal;
    position: absolute;
    padding: 1rem 1.6rem 1rem 4.6rem;
    -webkit-clip-path: polygon(70px 0,100% 0,100% 100%,0 100%);
    clip-path: polygon(70px 0,100% 0,100% 100%,0 100%);
}

/*==== End of Buttons ====*/


/* Default form control */

.form-control {
    display: block;
    width: 100%;
    padding: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #cbcaca;
    border-radius: 0;
    font-size: 0.85rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

select.form-control:not([size]):not([multiple]) {
    height: 54px;
}

.alert {
    border-radius: 0;
}

/*==== End of Forms ====*/


/*==================================
    Resets and default
==================================*/

img {
    max-width: 100%;
}

iframe {
    max-width: 100%;
}

.overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.overlay-primary {
    background: rgba(17, 17, 17, 0.3);
}

.overlay-secondary {
    background: rgba(17, 17, 17, 0.95);
}

.text-shadow {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

hr {
    border-top: 1px solid rgba(255,255,255,.5);
}

/*==== End of Resets and default ====*/


/*==================================
    Help classes
==================================*/

.clear {
    clear: both;
}

.centered {
  text-align: center;
}

.bold {
    font-weight: 600;
}

/*==== End of Help Classes ====*/

/*==================================
    Datepicker
==================================*/

#ui-datepicker-div {
    background: #536028;
    color: #ffffff;
    border: 1px solid #536028;
}

.ui-widget {
    font-family: inherit;
}

.ui-datepicker-header.ui-widget-header {
    border: none !important;
    background: none;
    color: #ffffff;
}

.ui-state-default, 
.ui-widget-content .ui-state-default, 
.ui-widget-header .ui-state-default {
    border: none;
    color: #ffffff;
    background: transparent;
    text-align: center;
}

.ui-state-highlight, 
.ui-widget-content .ui-state-highlight, 
.ui-widget-header .ui-state-highlight {
    background: none;
    color: #007bff;
}

.ui-corner-all, 
.ui-corner-bottom, 
.ui-corner-right, 
.ui-corner-br {
    border-bottom-right-radius: 0;
}

.ui-corner-all, 
.ui-corner-bottom, 
.ui-corner-left, 
.ui-corner-bl {
    border-bottom-left-radius: 0;
}

.ui-corner-all, 
.ui-corner-top, 
.ui-corner-right, 
.ui-corner-tr {
    border-top-right-radius: 0;
}

.ui-corner-all, 
.ui-corner-top, 
.ui-corner-left, 
.ui-corner-tl {
    border-top-left-radius: 0;
}

.ui-state-hover, 
.ui-widget-content .ui-state-hover, 
.ui-widget-header .ui-state-hover, 
.ui-state-focus, 
.ui-widget-content .ui-state-focus, 
.ui-widget-header .ui-state-focus {
    border: none;
    background: transparent url(images/ui-bg_glass_100_fdf5ce_1x400.png) 50% 50% repeat-x;
}

.ui-datepicker .ui-datepicker-next:hover {
    right: 2px;
}

.ui-datepicker .ui-datepicker-prev:hover, 
.ui-datepicker .ui-datepicker-next:hover {
    position: absolute;
    top: 2px;
    width: 1.8em;
    height: 1.8em;
}

.ui-datepicker .ui-datepicker-prev:hover {
    left: 2px;
}

.ui-datepicker .ui-datepicker-prev:hover, 
.ui-datepicker .ui-datepicker-next:hover {
    position: absolute;
    top: 2px;
    width: 1.8em;
    height: 1.8em;
}

.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon {
    background-image: url(../js/jquery/ui/images/ui-icons_ffffff_256x240.png);
}

/*==== End of Datepicker ====*/

/*==================================
    Management views
==================================*/

.management-view {
    background: #ffffff;
    color: #222222;
    padding: 0 30px;
    text-shadow: none;
    font-weight: 400;
}

/*==== End of Management views ====*/

/*==================================
    Responsive
==================================*/

@media screen and (max-width:767px) {

    .display-4 {
        font-size: 3rem;
    }
    
    .display-3 {
        font-size: 3.3rem;
    }

}

@media screen and (max-width:500px) {

    .display-4 {
        font-size: 2rem;
    }
    
    .display-3 {
        font-size: 2.3rem;
    }
    
}

/*==== End of Responsive ====*/
