.modal-container
{
  margin: 0px;
  padding: 0px;
  position: relative;
}
.modal-content H2
{
    color: #233d58;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Roboto Slab', serif;
    margin-top:20px;
}    
.modal-btn 
{
    display: block;
    margin: 0px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    color: #233d58;
    width: 100%;
    height: auto;
    background:transparent;
    cursor: pointer;
    text-align: center;
    text-decoration:none;
}
.modal-btn:hover 
{
  background:transparent;
  text-decoration:none;
  color: #393939;
}
.btn-modal
{
	border-color: #233d58; 
	color: rgb(255, 255, 255); 
	background: #233d58; 
	outline: 0px !important; 
	font-weight: normal; 
	text-decoration: none; 
	box-shadow: none !important;
    display:inline-block;
    padding:6px 12px;
    margin-bottom:0;
    font-size:14px;
    font-weight:400;
    line-height:1.42857143;
    text-align:center;
    white-space:nowrap;
    vertical-align:middle;
    cursor:pointer;
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
    border-radius:4px;
    text-transform:uppercase;
    font-family: 'Open Sans', sans-serif;
}
.btn-modal:hover 
{
	border-color: #646464; 
	color: rgb(255, 255, 255) !important; 
	background-color:#646464;
}
.focus.btn-modal
{
	border-color: #646464; 
	color: rgb(255, 255, 255) !important; 
	background-color:#646464;
}
.btn-modal:focus 
{
	border-color: #646464;
	color: rgb(255, 255, 255) !important; 
	background-color:#646464;
}
.active.btn-modal 
{
	border-color:#646464; 
	color: rgb(255, 255, 255) !important; 
	background-color:#646464;
}
.btn-modal:active 
{
	border-color: #646464; 
	color: rgb(255, 255, 255) !important; 
	background-color:#646464;
}
.modal-container .modal-content,
.modal-container .modal-backdrop {
  height: 0;
  width: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.2s ease-in;
}
.modal-container .modal-close 
{
  color: #aaa;
  position: absolute;
  right: 5px;
  top: 5px;
  padding-top: 3px;
  background: #fff;
  font-size: 16px;
  width: 25px;
  height: 25px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
}
.modal-container .modal-close:hover {
  color: #333;
}
.modal-container .modal-content-btn 
{
  position: absolute;
  text-align: center;
  cursor: pointer;
  bottom: 20px;
  right: 30px;
  background: transparent;
  color:#233d58;
  width: 50px;
  font-size: 14px;
  height: 32px;
  padding-top: 9px;
  font-weight: normal;
  font-family: 'Open Sans', sans-serif;
  text-decoration:none;
  text-transform:uppercase;
}
.modal-container .modal-content-btn:hover 
{
  color: #646464;
  background:transparent;
  text-decoration:none;
}
.modal-container #modal-toggle {
  display: none;
}
.modal-container #modal-toggle.active ~ .modal-backdrop, .modal-container #modal-toggle:checked ~ .modal-backdrop {
  background-color: rgba(0, 0, 0, 0.6);
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9;
  visibility: visible;
  opacity: 1;
  transition: opacity 0.2s ease-in;
}
.modal-container #modal-toggle.active ~ .modal-content, .modal-container #modal-toggle:checked ~ .modal-content {
  opacity: 1;
  background-color: #fff;
  max-width: 400px;
  width: 400px;
  height: 280px;
  padding: 10px 30px;
  position: fixed;
  left: calc(50% - 200px);
  top: 12%;
  border-radius: 4px;
  z-index: 999;
  pointer-events: auto;
  cursor: auto;
  visibility: visible;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.6);
}
@media (max-width: 400px) {
  .modal-container #modal-toggle.active ~ .modal-content, .modal-container #modal-toggle:checked ~ .modal-content {
    left: 0;
  }
}