:root {
    /*    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Nunito", sans-serif;
    --nav-font: "Inter", sans-serif;*/
    --default-font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Inter", sans-serif;
    --nav-font: "Inter", sans-serif;
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}


.form-control {
    background-color: #f0f0f0;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
    font-family: var(--heading-font);
    background-image: url("../images/green_bg_wide3.png");
    background-attachment: fixed;
    background-color: #f1f1f1;
}

h1, h2 {
    color: white;
}

.brand-primary {
    color: #028C8C;
    margin-bottom: 0px;
}

.leafy {
    width: 40px;
    background-color: #E9F3F3;
    border-radius: 4px;
}

.hero-block {
    border: red solid 1px;
}
.hero-block-left {
   align: left;
}
.hero-block-right {
   align:right;
}



.bg-grey{
    background-color: #f0f0f0 !important;
}

.btn-primary {
    color: white;
    background-color: #028C8C;
    border-color: #0d6efd;
}

    .btn-primary:hover {
        color: white;
        background-color: #00A3A3;
        border-color: #0d6efd;
    }

.btn-secondary {
    color: white;
    background-color: red;
    border-color: #0d6efd;
}

.panel-primary {
    background-color: #1D8282;
}

.panel-primary-highlight {
    background-color: #338E8E;
}

.navbar {
    /*border: 1px solid red;*/
  /*  width: 80%;
    border-radius: 5px;*/
}

.navbar-nav {
    border-radius: 15px;
}

.page-footer {
    padding-left: 30px;
    padding-right: 30px;
}

.rounded {
    border-radius: 15px !important;
}

.rep-image {
    border-radius: 15px !important;
}

.light-grey{
    background-color: #f0f0f0;
}

.vertical-shrink {
    margin-right: 3px;
    margin-left: 3px;
}

.vertical-shrink {
    padding-right: 3px;
    padding-left: 3px;
}

.repair-icon {
    height: 40px;
    width: 40px;
}

.form-field {
    background-color: #f0f0f0;
    border-radius: 15px;
    border: 4px solid #f0f0f0;
    padding-left:10px;
}

.form-hdr {
    color: #333333;
    margin-bottom: 0;
}

.form-field-right {
    background-color: #f0f0f0;
    border-radius: 15px;
    border: 4px solid #f0f0f0;
    padding-right: 10px;
}

.operative-pic {
    max-height: 208px;
    max-width: 106px;
    border-radius: 50%;
    align-items: center;
}

.op-pic-container {
    border: red solid 1px;
    align-items: center; 
}

.rep-panel {
    height:150px;
    vertical-align:central;
}

.brand-title {
    font-weight:bold;
}

.inner-panel {
    padding-right: 13px;
    padding-left: 3px;
}

.ui-button {
    width: 80px;
    margin-bottom: 2px;
}

/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/

.rep-container {
   /* border: 1px;*/
    /*order-color: grey;*/
    /*border-style: solid;*/
    border-radius: 14px;
    background-color: white;
    margin-bottom: 10px;
}

.rep-title {
    border-bottom: 1px;
    border-color: grey;
}

.bg-white {

    background-color:white;
}


.main-panel {
    border-radius: 15px;
    /*border: 2px solid #73AD21;*/
}

.navbar-brand {
    color: white;
    /*border: 2px solid red;*/
}

.nav-link {
    color:white;
}

.border-lightgrey {
    border: 2px solid #f0f0f0;
}
/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .section-title {
    padding-bottom: 20px;
}

.faq-container {
    background-color: white;
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 15px;
   
}

.faq-item {
    margin-right:10px; 
    margin-left:10px;
    background-color: #f0f0f0;
}

.faq .faq-container .faq-item {
    position: relative;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid lightgrey;
    border-radius: 5px;
    overflow: hidden;
    /* background-color: white;*/
}

    .faq .faq-container .faq-item:last-child {
        margin-bottom: 0;
    }

    .faq .faq-container .faq-item h3 {
        font-weight: 600;
        font-size: 16px;
        line-height: 24px;
        margin: 0 30px 0 0;
        transition: 0.3s;
        cursor: pointer;
        display: flex;
        align-items: center;
    }

        .faq .faq-container .faq-item h3 .num {
            color: var(--accent-color);
            padding-right: 5px;
        }

        .faq .faq-container .faq-item h3:hover {
            color: var(--accent-color);
        }

    .faq .faq-container .faq-item .faq-content {
        display: grid;
        grid-template-rows: 0fr;
        transition: 0.3s ease-in-out;
        /*visibility: hidden;*/
        display:none;
        opacity: 0;
    }

        .faq .faq-container .faq-item .faq-content p {
            margin-bottom: 0;
            overflow: hidden;
        }

    .faq .faq-container .faq-item .faq-toggle {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 16px;
        line-height: 0;
        transition: 0.3s;
        cursor: pointer;
    }

        .faq .faq-container .faq-item .faq-toggle:hover {
            color: var(--accent-color);
        }

.faq .faq-container .faq-active {
    /*background-color: #F9FBFC;*/
    border-color: #028C8C;
}

    .faq .faq-container .faq-active h3 {
        color: var(--accent-color);
    }

    .faq .faq-container .faq-active .faq-content {
        grid-template-rows: 1fr;
        /*visibility: visible;*/
        transition: 0.3s ease-in-out;
        display: block;
        opacity: 1;
        padding-top: 10px;
    }

    .faq .faq-container .faq-active .faq-toggle {
        transform: rotate(90deg);
        color: var(--accent-color);
    }


.clientlogo {
    background-image: url(/images/axis_logo.png);
    background-repeat: no-repeat;
    width: 154px;
    height: 82px;
}
    
.input-group-append {
    cursor: pointer;
}


.field-validation-error {

    color: red;

}

.debug {
    color: white;
    background-color: darkgray;
    border-radius: 4px;
}




.repair-image {
    max-width: 100%;
  
    min-width: 183px;
    /*max-height: 123px;*/
}

.griditem {
    /*border:2px solid red;*/
   /* max-width: 183px;
    max-height: 143px;
    padding: 5px;
    margin-bottom: 3px;*/
}

.thumbnail {
    display: block;
    padding-bottom: 100%;
    position: relative;
}

    .thumbnail > .img-responsive {
        max-width: 100%;
        max-height: 100%;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
    }