@font-face {
  font-family: "Usenet Regular";
  src: url('../../plugins/shared/fonts/usenet/usenet.regular.ttf');
}

/* @import "https://fonts.googleapis.com/css?family=Usenet Regular:300,400,500,600,700"; */
body {
  font-family: 'Usenet Regular', sans-serif;
  background: #fafafa;
}

p {
  font-family: 'Usenet Regular', sans-serif;
  font-size: 1.1em;
  font-weight: 300;
  line-height: 1.7em;
  color: #999;
}

a,
a:hover,
a:focus {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s;
}

.navbar {
  padding: 15px 0px;
  background: transparent;
  border: none;
  border-radius: 0;
  margin-bottom: 15px;
  /* box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1); */
  border-bottom: 1px solid #2b64a5;
}

.navbar-btn {
  box-shadow: none;
  outline: none !important;
  border: none;
}

.line {
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed #ddd;
  margin: 40px 0;
}

/* ---------------------------------------------------
SIDEBAR STYLE
----------------------------------------------------- */

.wrapper {
  display: flex;
  width: 100%;
}

#sidebar {
  width: 250px;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 999;
  background: #0065a6;
  color: #fff;
  transition: all 0.3s;
}

#sidebar.active {
  margin-left: -250px;
}

#sidebar .sidebar-header {
  padding: 20px;
  background: #000;
}

#sidebar ul.components {
  /* padding: 20px 0; */
  /* border-bottom: 1px solid #47748b; */
}

#sidebar ul p {
  color: #fff;
  padding: 10px;
  text-align: center;
  /* border-bottom: 1px solid #a9b791; */
  /* padding-bottom: 30px; */
  /* margin: 0px; */
  background-image: radial-gradient(#bac79e96 14%,transparent 100%);
  background-size: 2px 2px;
  /* position: absolute; */
  content: "";
  width: 100%;
  height: 100%;
  /* left: 0; */
  /* top: 0; */
  margin: 0px;
  /* z-index: -1;*/
}

#sidebar ul li a {
  padding: 10px;
  font-size: 1.1em;
  display: block;
  text-align: center;
  border-bottom: 1px solid #a9b791;
}


#sidebar ul li a:hover {
  color: #2b64a5;
  background: #fff;
}

#sidebar ul li.active>a,
a[aria-expanded="true"] {
  color: #fff;
  background: #a9b792;
}

a[data-toggle="collapse"] {
  position: relative;
}

.dropdown-toggle::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

ul ul a {
  font-size: 0.9em !important;
  padding-left: 30px !important;
  background: #6d7fcc;
}

ul.CTAs {
  padding: 3% 3%;
  padding-top: 3%;
  text-align: center;
  bottom: 0px;
  /* position: fixed; */
  position: relative;
}

ul.CTAs a {
  padding: inherit !important;
  font-size: inherit !important;
  border-top: none !important;
  text-align: center !important;
  text-decoration: underline !important;
  color: #a9b791 !important;
  display: inline !important;
}

a.download {
  background: #fff;
  color: #7386D5;
}

a.article {
  font-weight: bold !important;
  color: #fff !important;
  border-bottom: none !important;
}

a.article:hover {
  color: #fff !important;
  background: none !important;
}

/* ---------------------------------------------------
CONTENT STYLE
----------------------------------------------------- */

#content {
  width: calc(100% - 250px);
  padding: 20px 20px;
  min-height: 100vh;
  transition: all 0.3s;
  position: absolute;
  top: 0;
  right: 0;
  background-image: radial-gradient(#bac79e96 14%,transparent 100%);
  background-size: 2px 2px;
  content: "";
  margin: 0px;
}

#content.active {
  width: 100%;
}

/* ---------------------------------------------------
MEDIAQUERIES
----------------------------------------------------- */

@media (max-width: 768px) {
  #sidebar {
    margin-left: -250px;
  }
  #sidebar.active {
    margin-left: 0;
  }
  #content {
    width: 100%;
  }
  #content.active {
    width: calc(100% - 250px);
  }
  #sidebarCollapse span {
    display: none;
  }
}


.btn{
  border-radius: 0px !important;
}

.btn-info {
  background-color: #2b64a5 !important;
  border-color: #2b63a4 !important;
}

.acc-title{
  width: 100%;
  text-align: center;;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #23579a;
}

.acc-logo{
  width: 100%;
  height: 100px;
  margin-top:10px;
  margin-bottom:10px;
  text-align: center;
}

.cradio {
  display: inline;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  /* font-size: 22px; */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default cradio button */
.cradio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom cradio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  /* background-color: #eee; */
  background-color: #fff;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.cradio:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the cradio button is checked, add a blue background */
.cradio input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.cradio input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.cradio .checkmark:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}




.radio-toolbar input[type="radio"] {
  opacity: 0;
  position: fixed;
  width: 0;
}

.radio-toolbar label {
  display: inline-block;
  background-color: #2b64a5;
  padding: 20px 10px;
  font-family: sans-serif, Arial;
  font-size: 16px;
  border: 2px solid #2b64a5;
  color: #fff;
  width: 205px;
  text-align: center;
}

.radio-toolbar label:hover {
  background-color: #28a745;
  border-color: #61a745;
}

.radio-toolbar input[type="radio"]:focus + label {
  border: 1px solid #61a745;
}

.radio-toolbar input[type="radio"]:checked + label {
  background-color: #ffffff;
  border-color: #61a745;
  color: #2b64a5;
}

.form-section-selected{
  margin:0px; padding:0px;
  padding-top:15px;
  padding-bottom:15px;
  margin-bottom:15px;
  background-color:#9fae8ba1;
}

.form-section-1{
  margin:0px; padding:0px;
  padding-top:15px;
  padding-bottom:15px;
  margin-bottom:15px;
  background-color:#c4c4c4;
}

.form-section-2{
  margin:0px; padding:0px;
  padding-top:15px;
  padding-bottom:15px;
  margin-bottom:15px;
  background-color:#a1bee1;
}

.form-section-3{
  margin:0px; padding:0px;
  padding-top:15px;
  padding-bottom:15px;
  margin-bottom:15px;
  background-color:#d7dfe2;
}

.form-section-4{
  margin:0px; padding:0px;
  padding-top:15px;
  padding-bottom:15px;
  margin-bottom:15px;
  background-color:#0065a694;
}

.form-section-5{
  margin:0px; padding:0px;
  padding-top:15px;
  padding-bottom:15px;
  margin-bottom:15px;
  background-color:#c4d8a0;
}

.form-section-6{
  margin:0px; padding:0px;
  padding-top:15px;
  padding-bottom:15px;
  margin-bottom:15px;
  background-color:#b4d4bb;
}

.form-section-7{
  margin:0px; padding:0px;
  padding-top:15px;
  padding-bottom:15px;
  margin-bottom:15px;
  background-color:#898f92;
}

.form-section-8{
  margin:0px; padding:0px;
  padding-top:15px;
  padding-bottom:15px;
  margin-bottom:15px;
  background-color:#adcee0;
}

.form-section-9{
  margin:0px; padding:0px;
  padding-top:15px;
  padding-bottom:15px;
  margin-bottom:15px;
  background-color:#7c8da4;
}

.form-section-10{
  margin:0px; padding:0px;
  padding-top:15px;
  padding-bottom:15px;
  margin-bottom:15px;
  background-color:#868c8859;
}




@media only screen and (max-width: 384px) {
  .fieldset-proof{
    width: 88%;
  }
}

.hide-display{
  color:#0065a6;
}


.select2-container .select2-choice {
  height: calc(2.25rem + 2px) !important;
  padding: 10px 10px !important;
  overflow: hidden;
  position: relative;
  border: 1px solid #ffffff;
  white-space: nowrap;
  line-height: 19px;
  color: #000000 !important;
  text-decoration: none;
  border-radius: 0px;
  background-clip: padding-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: white !important;
  background-image: none;
  width: 100%;
}

.select2-container--default .select2-selection--single {
  border: 1px solid #ced4da !important;
  padding: 5px 5px !important;
}

.select2-container .select2-selection--single {
  height: calc(2.25rem + 2px) !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 5px !important;
  width: 28px !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #2b64a5 !important;
}

.img-flag{
  height: 15px !important;
}


.form-control {
    border: 1px solid #2b65a5 !important
}
