/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');*/

/* roboto-100 - latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 100;
    src: local(''),
         url('/fonts/roboto-v30-latin-100.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
         url('/fonts/roboto-v30-latin-100.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  
  /* roboto-100italic - latin */
  @font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 100;
    src: local(''),
         url('/fonts/roboto-v30-latin-100italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
         url('/fonts/roboto-v30-latin-100italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  
  /* roboto-300 - latin */
  @font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    src: local(''),
         url('/fonts/roboto-v30-latin-300.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
         url('/fonts/roboto-v30-latin-300.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  
  /* roboto-300italic - latin */
  @font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 300;
    src: local(''),
         url('/fonts/roboto-v30-latin-300italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
         url('/fonts/roboto-v30-latin-300italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  
  /* roboto-regular - latin */
  @font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: local(''),
         url('/fonts/roboto-v30-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
         url('/fonts/roboto-v30-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  
  /* roboto-italic - latin */
  @font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 400;
    src: local(''),
         url('/fonts/roboto-v30-latin-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
         url('/fonts/roboto-v30-latin-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  
  /* roboto-500 - latin */
  @font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    src: local(''),
         url('/fonts/roboto-v30-latin-500.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
         url('/fonts/roboto-v30-latin-500.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  
  /* roboto-500italic - latin */
  @font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 500;
    src: local(''),
         url('/fonts/roboto-v30-latin-500italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
         url('/fonts/roboto-v30-latin-500italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  
  /* roboto-700 - latin */
  @font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: local(''),
         url('/fonts/roboto-v30-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
         url('/fonts/roboto-v30-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  
  /* roboto-700italic - latin */
  @font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 700;
    src: local(''),
         url('/fonts/roboto-v30-latin-700italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
         url('/fonts/roboto-v30-latin-700italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }


/* Globals
---------------------------------------------------------------------------------------------------*/
body {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    background: #ffe9e9;
    background-attachment: fixed;
}


/* Fundamentals - MARK: Fundmantals
------------------------------------------------------*/
.center {
    text-align: center;
}

.leftform {
    text-align: left;
}

.rightform {
    text-align: right;
}

.labelform {
	margin-top: 7px;
	margin-bottom: 0px;
}

.error {
	border: 2px solid red;
	animation: shake 0.2s ease-in-out 0s 3;
}
@keyframes shake {
	0% { transform: translateX(0); }
	25% { transform: translateX(-5px); }
	50% { transform: translateX(5px); }
	75% { transform: translateX(-5px); }
	100% { transform: translateX(0); }
}

.hidden-text {
	color: transparent;
}

.info-box { 
    background: #e7f3ff;
    border-left: 5px solid #0056b3;
    padding: 1rem;
    text-align: left;
    margin: 1.5rem 0;
}

.next-steps { 
    text-align: left; 
    background: #f9f9f9; 
    padding: 1.5rem; 
    border-radius: 5px; 
    margin: 1.5rem 0; 
    border: 1px solid #ddd; 
}

.success-icon { 
    color: #28a745; 
    font-size: 4rem; 
    margin-bottom: 1rem; 
}

/* Page - MARK: Page
------------------------------------------------------*/
.ws-container {
    background-color: #ffffff;
    max-width: 700px;
    min-height: calc(100vh - 42px);
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
    padding: 10px;
    padding-bottom: 50px;
}

.ws-footer {  
  background-color: #660B42;
  max-width: 700px;
  min-height: 25px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0px;
  padding: 10px;
  color: #ffffff;
}

.ws-footer a {
  color: #ffffff;
}

.ws-footer a:hover {
  color: #bebebe
}

.inputbox {
    background-color: #e6e6e6;
    border-radius: 10px;
    border-color: #a6a6a6;
    border-width: 1px;
    border-style: solid;
    padding: 10px;
    margin-bottom: 10px;
}


/* NoScipt CSS - MARK: NoScript
------------------------------------------------------*/
.noscript {
	width:100%;
  	height:100%; /* will cover the text displayed when javascript is enabled*/
  	z-index:100000; /* higher than other z-index */
  	position:absolute;
  	top: 0;
  	text-align: center;
}

.noscript #div100{
   	display:block;
   	height:100%;
   	background-color:white; 
}





  /*
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

html {
    background: #ffe9e9;
}

body {
    background: #FFe9e9;
}

.container {
    max-width: 800px;
    min-height: 100vh;
    background: #ffffff;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.center {
	text-align: center;
}

.rightform {
	text-align: right;
}

.leftform {
	text-align: left;
}

.text-red {
    color: #ff0000;
}

.labelform {
	margin-top: 5px;
	margin-bottom: 0px;
}

.gap-top-md {
    margin-top: 10px;
}

.gap-top-l {
    margin-top: 15px;
}

.gap-top-xl {
    margin-top: 25px;
}

.gap-bottom-xl {
    margin-bottom: 25px;
}

.gap-right-md {    
    padding-right: 10px;
}

.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}

.btn-default:focus,
.btn-default.focus {
    color: #333;
    background-color: #e6e6e6;
    border-color: #6a0101
}

.btn-default:hover {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad;
}

.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad;
}

.btn-default:active:hover,
.btn-default.active:hover,
.open > .dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open > .dropdown-toggle.btn-default:focus,
.btn-default:active.focus,
.btn-default.active.focus,
.open > .dropdown-toggle.btn-default.focus {
    color: #333;
    background-color: #d4d4d4;
    border-color: #8c8c8c;
}

.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
    background-image: none;
}

.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus {
    background-color: #fff;
    border-color: #ccc;
}

.btn-default .badge {
    color: #fff;
    background-color: #333;
}

@media (min-width: 991px) {
    .col-logo {
        text-align: left;
        padding-top: 20px;
        padding-bottom: 20px;
        padding-left: 10px;
    }
}

@media (max-width: 990px) {
    .col-logo {
        text-align: left;
        padding-top: 20px;
        padding-bottom: 20px;
        padding-left: 10px;
    }

}

@media (max-width: 768px) {
    .col-logo {
        text-align: center;
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

.inputbox {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    background-color: #e6e6e6;
    border-radius: 10px;
    border-color: #a6a6a6;
    border-width: 1px;
    border-style: solid;
    padding: 10px;
    margin-bottom: 10px;
}*/