@font-face {
    font-family: "Roboto-Light";
    src: url("/static/fonts/Roboto-Light.ttf");
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--lightblue);
    --bs-btn-border-color: var(--lightblue);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--darkblue);
    --bs-btn-hover-border-color: var(--darkblue);
    --bs-btn-focus-shadow-rgb: 49,132,253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--darkblue);
    --bs-btn-active-border-color: var(--darkblue);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #0d6efd;
    --bs-btn-disabled-border-color: #0d6efd;
}

.btn{
    border-radius: 0;
}

ul.pagination{
    border-radius: 0;
    --bs-pagination-border-radius: 0;
}

.dtq_list{
	list-style-type: "〉";
}

.alert {
    border-radius: 0;
}

html, body{
    font-family: "Roboto-Light";
/*    font-size: 19px; */
}

.flex-wrapper {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  justify-content: space-between;
  padding-top:20px;
}

h2 {
    color: #0099db !important;
    padding-top:20px;
    padding-bottom:10px;
}

ul.nav{
    font-size: 20px;
}

.navbar-nav>li>a{
    color: #122b52 !important;
}

li.active{
    font-weight: bold;
}

.btn-default{
    background-image: none;
    background-color: #fff;
}

.row-full{
    width: 100vw;
    position: relative;
    margin-left: -50vw;
    left: 50%;
}

.card{
    margin-bottom:20px;
    border-radius:0;
}

.card-footer{
    background:none;
    text-align:right;
    font-size:0.8em;
}

.panel{
    margin:0;
}

.panel-default{
    margin-left:0px;
    margin-right:10px;
    margin-bottom:10px;
}

.vert-center{
    height:20px;
    display: inline-flex;
    align-items: center;
    vertical-align:middle;
}

.vert-center img{
    margin-right:10px;
}

.card >.card-header{
    background-color: white;
    background-image: none;
    font-weight: bold;
}

.panel-heading-landingpage{
    font-weight:bold;
    color:#333;
    line-height: 1.42857143;
    text-align:center;
    padding-top:30px;
    padding-bottom:20px;
}

.shadow {
    -webkit-box-shadow: 0 6px 4px -4px rgba(0,0,0,0.2);
    -moz-box-shadow: 0 6px 4px -4px rgba(0,0,0,0.2);
    box-shadow: 0 6px 4px -4px rgba(0,0,0,0.2);
}

.equal {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.td_symbol {
    text-align:center;
    font-size:24px;
    vertical-align:middle;
}

.td_currency {
    text-align:center;
}

.order-summary{
    width:100%;
}

.order-summary table td{
    padding:5px;
}

#login_user_form, #register_user_form, #change_password_form, #forgot_password_form, #reset_password_form{
    min-width:400px;
    max-width:600px;
}

/* Set the fixed height of the footer here */
#footer {
    font-size:14px;
    margin-top:20px;
    padding-top:20px;
    padding-bottom:20px;
    background-color: #122b52; /* dark dtq blue */
    color: white;
}

/*
  1. Use the same color as modal.
  2. Ensure that the sticky layer is above the modal content.
*/

.modal-content {
    border-radius:0;
}

/* Header fixed to the top of the modal */
.modal-header--sticky {
  position: sticky;
  top: 0;
  background-color: inherit; /* [1] */
  z-index: 1055; /* [2] */
}

/* Footer fixed to the bottom of the modal */
.modal-footer--sticky {
  position: sticky;
  bottom: 0;
  background-color: inherit; /* [1] */
  z-index: 1055; /* [2] */
}

.carousel .image-thumbnail{
    width: 80%;
    padding:0;
    border:0;
}

.carousel-caption {
    color: #000;
    width: 80%;

    transform: translateX(-50%);

    position: relative;
    right: 15%;
    top: 15px;
    left: 50%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    text-align: justify;
}

.carousel-indicators {
    position: absolute;
    right: 0;
    top: -25px;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 1rem;
    margin-left: 15%;
}

.carousel-control-next{
    justify-content:right;
}

.carousel-control-prev{
    justify-content:left;
}

.carousel-control-next,
.carousel-control-prev /*, .carousel-indicators */ {

    /*filter: invert(100%);*/
}


/* css phone container */
.phone,
.phone img {
  height: 100%;
}

.phone {
  position: relative;
}

.phone img {
  display: block;
  border: 0.5vh solid #111;
  border-radius: 1.5vh;
}

/* mobile pricing tabs */

#mobile-tabs li a{
    font-size:16px;
    color: black;
    padding-top:5px;
    padding-left:10px;
    padding-right:10px;
    padding-bottom:5px;
    text-decoration: none;
}

#mobile-tabs li a.active{
    text-decoration:underline;
    font-weight:bold;
    border:1px solid var(--bs-primary-bg-subtle);
    border-bottom: none;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}