#radios div {
    float: right;
    height: 60px;
    margin: 0px auto;
    display: inline-block;
}


#radios label {
    background-color: #FFF;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    font-weight: 700;
    color: #f22836;
    float: right;
    margin-top: 8px;
    font-size: 16px;
    text-indent: 1px;
    border: 1px solid rgba(224,224,224,0.46);
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 5%);
    text-decoration: none;
    font-family: danb, 'Open Sans', sans-serif, Times;
    text-align: center;
    width: 116px;
    height: 40px;
    margin-left: 35px;
    line-height: 40px;
    cursor: pointer;
    display: inline-block;
    -webkit-transition: background-color 150ms ease-in;
    -moz-transition: background-color 150ms ease-in;
    -ms-transition: background-color 150ms ease-in;
    -o-transition: background-color 150ms ease-in;
    transition: background-color 150ms;
}
input.radio:empty ~ label:before {
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    right: 0;
    content: '';
    width: 0px;
    background: #f22836;
    border-radius: 3px;
}
input.radio:checked ~ label:before {
    content: '';
    text-indent: 1px;
    color: #FFF;
    width: 1px;
    background: #f22836;
}

input.radio:hover:not(:checked) ~ label:before {
    content: '';
    text-indent: 1px;
    color: #ffffff;
    width: 0px;
    transition: all 150ms ease-in;
}

.TField {
    text-indent: 35%;
    direction: ltr;
    width: 100px;
}

.items {
    display: block;
    margin-top: 2px;
}
.item {
    width: 28%;
    height: 400px;
    background-color: #FFF;
    display: inline-block;
    margin: 3% 2%;
    margin-top: 15px;
    border-radius: 10px;
    border: 1px solid rgba(224,224,224,0.46);
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 5%);

}
.item .imgr {
    min-width: 175px;
    max-width: 275px;
}
.item img {
    border-radius: 0px 0px 10px 10px;
    display: block;
    max-height: 178px;
    min-width: 180px;
    text-align: center;
    margin: 0px auto;
    top: 0;
}

.item h3 {
text-align: center;
    margin: 9px auto;
}
.item h3:after {
    display: block;
    content: "";
    height: 1px;
    width: 50%;
    margin: 10px auto -5px;
    background: #dedede;
}

.item p {
    text-transform: capitalize;
    overflow:hidden;
    text-align: center;
    margin: 3px auto;
}

.read {
    width: 88%;
    background: #f22836;
    color: #FFF;
    text-align: center;
    display: inline-block;
    padding: 7px 20px;
    border: 1px solid #dedede;
    font-weight: 600;
    bottom: -21px;
    position: relative;
    margin: auto;
    border-radius: 0 0px 10px 10px;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-box-shadow: 0px 1px 1px 0px rgba(180, 180, 180, 0.1);
    -moz-box-shadow: 0px 1px 1px 0px rgba(180, 180, 180, 0.1);
    box-shadow: 0px 1px 1px 0px rgba(180, 180, 180, 0.1);
}
.itmr {
    display: inline-block;
}



/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  border: 1px solid #888;
  width: 80%;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s
}

/* Add Animation */
@-webkit-keyframes animatetop {
  from {top:-300px; opacity:0} 
  to {top:0; opacity:1}
}

@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}





.box {
  width: 40%;
  margin: 0 auto;
  background: rgba(255,255,255,0.2);
  padding: 35px;
  border: 2px solid #fff;
  border-radius: 20px/50px;
  background-clip: padding-box;
  text-align: center;
}

.bt {
  font-size: 1em;
  padding: 10px;
  color: #fff;
  border: 2px solid #06D85F;
  border-radius: 20px/50px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.bt:hover {
  background: #06D85F;
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 200ms;
  visibility: hidden;
  opacity: 0;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  margin: 70px auto;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  width: 30%;
  position: relative;
  transition: all 2s ease-in-out;
}

.popup h2 {
    text-align:center;
    margin-top: 0;
    color: #333;
    padding-top: 10px;
}
.popup .close {
  text-align: center;
  height: 40px;
  width: 24px;
  position: absolute;
  top: 0px;
  left: 15px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}
.popup .close:hover {
  color: #f22836;
}
.popup .content {
  max-height: 30%;
  overflow: auto;
  text-align: right;
  min-height: 150px;
}

#sub {
    cursor: pointer;
    margin-top: 20px;
    display: block;
    bottom: 0px;
    width: 90px;
    height: 35px;
    background-color: #f22836;
    color: #FFF;
    border-radius: 7px;
    text-align: center;
    padding-top: 6px;
}
#sub:hover {
    color: #f22836;
    background: #EEE;
}
@media screen and (max-width: 700px){
  .box{
    width: 80%;
  }
  .popup{
    width: 80%;
    height: auto;
  }
}
#notee {
    text-align: center;
    min-height: 26px;
    background: #e40017;
    color: #FFF;
    border-radius: 5px;
    font-size: 13px;
    padding: 4px;
}
#suc_notee {
    text-align: center;
    min-height: 26px;
    background: #00897B;
    color: #FFF;
    border-radius: 5px;
    font-size: 13px;
    padding: 4px;
}
.hght20 {
  height: 23px;
}





 .list-container {
	 position: relative;
}
 .list-container.active .more-button-list {
	 opacity: 1;
	 transform: scale(1);
}
 .list-container.active .more-button-list-item {
	 animation: fadeInItem 0.6s 0.2s forwards;
}
 .list-container.active .more-button-list-item:nth-child(2) {
	 animation-delay: 0.4s;
}
 .list-container.active .more-button-list-item:nth-child(3) {
	 animation-delay: 0.6s;
}
 .list-container.active .more-button-list-item:nth-child(4) {
	 animation-delay: 0.8s;
}
 .list-container.active .more-button {
	 animation: onePulse 0.6s forwards linear;
}
 .list-container.active .menu-icon-wrapper {
	 transform: rotate(-45deg);
}
 .list-container.active .menu-icon-line.first {
	 transform: rotate(-90deg) translateX(1px);
}
 .list-container.active .menu-icon-line.last {
	 transform: rotate(-90deg) translateX(-1px);
}
strong:hover {
  color:#000 !important;
  }
 .more-button {
    background-color: #f22836;
    box-shadow: 0px 0px 0px 4px rgb(255 7 7 / 30%);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: 0.2s ease-in;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
    z-index: 2;
    left: 10px;
bottom: 174px;
}
 .more-button:hover, .more-button:focus {
	 box-shadow:0px 0px 0px 4px rgb(255 7 7 / 30%);
	 background-color: #f22836;
}
 .more-button:focus {
	 outline: 0;
}
.more-button-list {
    background-color: #fff;
    border-radius: 6px;
    list-style-type: none;
    width: 220px;
    height: 199px;
    box-shadow: 0px 0px 0px 4px #eee;
    padding: 0;
    padding: 3px;
    position: absolute;
    right: -18px;
    bottom: -11px;
    opacity: 0;
    transform: scale(0);
    transform-origin: bottom right;
    /*transition: all 0.3s ease 0.1s;*/
  }
 .more-button-list li {
	 opacity: 0;
}
 .more-button-list-item {
	 display: flex;
	 align-items: center;
	 color: #342e2e;
	 padding: 7px;
	 border-radius: 4px;
	 cursor: pointer;
	 position: relative;
	 transition: 0.2s ease-in;
	 transform: translatex(-10px);
}
 .more-button-list-item:hover {
	 color: #000;
}
  .more-button-list-item a{
	 color: #555555 !important;

}
 .more-button-list-item a:hover {
	 color: #000 !important;

}
 .more-button-list-item:after {
	 content: '';
	 position: absolute;
	 height: 1px;
	 width: calc(100% - 24px);
	 left: 12px;
	 bottom: 0;
	 background-color: 0px 0px 0px 4px #000;
}
 .more-button-list-item:last-child:after {
	 display: none;
}
 .more-button-list-item svg {
   color: #f22836;
    font-weight: bold;
	 min-width: 18px;
	 height: 18px;
}
 .more-button-list-item span {
	 display: inline-block;
	 line-height: 20px;
	 font-size: 14px;
	 margin-left: 8px;
}
 @keyframes onePulse {
	 0% {
		 box-shadow: 0px 0px 0px 0px rgb(255 7 7 / 30%);
	}
	 50% {
		 box-shadow: 0px 0px 0px 12px rgb(255 7 7 / 20%);
	}
	 100% {
		 box-shadow: 0px 0px 0px 4px rgb(255 7 7 / 30%);
	}
}
 @keyframes fadeInItem {
	 100% {
		 transform: translatex(0px);
		 opacity: 1;
	}
}
.menu-icon-wrapper svg {
  color: #FFF;
    font-size: 20px;
    width: 40px;
    height: 40px;
    text-align: center;
    margin: 0px auto;
    position: absolute;
    bottom: 5px;
    left: 5px;
  
}
 .menu-icon-wrapper {
	 border-radius: 2px;
	 width: 20px;
	 height: 20px;
	 display: flex;
	 flex-direction: column;
	 justify-content: space-between;
	 cursor: pointer;
	 transition: transform 330ms ease-out;
}
 .menu-icon-line {
	 background-color: #fff;
	 border-radius: 2px;
	 width: 100%;
	 height: 2px;
}
 .menu-icon-line.half {
	 width: 50%;
}
 .menu-icon-line.first {
	 transition: transform 300ms cubic-bezier(0.52, -0.8, 0.52, 0.52);
	 transform-origin: right;
}
 .menu-icon-line.last {
	 align-self: flex-end;
	 transition: transform 300ms cubic-bezier(0.52, -0.8, 0.52, 0.52);
	 transform-origin: left;
}
@media all and (max-width: 1447px) {
  .more-button-list {width:27px;right: 170px;bottom: -10px; overflow:hidden;}
  .more-button-list:hover {width:229px; right: -18px; bottom: -11px;}

  .more-button-list-item strong { display: none; opacity:0; transition: all 2s ease;-webkit-transition: opacity 2s;}
   .more-button-list-item a {display: none; opacity:0; transition: all 2s ease; -webkit-transition: opacity 2s;}
  .more-button-list:hover strong {display: block; opacity:1;}
    .more-button-list:hover a { display: block; opacity:0.5;}
  
}
  

@media all and (max-width: 1200px) {
  .item {
    width: 45%;
  }
  .item img {
    min-width: 100px !important;
    max-width: 85% !important;

  }
}

@media all and (max-width: 800px) {
#radios label {
    width: 95px;
}
#radios div {
    width:30%;
}
.read {
    width: 70%;
  }
}