 input[type="text"],
 input[type="email"],
 input[type="number"] {
  width:90%;height:30px !important;border:1px solid #E2E2E2;
 }

input[type="radio"],
input[type="checkbox"] {
  margin: 0 0.4em 3px 0;
  vertical-align: middle;
}

label {
 color: #165C7D;
    font-size: 14px;
    font-family: Verdana
}

.layout-canvas-g { 
    background-color: #FFFFFF; 
    border: none; 
    box-sizing: border-box; 
    padding: 0px; width: 100%; 
}

.layout-canvas-g > .header, .layout-canvas-g > .section, .layout-canvas-g > .footer { 
    position: relative; 
    overflow: hidden; 
    width: 100%; 
    overflow-wrap: break-word; 
}

.layout-canvas-g > .section { 
    margin: 10px 0px; 
}

.layout-canvas-g > .section > .columns { 
    box-sizing: border-box;
    overflow-wrap: break-word; 
}

body { 
    color: #000000;
    font-size: 12px; 
    margin: 0px auto; 
    max-width: 1280px; 
    background-color: transparent; 
    font-family: Arial; 
    line-height: 1; 
    padding: 10px; 
}

@media only screen and (max-width: 480px) {
  .mobile-hidden { 
      display: none !important; 
    }

  .responsive-td { 
      width: 100% !important; 
      display: block !important; 
      padding: 0px !important; 
    }
}
.layout-canvas-g > .section > .columns { 
    width: 100%; 
}

h1 { 
    font-family: "Exo 2", sans-serif; 
    font-weight: 700; 
    font-size: 24px; 
    line-height: 30px; 
    margin-bottom: 12px; 
    color: #005779; 
}

h1 b { 
    color: #00B140; 
}

h1:first-child { 
    margin-top: 0px; 
}

h2 { 
    font-family: "Exo 2", sans-serif; 
    font-weight: 700; 
    font-size: 36px; 
    line-height: 40px; 
}

p { 
    font-family: "Open Sans", sans-serif; 
    font-size: 14px; 
    line-height: 22px; 
    color: #575757; 
    margin-top: 0px; 
}

.title {
    font-size: 2em;
}

.elementHidden {
       display: none;
    }
    
.alertMessage {
    background-color: #FFF633;
    padding: 5px;
    border-radius: 5px;
    color: #000;
    font-size: 1.1em;
}

.fullLoadingPage {
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loader {
    border: 6px solid #f3f3f3;
    border-radius: 100%;
    border-top: 6px solid #3498db;
    width: 70px;
    height: 70px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

element.style {
    background-color: #FFA300;
}

.sc-button {
    border-color: #FFA300;
    border-radius: 4px;
    border-style: solid;
    color: #FFFFFF;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
    padding: 10px;
    padding-right: 48px;
    padding-left: 24px;
}

.sc-button:active {
	border-color: #FFA300;
    border-radius: 4px;
    border-style: solid;
    color: #FFFFFF;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
    padding: 10px;
    padding-right: 48px;
    padding-left: 24px;
}

/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}