/* Application Styles.css */
 body.application {
     color: #202121;
     font-family: 'Montserrat', 'Open Sans', sans-serif;
}
 .application .outerwrap {
     padding-bottom: 0;
}
 div.onlineform {
     color: #000;
}
 .wrapper#headnav {
     height: 79px;
}
 #maincontent {
     color: #232323;
}
 #Footer {
     position: relative !important;
}
 #FooterTop {
     box-shadow: none !important;
     padding: 10px;
}
 #FooterTop p {
     padding: 0 !important;
     font-size: 13px;
}
 #FooterTop p #phonesep {
     display: none;
}
 @media screen and (max-width: 489px) {
     #FooterTop p #phonesep {
         display: inline-block;
         padding: 0;
         margin: 0;
    }
}
 .colorLegend {
     float: left;
     width: 30px;
     height: 30px;
}
 #soldColorLegend {
     background-color: rgb(124, 133, 140);
}
 #brickSizeError {
     color: #FF0000;
}
 .btn-primary-outlined {
     background-color: transparent;
     border: 2px solid #003898;
     border-radius: 3px;
     text-transform: none;
}
 .btn-priamry-outlined:hover, .btn-priamry-outlined:focus {
     background-color: #003898;
     color: #FFF;
}
 .brick_card {
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-direction: column;
     width: 228px;
     height: 230px;
     background-color: #FFF;
     border: 1px solid #7c858c;
     border-radius: 4px;
     box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 10%);
     margin-right: 30px;
     padding: 15px;
}
 .brick_card:last-child {
     margin-right: 0;
}
 .brick_card p {
     text-align: center;
}
 .soldBrick_card {
     display: flex;
     width: 280px;
     min-height: auto;
     justify-content: center;
     align-items: center;
     flex-direction: column;
     background-color: #FFF;
     border: 1px solid #7c858c;
     border-radius: 4px;
     box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 10%);
     padding: 15px;
     text-align: center;
}
 .soldBrick_card img#sharkLogoInscription {
     margin-bottom: 20px;
     display: block;
}
 #brick_status_container {
     justify-content: center;
     align-items: center;
}
 #brick_status_container .col {
     padding: 15px 50px;
     border-right: 1px solid gray;
}
 #brick_status_container .col:last-child {
     border-right: 0;
}
 #brick_status_container p {
     text-align: center;
}
 .brickNumber_card {
     border: 2px solid #997af7 !important;
     box-shadow: 2px 0px 4px -2px #997af7, 0px 2px 4px -2px #997af7, -2px 0px 3px -2px #997af7, 0px -2px 3px -4px #997af7 !important;
}
 .brickInscription {
     margin-top: 10px;
     display: inline-block;
}
 .zones_map {
     display: flex;
}
 .map_container {
     height: 400px;
     border-radius: 4px;
     border: 2px dashed lightgray;
}
 .imp-shape-highlighted {
     fill: rgba(0, 112, 205, 0.2) !important;
     stroke: rgba(0, 56, 147, 0.98) !important;
}
 .imp-shape-sold {
     fill: rgb(124 133 140 / 62%) !important 
}
 div[data-map-active] {
     display: none;
}
 div[data-map-active="active"] {
     display: block;
}
/* Form Sections - START */
 #noBrickSection {
     display: flex;
}
 #pendingBrickSection, #availableBrickSection, #soldBrickSection, #proceedTo2Step_section {
     display: none;
}
/* Form Sections - END */
 .bricksMapContainer {
     background-color: white;
     display: flex;
     position: relative;
     align-items: center;
     justify-content: center !important;
     min-height: 400px;
     overflow: hidden;
}
 #overallZones-map {
     display: flex;
     justify-content: center;
}
 #first-map-section, #second-map-section {
     display: none;
     min-width: 600px;
     min-height: 400px;
}
 .inactive-section {
     animation: fadeIn 0.4s cubic-bezier(0.39, 0.09, 1, 0.54);
}
/*Loading Screen*/
 .overlay_loading_container {
     display: flex;
     align-items: center;
}
 .overlay_loading_container {
     width: 100%;
     height: 100%;
     background-color: rgb(235 235 235 / 30%);
     position: absolute;
     justify-content: center;
     align-items: center;
     padding: 20px;
     z-index: 1;
}
 .loading-spinner {
     border: 4px solid rgba(0, 0, 0, 0.1);
     width: 36px;
     height: 36px;
     border-radius: 50%;
     border-left-color: #09f;
     animation: spinner-border 1s ease infinite;
}
 .loading-container {
     display: flex;
     align-items: center;
     flex-direction: row;
     padding: 30px;
     background-color: white;
     border-radius: 4px;
     height: 100px;
}
 .loading-container p {
     margin-left: 20px;
     margin-bottom: 0;
}
 .modal-content {
     border-radius: 3px !important;
}
 .section_error {
     padding: 10px 0;
     background-color: #e10000;
}
 section.section_error div p {
     text-align: center;
     color: #FFF;
     margin-bottom: 0;
}
/* ** Animations ** **/
 @keyframes fadeIn {
     from {
         opacity: 0;
    }
     to {
         opacity: 1;
    }
}
 @keyframes spinner-border {
     0% {
         transform: rotate(0deg);
    }
     100% {
         transform: rotate(360deg);
    }
}
 @media screen and (min-width: 768px) {
     .imp-fullscreen-button-icon-only {
         display: none;
    }
}
 @media screen and (max-width: 498px) {
     body {
         font-weight: 400;
         font-size: 14px;
    }
     .page_banner div {
         flex-direction: column;
    }
     .page_banner div img {
         width: 200px;
    }
     h1#formTitle {
         font-size: 1.6em;
         width: 100% !important;
    }
     .imp-fullscreen-button-icon-only {
         display: block;
    }
     .imp-ui-element.imp-fullscreen-button-icon-only.imp-fullscreen-button.imp-fullscreen-button-position-2 {
         position: absolute;
         display: none;
         z-index: 2000;
    }
     #returnToZonesSection {
         flex-direction: column;
         align-items: center;
    }
     #returnToZonesSection #zoneHeader {
         text-align: center;
         margin: 0 0 20px 0;
    }
     button.btn {
         font-size: calc(14px * .9);
         font-weight: 500 !important;
         padding: 5px 10px !important;
    }
     button#returnToZonesMap {
         width: 50%;
    }
     #first-map-section, #second-map-section, .bricksMapContainer {
         min-width: 0;
         min-height: auto;
    }
     #brickslegends {
         padding-right: 0 !important;
         padding-left: 0 !important;
    }
     .loading-spinner {
         width: 15px;
         height: 15px;
    }
}
 