.subscription_item {
  position: relative;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 5px;
  min-height: 165px;
  border: 1px solid #EFF1FE;
  transition: 0.4s;
}
.subscription_item:hover {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.06);
  background: #437EEB;
}
.subscription_item.active {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.06);
  background: #437EEB;
}
.item_img {
  max-width: 300px;
  display: inline-block;
}
.img_plug {
  padding: 0 20px;
}
.img_plug i {
  color: #437EEB;
  font-size: 24px;
  line-height: 24px;
}
.subscription_item.active .img_plug i {
  color:#fff;
}
.check_icon {
  position: absolute;
  left: 10px;
  top: 10px;
}
.check_icon i {
  color: #ddd;
  font-size: 30px;
}
.subscription_item:hover .check_icon i,
.subscription_item.active .check_icon i{
 color:#fff;
}
.country_check_box {
  position: relative;
  margin-right: 30px;
}
.country_check_box label{
  display: block;
  padding-left: 30px;
  font-weight: 400;
}

.country_check_box input[type="checkbox"] {
  display: none;
}

.country_check_box input[type="checkbox"] + label::before {
  width: 20px;
  height: 20px;
  background: transparent;
  position: absolute;
  content: '';
  left: 0;
  top: 4px;
  cursor: pointer;
  border: 1px solid #EFF1FE;
  border-radius: 4px;
  text-align: center;
  line-height: 18px;
}

.country_check_box input[type="checkbox"] + label::after {
  position: absolute;
  width: 20px;
  height: 20px;
  content: '\f00c';
  font-family: FontAwesome;
  color: #fff;
  cursor: pointer;
  left: 0;
  top: 4px;
  font-size: 13px;
  border: 1px solid #437EEB;
  background: transparent;
  border-radius: 4px;
  line-height: 14px;
  transform: scale(0);
  transition: 0.4s;
  text-align: center;
  line-height: 18px;
}

.country_check_box input[type="checkbox"]:checked + label::after{
  transform: scale(1);
  background: #437EEB;
}
.country_list_wrapper{
  display: none;
  margin-bottom: 15px;
}
.country_list {
  display: flex;
}

.login_box_wrapper {
  max-width: 450px;
  width: 100%;
  margin: 50px auto 0;
  background: #fff;
  box-shadow: 0 7px 29px #64646f33;
  padding: 15px;
  border-radius: 8px;
}
.login_ttl {
  font-size: 28px;
  line-height: 38px;
  color: #313E5B;
  margin: 20px 0;
  font-weight: 500;
}
.login_form label {
  font-weight: 400 !important;
  margin-bottom: 10px;
  line-height: 20px;
}
.login_form .form-group {
  overflow: hidden;
}

.cmn_btn {
  display: inline-block;
  text-transform: uppercase !important;
  font-size: 14px !important;
  line-height: 26px !important;
  letter-spacing: 3px;
  padding: 12px 24px !important;
  border: none;
  background: #313E5B;
  color: #fff !important;
  border-radius: 90px;
  cursor: pointer !important;
  margin: 0 auto !important;
  text-align: center;
}


.my_account {
  padding-top: 50px;
}

.my_account .table > thead > tr > th {
  text-align: center;
}

.my_account .table > tbody > tr > td{
  text-align: left;
}

.my_account .table > tbody > tr > td .email {
  display: block;
  font-size: 80%;
  color: #9AA7C9;
}
.top_bar_btn {
  text-align: right;
}
.top_bar_btn .cmn_btn {
  margin-bottom: 15px !important;
}
.page_ttl {
  color: rgb(49, 62, 91);
  font-size: 40px;
  font-weight: 700;
  font-family: "DM sans",sans-serif;
  line-height: 50px;
  margin-bottom: 20px;
}

/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) { 
  
  .img_plug {
    display: block;
    text-align: center;
    width: 100%;
    padding: 20px;
  }
  .login_box_wrapper {
    max-width: 370px;
  }




}