﻿
html {
	scrollbar-color: #2C9BCC #D9D9D9 !important;
	/*scroll-behavior: smooth;*/
}

.preloadWrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-color: rgba(0, 0, 0, 0.8); 
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.outerHex, .innerHex {
  width: 100px;
  height: 100px;
  background: #808080;
  position: absolute;
  top: 50%;
  left: 50%;
  overflow: hidden;
  transform: translate(-50%, -50%);
  clip-path: polygon(0% 50%, 25% 95%, 75% 95%, 100% 50%, 75% 5%, 25% 5%);
  clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
}

.outerHex {
   animation: spinDef 3s linear infinite; 
}

.innerHex {
  width: 90%;
  height: 95%;
  background-color: rgba(0, 0, 0, 0.8); 
}

.spinner {
  background: #72c9ef;
  width: 80%;
  height: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  animation: spinDef 2s infinite linear;
  transform-origin: center top;
}
	
@keyframes spinDef {
  0% { transform: translateX(-50%) rotate(0deg); }
  100% { transform: translateX(-50%) rotate(360deg); }
}

/*#region Notifications */

.toastNotification {
    position: fixed;
    width: 90%;
    left: 5%;
    top: -1000px;
    margin: 0;
    padding: 25px 50px 25px 40px;
    font-size: 16px !important;
    font-size: 1rem !important;
    background-color: #6e6e6e;
    color: #fff;
    border-radius: 2px;
    -webkit-box-shadow: 0 0 24px -1px #383838;
    -moz-box-shadow: 0 0 24px -1px #383838;
    box-shadow: 0 0 24px -1px #383838;
    z-index: 2000;
}

    .toastNotification.success {
        background-color: #64a70b;
    }

    .toastNotification.warning {
        background-color: #f68b20;
    }

    .toastNotification.error {
        background-color: #c91a13;
    }

    .toastNotification .closeButton {
        position: absolute !important;
        right: 20px;
        top: 6.5px;
        text-decoration: none;
    }

        .toastNotification .closeButton:after {
            display: inline-block;
            content: '\2715';
            color: #fff;
            margin-right: .2em;
            margin-right: 0;
            width: 1em;
            line-height: 1em;
            vertical-align: -0.05em;
            text-decoration: inherit;
            text-align: center;
            text-transform: none;
            font-size: 24px !important;
            font-size: 1.5rem !important;
            font-family: "fontello";
            font-style: normal;
            font-weight: normal;
            font-variant: normal;
        }

        .toastNotification .closeButton:hover {
            color: #fff;
            font-weight: bold;
        }

/*#endregion Toast */

/*#region GreCapV2 */

.contact-html-element {
    display: none;
}

.u-btn-submit-container, .u-btn-submit {
    display: none;
}

.g-recaptcha {
    width: 100%;
    justify-content: center;
    display: none;
}

/*#endregion */