/* (c) Evgeniy Komaristy, 2015-2017 */
@font-face {
font-family: 'Verdana';
  src:url('/fonts/verdana.eot');
  src:	url('/fonts/verdana.eot?#iefix') format('embedded-opentype'),
	  url('/fonts/verdana.woff') format('woff'),
	  url('/fonts/verdana.ttf') format('truetype'),
	  url('/fonts/verdana.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
font-family: 'Verdana';
  src: url('/fonts/verdanab.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
font-family: 'Verdana';
  src: url('/fonts/verdanai.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
}

body { /* тело страницы */
 margin:0;
 padding:0;
 font-family:Verdana,Helvetica,sans-serif;
 text-decoration:none;
 font-size:36pt;
}

input[type="radio"] {
  -ms-transform: scale(1.0); /* IE 9 */
  -webkit-transform: scale(1.0); /* Chrome, Safari, Opera */
  transform: scale(1.0);
  margin-left:0px;
  margin-right:15px;
  /* accent-color:#D6181E; */
}

input[type="checkbox"] {
  -ms-transform: scale(3.0); /* IE 9 */
  -webkit-transform: scale(3.0); /* Chrome, Safari, Opera */
  transform: scale(3.0);
  margin-left:20px;
  margin-right:15px;
  accent-color:#D6181E;
}

table { /* таблицы по умолчанию */
 border:0px;
 padding:0px;
 border-spacing:0px;
 border-collapse:collapse;
}

table td{ /* автор в заголовке новости */
 font-size:20pt;
 text-align:center;
}

#button {
    width:250px;
    height: 80px;
    border-radius:40px;
    background-color:#D6181E;
}

.radio {
  margin-top: 5px;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
}

.radio-label {
  padding-left: 0px;
}

.radio-input {
  appearance: none;
  position: relative;
  width: 40px;
  height: 40px;
  background: transparent;
  /* box-shadow: inset 0 0 5px rgb(0 0 0 / 0.2); */
  border-radius: 10px;
  border: 3px solid #D6181E;
  transition: 500ms;
}

.radio-input {
  border-radius: 20%;
}

.radio-input::after {
  content: "";
  position: absolute;
  width: 0px;
  height: 0px;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNS4zIDEzLjIiPiAgPHBhdGggZmlsbD0iI2ZmZiIgZD0iTTE0LjcuOGwtLjQtLjRhMS43IDEuNyAwIDAgMC0yLjMuMUw1LjIgOC4yIDMgNi40YTEuNyAxLjcgMCAwIDAtMi4zLjFMLjQgN2ExLjcgMS43IDAgMCAwIC4xIDIuM2wzLjggMy41YTEuNyAxLjcgMCAwIDAgMi40LS4xTDE1IDMuMWExLjcgMS43IDAgMCAwLS4yLTIuM3oiIGRhdGEtbmFtZT0iUGZhZCA0Ii8+PC9zdmc+);
  background-repeat: no-repeat;
  transition: 500ms;
}

.radio-input::after {
  background-image: url("data:image/svg+xml,%3csvg width='35' height='35' viewBox='-2 -7 38 38' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='m0 10.909 4.364-4.364 8.727 8.727 15.273-15.273 4.364 4.364-19.636 19.636z' fill='rgb(214,24,30)' /%3e%3c/svg%3e");
}

.radio-input:checked::after {
  width: 35px;
  height: 35px;
  transition: 500ms;
}

  .checkbox-wrapper-22 .switch {
    display: inline-block;
    height: 34px;
    position: relative;
    width: 60px;
  }

  .checkbox-wrapper-22 .switch input {
    display:none;
  }

  .checkbox-wrapper-22 .slider {
    background-color: #ccc;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .2s;
  }

  .checkbox-wrapper-22 .slider:before {
    background-color: #fff;
    bottom: 4px;
    content: "";
    height: 26px;
    left: 4px;
    position: absolute;
    transition: .2s;
    width: 26px;
  }

  .checkbox-wrapper-22 input:checked + .slider {
    background-color: #D6181E
  }

  .checkbox-wrapper-22 input:checked + .slider:before {
    transform: translateX(26px);
  }

  .checkbox-wrapper-22 .slider.round {
    border-radius: 34px;
  }

  .checkbox-wrapper-22 .slider.round:before {
    border-radius: 50%;
  }

/* всплывающие сообщения */
.toast-container{width:300px;z-index:9999;}
* html .toast-container{position:absolute;}
.toast-item{height:auto;background:#333;opacity:.9;-moz-border-radius:5px;-webkit-border-radius:5px;color:#eee;padding-top:20px;padding-bottom:20px;padding-left:6px;padding-right:6px;font-family:Verdana,Helvetica,sans-serif;font-size:14px;border:2px solid #999;display:block;position:relative;margin:0 0 12px 0;}
.toast-item p{text-align:left;margin-left:50px;}
.toast-item-close{background:url(/images/close.gif);width:22px;height:22px;position:absolute;top:7px;right:7px;}
.toast-item-image{width:32px;height:32px;margin-left:10px;margin-top:10px;margin-right:10px;float:left;}
.toast-item-image-notice{background:url(/images/notice.png);}
.toast-item-image-success{background:url(/images/success.png);}
.toast-item-image-warning{background:url(/images/warning.png);}
.toast-item-image-error{background:url(/images/error.png);}
.toast-type-notice{color:white;}
.toast-type-success{color:white;}
.toast-type-warning{color:white;border-color:#FCBD57;}
.toast-type-error{color:white;border-color:#B32B2B;}
.toast-position-top-left{position:fixed;left:20px;top:20px;}
.toast-position-top-center{position:fixed;top:20px;left:50%;margin-left:-140px;}
.toast-position-top-right{position:fixed;top:20px;right:20px;}
.toast-position-middle-left{position:fixed;left:20px;top:50%;margin-top:-40px;}
.toast-position-middle-center{position:fixed;left:50%;margin-left:-140px;margin-top:-40px;top:50%;}
.toast-position-middle-right{position:fixed;right:20px;margin-left:-140px;margin-top:-40px;top:50%;}
