/*

Theme Name: Magnum Learn
Description: Theme for company Magnum Photos - 2018
Version: 2.1
Author: FOOZ


===================================================================
1. General Style
2. MENU
3. Mobile MENU
4. Page style
5. Plugins

6. MD screen style
7. SM screen style
8. XS screen style
9. ULTRA XS screen style

*/
/* ================= */
/* FONTS             */
/* ================= */

/* ================= */
/* 1. Custom  Style  */
/* ================= */
html {
    margin-top: 0 !important;
}


/* ================== */
/* 2. MD screen style */
/* ================== */

@media (max-width: 1199px) {

}

/* ================== */
/* 3. SM screen style */
/* ================== */

@media (max-width: 992px) {

}

/* ================== */
/* 4. XS screen style */
/* ================== */

@media (max-width: 767px) {

}

/* ======================== */
/* 5. ULTRA XS screen style */
/* ======================== */

@media (max-width: 478px) {

}

@media screen and (max-width: 399px) and (min-width: 275px){
    .btn{
      font-size: 9px !important;
      font-weight: 300;    
     }   
    
  }
  
@media screen and (max-width: 499px) and (min-width: 400px){
    .btn{
      font-size: 10px !important;
     }    
    
  }
  
.item-course .buttons button, .item-course .buttons .btn {
    margin-bottom: 25px;
}
  

/* Sticky Footer */
body{
    padding-top: 90px;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    font-family: Univers,Helvetica,Arial,sans-serif;
  }

  @media (max-width: 991px) {
    body {
        padding-top: 50px; } }  
 
  .stickyFooter {
      width: 100%;
      background: black;
      color: white;
      position: fixed;
      bottom: 0;
      z-index: 14;
      padding: 11px;
      font-size: 12px;
  }

  .header-mobile-fullscreen{
  	display: none !important;
	}
  
  .emailAddress1{
      height: 20px;
      color: white;
      background: transparent !important;
      border: none;
      border-bottom: 1px solid;
      font-size: 12px;
      text-align: center;
  }
  .emailAddress2{
      height: 20px;
      color: white;
      background: transparent;
      border: none;
      border-bottom: 1px solid;
      font-size: 12px;
      text-align: center;
  
  }
    .checkboxOptions{
        padding:20px !important;
      min-height:150px;
      display:none;
    }
    .errorMsg{
        font-size:12px;
      font-weight:300;
      min-height:15px;
      
    }
    .optionHead{
        padding-left:25px;
      font-size: 12px;
      font-weight: 300;
    }
    .optionDetail{
        padding-left:25px;
      padding-top: 5px;
      font-size: 10px;
    }
   .options{
      width: 15px;
      height: 15px;
      z-index: 999;
   }
   
  /* Styling Checkbox Starts */
  .checkbox-label {
      display: block;
      position: relative;
      margin: auto;
      cursor: pointer;
      font-size: 22px;
      line-height: 24px;
      height: 24px;
      width: 24px;
      clear: both;
  }
  
  .checkbox-label input {
      position: absolute;
      opacity: 0;
      cursor: pointer;
  }
  
  .checkbox-label .checkbox-custom {
      position: absolute;
      top: 0px;
      left: 0px;
      height: 24px;
      width: 24px;
      background-color: transparent;
      border-radius: 5px;
      transition: all 0.3s ease-out;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      border: 1px solid #FFFFFF;
  }
  
  
  .checkbox-label input:checked ~ .checkbox-custom {
      background-color: #FFFFFF;
      border-radius: 5px;
      -webkit-transform: rotate(0deg) scale(1);
      -ms-transform: rotate(0deg) scale(1);
      transform: rotate(0deg) scale(1);
      opacity:1;
      border: 2px solid #FFFFFF;
  }
  
  
  .checkbox-label .checkbox-custom::after {
      position: absolute;
      content: "";
      left: 12px;
      top: 12px;
      height: 0px;
      width: 0px;
      border-radius: 5px;
      border: solid #009BFF;
      border-width: 0 3px 3px 0;
      -webkit-transform: rotate(0deg) scale(0);
      -ms-transform: rotate(0deg) scale(0);
      transform: rotate(0deg) scale(0);
      opacity:1;
      transition: all 0.3s ease-out;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
  }
  
  
  .checkbox-label input:checked ~ .checkbox-custom::after {
    -webkit-transform: rotate(45deg) scale(1);
    -ms-transform: rotate(45deg) scale(1);
    transform: rotate(45deg) scale(1);
    opacity:1;
    left: 8px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid #009BFF;
    border-width: 0 2px 2px 0;
    background-color: transparent;
    border-radius: 0;
  }
  
  
  
  /* For Ripple Effect */
  .checkbox-label .checkbox-custom::before {
      position: absolute;
      content: "";
      left: 10px;
      top: 10px;
      width: 0px;
      height: 0px;
      border-radius: 5px;
      border: 2px solid #FFFFFF;
      -webkit-transform: scale(0);
      -ms-transform: scale(0);
      transform: scale(0);  
  }
  
  .checkbox-label input:checked ~ .checkbox-custom::before {
      left: -3px;
      top: -3px;
      width: 24px;
      height: 24px;
      border-radius: 5px;
      -webkit-transform: scale(3);
      -ms-transform: scale(3);
      transform: scale(3);
      opacity:0;
      z-index: 999;
      transition: all 0.3s ease-out;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
  }
  
  
  
  
  
  
  /* Styling Checkbox Starts */
  .checkbox-label {
      display: block;
      position: relative;
      margin: 0px;
      cursor: pointer;
      font-size: 22px;
      line-height: 15px;
      height: auto;
      width: 100%;
      clear: both;
  }
  
  .checkbox-label input {
      position: absolute;
      opacity: 0;
      cursor: pointer;
  }
  
  .checkbox-label .checkbox-custom {
      position: absolute;
      top: 0px;
      left: 0px;
      height: 15px;
      width: 15px;
      background-color: transparent;
      border-radius: 0px;
      transition: all 0.3s ease-out;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      border: 1px solid #dedede;
  }
  
  
  .checkbox-label input:checked ~ .checkbox-custom {
      background-color: #FFFFFF;
      border-radius: 0px;
      -webkit-transform: rotate(0deg) scale(1);
      -ms-transform: rotate(0deg) scale(1);
      transform: rotate(0deg) scale(1);
      opacity:1;
      border: 2px solid #FFFFFF;
  }
  
  
  .checkbox-label .checkbox-custom::after {
      position: absolute;
      content: "";
      left: 12px;
      top: 12px;
      height: 0px;
      width: 0px;
      border-radius: 5px;
      border: solid #009BFF;
      border-width: 0 3px 3px 0;
      -webkit-transform: rotate(0deg) scale(0);
      -ms-transform: rotate(0deg) scale(0);
      transform: rotate(0deg) scale(0);
      opacity:1;
      transition: all 0.3s ease-out;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
  }
  
  
  .checkbox-label input:checked ~ .checkbox-custom::after {
    -webkit-transform: rotate(45deg) scale(1);
    -ms-transform: rotate(45deg) scale(1);
    transform: rotate(45deg) scale(1);
    opacity:1;
    left: 3px;
    top: -1px;
    width: 6px;
    height: 12px;
    border: solid #000000;
    border-width: 0 2px 2px 0;
    background-color: transparent;
    border-radius: 0;
  }
  
  
  
  /* For Ripple Effect */
  .checkbox-label .checkbox-custom::before {
      position: absolute;
      content: "";
      left: 10px;
      top: 10px;
      width: 0px;
      height: 0px;
      border-radius: 5px;
      border: 2px solid #FFFFFF;
      -webkit-transform: scale(0);
      -ms-transform: scale(0);
      transform: scale(0);  
  }
  
  .checkbox-label input:checked ~ .checkbox-custom::before {
      left: -3px;
      top: -3px;
      width: 15px;
      height: 15px;
      border-radius: 5px;
      -webkit-transform: scale(3);
      -ms-transform: scale(3);
      transform: scale(3);
      opacity:0;
      z-index: 999;
      transition: all 0.3s ease-out;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
  }
  .actionButtons {
      width: 100%;
      float: right;
      border-radius: 5px;
      background: transparent;
      border: 1px solid #ffffff;
      color:white;
      margin-top: 10px;
      font-size: 8px;
      min-width: 85px;
      padding: 9px 15px 7px;
  
  }
  .actionButtons:hover {
      background: #ffffff;
      border-radius: 5px;
  }
  
  .thanks_message {
      position: absolute;
      z-index: 9999;
      width: 100%;
      height: 100%;
      top:0px;
      left:0px;
      background: black;
      text-align: center;
      padding-top: 40px;
      display: none;
  }
  .stay{
      padding-left:40px !important;
      padding-top: 6px;
  }
  .buttonDiv{
      padding-top:50px;
  }
  body.loaded .main-menu-sidebar-panel{
      z-index:9999 !important;
  }
  .emailSubmit{
      height: 25px;
      font-size: 16px;
      padding: 0px;
      padding-top: 5px;
      min-width: auto !important;
  }
  .fa-times-thin:before {
    content: '\00d7';
  }
  .closeSelect{
      max-width: 100px;
  }
  @media screen and (max-width: 767px) {
    .stay{
        text-align:center;
    }
    .optionDetail{
        margin-bottom:15px;
    }
    .actionButtons{
        width: 100%;
      height: 50px;
      float:none;
      margin-top:0px;
      border-radius:5px;
      font-size:11px;
  
    }
    .buttonDiv{
        padding-top:0px;
      text-align:center;
    }
    .cancelparent {
      padding-left: 5px !important;
      padding-right: 5px !important;
    }
    .cancelSelect{
        width: 100% !important;
      font-size: 48px;
      padding: 0px;
      font-weight: 100;
      color: #ffffff;
      min-width: auto;
  
    }
    .closeSelect{
      width: 100% !important;
      font-size: 46px;
      padding: 0px;
      font-weight: 100;
      color: #ffffff;
      min-width: auto;
    }
    .errorMsg{
      margin-top:20px;
    }
    .stickyFooter{
        overflow-y:scroll;
      max-height:500px;
    }
    .thanks_message {
         padding-top: 150px;
    }
    .stay{
      padding-left:0px !important;
    }
  
  }
  /* Sticky Footer */

  .slider-content .inner-bottom{
      bottom:40px;
  }


#redeem_form{
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: #f7f7f7;
  padding: 50px 15px;
}
#redeem_form label{
  font-size: 15px;
  font-family: garamond-premier-pro-display,serif;
  color: #000;
  display: inline-block;
  margin-right: 25px;
}
#redeem_form .form-control{
  display: inline-block;
  max-width: 300px;
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
}
#redeem_form .btn.btn-default{
  position: relative;
  top: 0;
  display: inline-block;
  max-width: 485px;
  padding: 14px 15px 13px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  -moz-transition: .3s;
  transition: .3s;
  text-align: center;
  white-space: normal;
  text-decoration: none!important;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-width: 1px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  font-family: univers,Helvetica,Arial,sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #fff;
  border-color: #000;
  width: 100%;
  background-color: #000;
  margin-top: 20px;
}
#redeem_popup {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 99999;
  text-align: center;
  background: rgb(0 0 0 / 51%);
}

#redeem_popup .popup_content {
  text-align: center;
  width: 500px;
  background: #ffffff;
  min-height: 300px;
  margin: 0 auto;
  margin-top: 150px;
  position: relative;
  padding: 75px 15px;
}

#start_learning_link {
  display: none;
}

#redeem_popup .popup_content .close {
  position: absolute;
  right: 4%;
  top: 4%;
}


input[type=number].product-qty {
  -moz-appearance: textfield;
}
.product-quantity-wrapper {
    height: 100%;
    align-items: center;
}
.product-quantity-wrapper .product-quantity{
	height:auto !important;
	width:50px;
}
.product-quantity-wrapper .product-quantity .product-qty{
	width:100%;
}
/* Chrome, Safari, Edge, Opera */
input.product-qty::-webkit-outer-spin-button,
input.product-qty::-webkit-inner-spin-button{
  -webkit-appearance: none;
  margin: 0;
}
.product-quantity-wrapper .product-quantity-decrease, .product-quantity-wrapper .product-quantity-increase {
    display: block;
    width: 20px !important;
    height: 25px !important;
    text-align: center;
    border: 1px solid #7f7f7f;
    border-radius: 1px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 5px;
}

.product-quantity {
    padding-right: 0px !important;
    padding-left: 0px !important;
    text-align: center !important;
    color: #7f7f7f !important;
}
.product-quantity-wrapper .product-quantity {
    height: auto !important;
    width: 40px;
}

.product-qty {
	border-right: hidden !important;
    border-left: hidden !important;
    height: 25px;
    border-width: 1px;
    text-align: center;
    border-style: inset;
		padding-top:2px;
	
    border-top-color: lightgrey;

}   
.product-qty:focus{
    border-width: 1px;
    border-style: inset;
    border-radius: 0px !important;
    border-color: -internal-light-dark(rgb(118, 118, 118), rgb(195, 195, 195));
    border-image: initial;
}
.product-quantity-wrapper .product-quantity-decrease {
	border-right:hidden !important;
}


.product-quantity-wrapper .product-quantity-increase {
	border-left:hidden !important;
}
.product-quantity-wrapper{
	height:auto !important;
	padding-top:10px;
}

.video_progress_button {
  overflow: hidden;
  position: relative;
}
.video_progress_button::before{
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  height: 100%;
  width: 100%;
  background: rgb(0 255 0 / 20%);
  border-radius: 0;
}

.page-overlay.open {
    visibility: visible;
    opacity: 0.7!important;
    filter: opacity(70%);
}
.page-overlay {
    position: fixed;
    z-index: 15;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    visibility: hidden;
    transition: .2s;
    opacity: 0;
    background-color: #000;
}

/* account setting dashboard css */
 
.container-fluid {
  padding-right: 30px;
  padding-left: 30px; }
  @media (max-width: 1279px) {
    .container-fluid {
      padding-right: 20px;
      padding-left: 20px; } }
  @media (max-width: 767px) {
    .container-fluid {
      padding-right: 16px;
      padding-left: 16px; } }
  .container-fluid .row {
    margin-right: -15px;
    margin-left: -15px; }
    @media (max-width: 1279px) {
      .container-fluid .row {
        margin-right: -10px;
        margin-left: -10px; } }
    @media (max-width: 767px) {
      .container-fluid .row {
        margin-right: -8px;
        margin-left: -8px; } }
  .container-fluid [class*="col-"] {
    padding-right: 15px;
    padding-left: 15px; }
    @media (max-width: 1279px) {
      .container-fluid [class*="col-"] {
        padding-right: 10px;
        padding-left: 10px; } }
    @media (max-width: 767px) {
      .container-fluid [class*="col-"] {
        padding-right: 8px;
        padding-left: 8px; } }
  .container-fluid.gutter-zero {
    padding-right: 0;
    padding-left: 0; }
    .container-fluid.gutter-zero .row {
      margin-right: 0;
      margin-left: 0; }
    .container-fluid.gutter-zero [class*="col-"] {
      padding-right: 0;
      padding-left: 0; }

@media (min-width: 992px) {
  .row .col-5-items {
    width: 20%; } }

.container-fluid.container-full {
  padding-right: 0;
  padding-left: 0; }
  .container-fluid.container-full .row {
    margin-right: 0;
    margin-left: 0; }

.container-narrow {
  max-width: 670px;
  margin-left: auto;
  margin-right: auto; }

.container-extra-narrow {
  max-width: 340px;
  margin-left: auto;
  margin-right: auto; }

.title-sans {
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 700;
  margin-bottom: 20px; }

  
.page_account-content .orderhistory-list .orderhistory_detail {
  cursor: pointer; }
.page_account-content .orderhistory-left-col,
.page_account-content .orderhistory-right-col {
  margin-bottom: 40px; }
  @media (max-width: 991px) {
    .page_account-content .orderhistory-left-col,
    .page_account-content .orderhistory-right-col {
      margin-bottom: 30px; } }
  @media (max-width: 767px) {
    .page_account-content .orderhistory-left-col,
    .page_account-content .orderhistory-right-col {
      margin-bottom: 20px; } }

.page_account-sidebar {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: sticky;
  top: 0;
  max-width: 250px;
  height: calc(100vh - 90px);
  transition: 0.2s;
  border-right: 1px solid #ccc; }
  @media (max-width: 991px) {
    .page_account-sidebar {
      display: none; } }
  body.scrolled-down .page_account-sidebar {
    top: 0;
    height: 100vh; }
  body.scrolled-up .page_account-sidebar {
    top: 90px;
    height: calc(100vh - 90px); }
  .page_account-sidebar .title-sans {
    font-size: 16px; }
  .page_account-sidebar .account-sidebar-top {
    padding-top: 45px;
    padding-right: 30px;
    transition: 0.2s; }
    @media (max-width: 1279px) {
      .page_account-sidebar .account-sidebar-top {
        padding-right: 10px; } }
    @media (max-width: 767px) {
      .page_account-sidebar .account-sidebar-top {
        padding-right: 8px; } }
  .page_account-sidebar .account-sidebar-bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 85px; }

.page_account-content {
  max-width: calc(100% - 250px); }
  @media (max-width: 991px) {
    .page_account-content {
      max-width: none; } }
  @media (max-width: 991px) {
    .page_account-content .wrapper > .row > .col-xs-12 {
      margin-top: 50px; }
      .page_account-content .wrapper > .row > .col-xs-12:first-child {
        margin-top: 0; } }
  .page_account-content .wrapper {
    font-size: 16px;
    line-height: 1.5;
    max-width: 900px;
    min-height: calc(100vh - 90px);
    margin: 0 auto;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 30px; }
    @media (max-width: 1279px) {
      .page_account-content .wrapper {
        min-height: calc(100vh - 50px);
        padding-left: 10px; } }
    @media (max-width: 991px) {
      .page_account-content .wrapper {
        padding-right: 0;
        padding-left: 0; } }
  .page_account-content .title,
  .page_account-content .title_account,
  .page_account-content h1,
  .page_account-content h2,
  .page_account-content h3,
  .page_account-content h4,
  .page_account-content h5 {
    font-weight: 700; }
  .page_account-content .title_account {
    font-size: 19px;
    margin-bottom: 50px; }
    @media (max-width: 991px) {
      .page_account-content .title_account {
        margin-bottom: 20px; } }
  .page_account-content .title_underline {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 0;
    padding-bottom: 12px;
    border-bottom: 1px solid #000; }
  .page_account-content .title_group {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 22px;
    padding-bottom: 12px;
    border-bottom: 2px solid #000; }
  .page_account-content .account_group {
    margin-bottom: 30px;
    position: relative; }
  .page_account-content .account_group_border {
    padding-top: 20px;
    padding-bottom: 15px;
    border-top: 1px solid #ccc; }
    .page_account-content .account_group_border:first-child {
      border-top: 0; }
    .page_account-content .account_group_border:last-child {
      border-bottom: 1px solid #000; }
  .page_account-content .form.form-mute {
    pointer-events: none;
    opacity: .2; }
  .page_account-content .form label {
    font-size: 10px;
    margin-bottom: 4px;
    letter-spacing: 1.5px;
    text-transform: uppercase; }
    .page_account-content .form label .label_edit {
      float: right;
      text-decoration: none;
      color: #7f7f7f; }
      .page_account-content .form label .label_edit:hover {
        text-decoration: underline;
        color: #000; }
  .page_account-content .form .input-filled {
    min-height: 24px;
    margin-top: 10px; }
    .page_account-content .form .input-filled.input-filled-flex {
      display: flex;
      align-items: center;
      justify-content: space-between; }
  .page_account-content .form .buttons {
    display: flex;
    justify-content: flex-start;
    width: 100%; }
    .page_account-content .form .buttons .btn-submit {
      margin-left: auto; }
      .page_account-content .form .buttons .btn-submit:first-child {
        margin-left: 0; }
  .page_account-content .form .user_main-address input {
    display: none; }
  .page_account-content .form .user_main-address .select-main-address {
    display: block;
    padding: 15px 20px;
    border: 1px solid #000;
    margin: 10px 0;
    touch-action: manipulation;
    cursor: pointer;
    border-radius: 3px;
    transition: .3s; }
    .page_account-content .form .user_main-address .select-main-address:hover {
      box-shadow: inset 0 0 0 1px #000; }
    .page_account-content .form .user_main-address .select-main-address .input-filled {
      margin: 0;
      font-size: 16px;
      letter-spacing: 1.5px;
      text-transform: none; }
      .page_account-content .form .user_main-address .select-main-address .input-filled span {
        font-size: 10px;
        margin-bottom: 4px;
        letter-spacing: 1.5px;
        text-transform: uppercase; }
  .page_account-content .form .user_main-address input:checked + .select-main-address {
    box-shadow: inset 0 0 0 1px #000; }
  .page_account-content .table-order-history > tbody > tr:hover {
    cursor: pointer; }
  .page_account-content .table-order-history > tbody > tr > td {
    text-transform: capitalize; }
      
.page_account-content .form label, form label {
  display: block;
  margin-bottom: 4px;
  color: #000;
  font-family: univers, Helvetica, Arial, sans-serif;
  font-size: 10px;
  font-weight: 300;
  line-height: normal;  
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

button.btn.btn-primary-outline.btn-submit.accountdata_save {
  color: #000;
  border-color: #000;
  background-color: transparent;
  min-width:80px;
}

button.btn.btn-primary-outline.accountdata_edit {
  color: #000;
  border-color: #000;
  background-color: transparent;
  min-width:60px;
}

.btn-primary-outline, a.btn-primary-outline {
  color: #000;
  border-color: #000;
  background-color: transparent;
}

btn btn-primary-outline btn-submit addressdata_new{
  color: #000;
  border-color: #000;
  background-color: transparent;
  min-width:100px;
}

.main-menu-sidebar-panel {
  padding-top: 90px;
}

@media (max-width: 991px) {
  .main-menu-sidebar-panel {
    z-index: 5000;
    top: 50px;
    width: 100%;
    padding-top: 0; } }

.table>thead>tr>th {
  font-size: 10px;
  margin-bottom: 4px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-color: #000;
  font-weight:100;
}

.table>thead>tr>td {
  padding: 15px !important;
  line-height: 1.25 !important;
  vertical-align: top;
  border-top: 1px solid #ddd;
  padding: 15px 10px;
  border-color: #ccc;
  font-weight: 300;
}

.table.table-orders {
  margin-bottom: 40px; }
  .table.table-orders > tbody > tr > td, .table.table-orders > tbody > tr > th, .table.table-orders > tfoot > tr > td, .table.table-orders > tfoot > tr > th, .table.table-orders > thead > tr > td, .table.table-orders > thead > tr > th {
    min-width: 90px;
    padding-right: 10px;
    padding-left: 10px;
    text-align: right; }
    @media (max-width: 991px) {
      .table.table-orders > tbody > tr > td, .table.table-orders > tbody > tr > th, .table.table-orders > tfoot > tr > td, .table.table-orders > tfoot > tr > th, .table.table-orders > thead > tr > td, .table.table-orders > thead > tr > th {
        min-width: inherit; } }
    @media (max-width: 767px) {
      .table.table-orders > tbody > tr > td, .table.table-orders > tbody > tr > th, .table.table-orders > tfoot > tr > td, .table.table-orders > tfoot > tr > th, .table.table-orders > thead > tr > td, .table.table-orders > thead > tr > th {
        padding-right: 5px;
        padding-left: 5px; } }
    .table.table-orders > tbody > tr > td:first-child, .table.table-orders > tbody > tr > th:first-child, .table.table-orders > tfoot > tr > td:first-child, .table.table-orders > tfoot > tr > th:first-child, .table.table-orders > thead > tr > td:first-child, .table.table-orders > thead > tr > th:first-child {
      width: 100%;
      padding-left: 0;
      text-align: left; }
    .table.table-orders > tbody > tr > td:last-child, .table.table-orders > tbody > tr > th:last-child, .table.table-orders > tfoot > tr > td:last-child, .table.table-orders > tfoot > tr > th:last-child, .table.table-orders > thead > tr > td:last-child, .table.table-orders > thead > tr > th:last-child {
      padding-right: 0; }
  .table.table-orders > thead > tr > th {
    margin-bottom: 0;
    padding-top: 6px;
    padding-bottom: 12px;
    border-bottom: 1px solid #000; }
    .table.table-orders > thead > tr > th strong {
      font-size: 19px;
      font-weight: 700;
      display: block;
      text-transform: none; }
  .table.table-orders > tfoot > tr > th {
    margin-bottom: 0;
    padding-top: 6px;
    padding-bottom: 12px;
    border-top: 1px solid #000; }
    .table.table-orders > tfoot > tr > th strong {
      font-size: 19px;
      font-weight: 700;
      display: block;
      text-transform: none; }

.table.table-order-summary {
  margin-bottom: 10px; }
  .table.table-order-summary tbody > tr > td {
    min-width: 90px;
    padding: 2px;
    text-align: left;
    border: none;
    color: #7f7f7f;
    font-size: 16px;
    padding-left: 10px;
    padding-right: 10px; }
    @media (max-width: 991px) {
      .table.table-order-summary tbody > tr > td {
        min-width: inherit; } }
    @media (max-width: 767px) {
      .table.table-order-summary tbody > tr > td {
        padding-right: 5px;
        padding-left: 5px; } }
    .table.table-order-summary tbody > tr > td:first-child {
      width: 100%;
      padding-left: 0;
      text-align: left; }
    .table.table-order-summary tbody > tr > td:last-child {
      padding-right: 0; }
  .table.table-order-summary tbody > tr:last-child {
    padding-bottom: 6px; }
  .table.table-order-summary thead > tr > th {
    min-width: 90px;
    padding: 2px;
    text-align: left;
    border: none;
    color: #7f7f7f;
    font-size: 16px;
    padding-left: 10px;
    padding-right: 10px;
    font-weight: 700;
    text-transform: none;
    color: #000;
    border: none; }
    @media (max-width: 991px) {
      .table.table-order-summary thead > tr > th {
        min-width: inherit; } }
    @media (max-width: 767px) {
      .table.table-order-summary thead > tr > th {
        padding-right: 5px;
        padding-left: 5px; } }
    .table.table-order-summary thead > tr > th:first-child {
      width: 100%;
      padding-left: 0;
      text-align: left; }
    .table.table-order-summary thead > tr > th:last-child {
      padding-right: 0; }
  .table.table-order-summary tfoot > tr > td {
    border: none;
    border-top: 1px solid #000;
    min-width: 90px;
    padding: 15px;
    text-align: left;
    color: #7f7f7f;
    font-size: 16px;
    padding-left: 10px;
    padding-right: 10px;
    font-weight: 700;
    text-transform: none;
    color: #000; }
    @media (max-width: 991px) {
      .table.table-order-summary tfoot > tr > td {
        min-width: inherit; } }
    @media (max-width: 767px) {
      .table.table-order-summary tfoot > tr > td {
        padding-right: 5px;
        padding-left: 5px; } }
    .table.table-order-summary tfoot > tr > td:first-child {
      width: 100%;
      padding-left: 0;
      text-align: left; }
    .table.table-order-summary tfoot > tr > td:last-child {
      padding-right: 0; }


.subs {
font-weight: bold;
font-size: 16px;
padding-bottom: 5px;
border-bottom: 2px solid black;
padding-left: 0px !important;
font-family: Univers, Helvetica, Arial, sans-serif;
}

.italicSubs {
font-size: 10px;
letter-spacing: 1px;
font-weight: 100;
padding-left: 0px !important;
font-family: monospace;
padding-top: 15px;
padding-bottom: 15px;
font-family: Univers, Helvetica, Arial, sans-serif;
}

.topMargin {
padding-top: 5px;
}
.checkbox-label2 {
display: block;
position: relative;
margin: 0px;
cursor: pointer;
font-size: 22px;
line-height: 5px;
height: auto;
width: 100%;
clear: both;
}

.confirmSelect2 {
border: 1px solid #353535;
border-radius: 5px;
color: #333;
font-size: 12px;
background: transparent;
padding: 5px;
padding-left: 10px;
padding-right: 10px;
font-family: Univers, Helvetica, Arial, sans-serif;
}
.btn-primary-outline:focus, .btn-primary-outline:hover, a.btn-primary-outline:focus, a.btn-primary-outline:hover {
color: #000;
border-color: #000;
background-color: transparent;
}
.optionhead2 {
padding-left: 30px;
text-align: justify;
font-size: 14px;
padding-top: 7px;
font-weight: 300;
font-family: Univers, Helvetica, Arial, sans-serif;
}

.optionDetail2 {
padding-left: 30px;
padding-top: 5px;
padding-bottom: 10px;
font-size: 10px;
font-family: Univers, Helvetica, Arial, sans-serif;
}

.options2 {
  width: 15px;
  height: 15px;
  z-index: 999;
}

.successMsg {
  font-size: 12px;
  font-weight: 300;
  min-height: 15px;
  font-family: Univers, Helvetica, Arial, sans-serif;
  color: #50C878;
}

.errorMsg {
  font-size: 12px;
  font-weight: 300;
  min-height: 15px;
  font-family: Univers, Helvetica, Arial, sans-serif;
  color: red;
}

.link-uppercase{
  text-transform: uppercase;
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 1.3px;
  color: #7f7f7f;
  text-decoration: none;
}


/* Styling Checkbox Starts */
.checkbox-label2 {
  display: block;
  position: relative;
  margin: 0px;
  cursor: pointer;
  font-size: 22px;
  line-height: 5px;
  height: auto;
  width: 100%;
  clear: both;
}

.checkbox-label2 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkbox-label2 .checkbox-custom2 {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 15px;
  width: 15px;
  background-color: transparent;
  border-radius: 0px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  border: 1px solid #000000;
}


.checkbox-label2 input:checked ~ .checkbox-custom2 {
  background-color: #FFFFFF;
  border-radius: 0px;
  -webkit-transform: rotate(0deg) scale(1);
  -ms-transform: rotate(0deg) scale(1);
  transform: rotate(0deg) scale(1);
  opacity: 1;
  border: 2px solid #000000;
}


.checkbox-label2 .checkbox-custom2::after {
  position: absolute;
  content: "";
  left: 12px;
  top: 12px;
  height: 0px;
  width: 0px;
  border-radius: 5px;
  border: solid #009BFF;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(0deg) scale(0);
  -ms-transform: rotate(0deg) scale(0);
  transform: rotate(0deg) scale(0);
  opacity:1;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}


.checkbox-label2 input:checked ~ .checkbox-custom2::after {
  -webkit-transform: rotate(45deg) scale(1);
  -ms-transform: rotate(45deg) scale(1);
  transform: rotate(45deg) scale(1);
  opacity: 1;
  left: 3px;
  top: -3px;
  width: 6px;
  height: 14px;
  border: solid #000000;
  border-width: 0 2px 2px 0;
  background-color: transparent;
  border-radius: 0;
}



/* For Ripple Effect */
.checkbox-label2 .checkbox-custom2::before {
  position: absolute;
  content: "";
  left: 10px;
  top: 10px;
  width: 0px;
  height: 0px;
  border-radius: 5px;
  border: 2px solid #FFFFFF;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);  
}

.checkbox-label2 input:checked ~ .checkbox-custom2::before {
  left: -3px;
  top: -3px;
  width: 15px;
  height: 15px;
  border-radius: 5px;
  -webkit-transform: scale(3);
  -ms-transform: scale(3);
  transform: scale(3);
  opacity:0;
  z-index: 999;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}

.account_group .form .form-control, form .form-control {
  width: 100%;
  height: 30px;
  margin-top: 0;
  margin-bottom: 0;
  padding: 5px 0 !important;
  transition: .6s cubic-bezier(.075,.82,.165,1);
  color: #000 !important;
  border: 1px solid !important;
  border-bottom: 1px solid #000;
  border-radius: 0;
  outline: 0 !important;
  background-color: #fff !important;
  box-shadow: none !important;
  font-size: 16px !important;
  font-weight: 300 !important;
}

.account_group .form .form-error-info, form .form-error-info {
  display: inline-block;
  overflow: hidden;
  max-width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  position: absolute;
  bottom: -16px;
  left: 0;
  display: none;
  color: #ff001f;
  font-family: Univers, Helvetica, Arial, sans-serif;
  font-size: 12px;
  line-height: normal;
  }

  button.btn.btn-link.btn-remove.address-remove {
    color: #7f7f7f !important;
    min-width: 110px;
    font-size: 9px;
    font-weight: 300;
  }
  
  button.btn.btn-link.btn-cancel.address-cancel {
    color: #7f7f7f !important;
    min-width: 110px;
    font-size: 9px;
    font-weight: 300;
  }
  
  button.btn.btn-primary-outline.btn-submit.address-save{
  padding: 9px 15px 7px;
  min-width: 110px;
  font-size: 9px;
  font-weight: 300;
  }