/*
  StarPitchers.CSS
  1. HTML TAGS
  2. LINKS MENUS
  3. SHELL
  4. FOOTER MENU
  5. MISC.
  6. MEDIA QUERIES
  
  COLOR PALETTE
  =============
  Navy   #091047
  Blue   #029AFB
  Red    #BA2D0B
  Orange #f45d01
  LtGrey #E6E7EC (main borders/boxes)
  


* {
  box-sizing: border-box;
  margin: 0;
  outline: 0;
  padding: 0;
}

NEW COLORS FOR 2023 - CARL/BRANDON
#000000 - Color for text on light background
#ffffff - Color for text on dark background, main site-wide background color
#193d6c - Dominant color
#193d7c - Blue for links and smaller buttons
#212529 - Main dark grey, used for header and footer
#c2c2c2 - Lighter grey, used for certain borders
#d7a31a - Accent color
#00784e - Accent color
#2a2f34 - Black with dark blue shade

*/

/* HTML TAGS 
====================================== */
html, 
body {
  margin:0 auto;
  padding:0;
  background: #FFF; /* #E6E7EC */
  font-family: 'Roboto Condensed', 'Roboto', arial, helvetica, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
}
/** MIN-HEIGHT WITH FLEX ADDED TO FIX SHORT PAGES WITH FLOATING FOOTERS **/
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body {
  padding-top:0;
}
img {
  vertical-align: top;
}
h1#title, h1.title {
  color:#2C2C2C;
  font-weight:700;
  font-size: 34px;
  letter-spacing: 1px;
  text-align: center;
  line-height:1.1;
  margin: 27px auto;  
}
h1#title2, h1.title2 {
  color:#2C2C2C;
  font-weight:700;
  font-size: 34px;
  letter-spacing: 1px;
  text-align: center;
  line-height:1.1;
  margin: 0 0 20px 0;
  text-shadow: 0px 2px 2px #C2C2C2 !important;
}

h2 {
  font-size: 38px;
  font-weight:900;
  color:#091047;
  margin-top:0;
}
.h2sub {
  margin-top:-50px;
}
h3, h4, h5 {
  font-weight:500;
}
h3 {
  font-size:36px;
  color:#000;
}
h4 {
  font-size: 28px;
  color: #000;
  margin: 30px 0 10px 0;
}
h4.modal-title {
  margin-top:0;
}
h5 {
  font-size:22px;
  color:#000;
  margin:20px 0 10px 0;
  line-height:1.4;
}
h6 {
  margin-bottom:15px;
  font-size: 14px;
  font-weight:500;
}

ol li, ul li {
  margin: 0 0 0 40px;
}
p {
  margin:0 0 15px 0;
}
b, strong {
  font-weight:700;
}
.img-rounded {
  border-radius:6px;
}

body.modal-open {
  padding-right: 0 !important;
}


/* LINKS MENUS
====================================== */
a {
  color: #193D7C;
  text-decoration: none;
}
a:focus, a:hover {
  color: #0653a3;
  text-decoration: underline;
}

/*
#content a {
  color: #193D7C !important;
  text-decoration: none;
}
#content a:focus, #content a:hover {
  color: #193D6C !important;
  text-decoration: underline !important;
}
*/

.btn-gray {
  color: #000;
  background-color: #c2c2c2;
  border-color: #999;
}
.btn-gray:hover {
  color: #000;
  background-color: #fff;
  border-color: #999;
}


/* CSS FOR SEARCH RESULTS BUTTONS
====================================== */
.card-results .btn-blue, 
.card-results .btn-blue:focus {
  background: linear-gradient(to bottom,#92BFFC 0,#093DB9 100%);
  background: -moz-linear-gradient(#92BFFC, #093DB9);
  color:#ffffff;
  font-size:14px;
  padding: 0 10px;
  font-weight:bold;
  border-radius:10px;
  white-space: nowrap;
  line-height: 1.5;
  height: 23px;
  margin-top:4px;
}
.card-results .btn-blue:hover  {
  box-shadow: 0px 0px 2px 0px #093DB9;
  -webkit-box-shadow: 0px 0px 2px 0px #093DB9;
  color:#ffffff;
}

.btn-grey, 
.btn-grey:focus,
.btn-grey:visited {
  background: linear-gradient(to bottom,#E6E6EC 0,#BABBC0 100%);
  border-color:#BABBC0;
  color:#464748;
  font-size:14px;
  padding: 0;
  font-weight:bold;
  line-height: 1.4;
  height: 23px;
}
.btn-grey:hover  {
  background: linear-gradient(to bottom,#95C2FE 0,#0C46BE 100%);
  border-color:#95C2FE;
  color:#ffffff;
}
.btn-warning {
  background-color:#f45d01;
  border-color:#D64E00;
  color:#ffffff;
}
.btn-warning:hover {
  background-color:#D64E00;
  border-color:#D64E00;
}
.btn-danger {
  background-color:#BA2D0B;
}
.btn-danger:hover {
  background-color:#A30A00;
}
.btn-xs {
  font-size:12px; 
  padding: 8px;
}

.black {
  color:#000;
}
#back-to-top {
  background-color: #193d7c;
  background-image: url(../images/back-to-top.png);
  background-position: 50% 45%;
  background-repeat: no-repeat;
  border-radius: 20px;
  box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.7);
  display: block;
  height: 40px;
  position: fixed;
  bottom: 20px;
  transition: right 0.3s ease-in-out;
  width: 40px;
  z-index: 1000;
}
#back-to-top:hover {
  background-color: #0653a3;
}
#back-to-top.btt-hide {
  right: -50px;
}
#back-to-top.btt-show {
  right: 20px;
}
.title {
  font-size:36px;
  font-weight:700;
  padding:10px 0;
  color:#4B4B4B;
  line-height:1.2;
}
.subtitle {
  font-size:24px;
  font-weight:700;
  padding:17px 0 7px;
  color:#4B4B4B;
}
.data {
  font-size:18px;
  margin-bottom:10px;
}
.data ul {
  margin:0;
  padding:0;
  list-style:none;
}
a#logout {
  background:#029afb;
  margin:-20px 0 -20px 5px;
  color:#FFFFFF;
  padding:20px 10px 10px;
  text-shadow: 1px 1px 0 #000;
}
a:hover#logout {
  color:#000000;
}
#followus {
  float:right;
}
.btn-wide {
  max-width: 50%;
}
#leftside-links {
  margin-top:0;
}
#leftside-links ul li{
  list-style:none;
  margin: 0 0 10px 25px;
}


a.searchlink:link,  
a.searchlink:visited,
a.searchlink:hover,
a.searchlink:active { 
  text-decoration:none;
  color:#0000ee;
}
a.searchlink:hover { 
  text-decoration:underline;
}
.searchlinkOff { 
  color:#999999; 
}


/* SHELL 
====================================== */
#header {
  /* max-width:1424px;
  background: #FFF;
  margin: 0 auto 0;
  background-image: url(../images/bg_collage_sm.jpg);
  background-position: top center;
  height: 10px;
  display: flex;
  align-items: center;
  */
  background: #FFF;
  margin: 0 auto 0;
  
}
#header-box {
  height: 94px;
  width: 100%;
  background-color: #212529;
  top: 0;
  right:0;
  left:0;
  margin-bottom: -90px;
  position: fixed;
  z-index: 2;
}

#header h1 {
  color:#FFF;
  text-align:center;
  vertical-align:middle;
  line-height:1.2;
  text-shadow:1px 1px 10px #1A3A85;
}
.container, .container-xl {
  background:#fff;
}
#site-footer .container-xl {
  background:#212529;
}
#site-footer .container {
  background-color: #212529;
}

#content {
  padding-top:2px;
}
.pad-rt {
  padding-right:90px
}
#main {
  padding-top: 0;
  padding-bottom: 20px;
  background: #FFFFFF;
}
#main-next {
  margin-top: 0;
}
#main-writer {
  padding-top: 0;
  padding-bottom: 20px;
  background: #FFFFFF;
}
#main-left {
  margin:30px 0 0 0;
  padding:0;
}
.leftmenu {
  padding: 5px;
}
#logo-bar {
  position:relative; 
  z-index:9999; 
  background:#FFF; /*E6E7EC*/
  padding:0 20px;
}



/* BOOTSTRAP AND MAJOR SITE CLASSES 
====================================== */
a.uline {
  text-decoration:none;
}
a.uline:hover {
  text-decoration:underline;
}
.accordion .card-header {
  background-color: #fff !important;
}
.bold {
  font-weight:700;
}
.btn {
  border-radius: 10px;
}
.btn2-primary, 
.btn-primary, 
.btn-danger, 
.btn-blue, 
.btn-blue:focus, 
a.btn2-primary:link {
  color: #fff;
  background-color: #193d7c !important;
  border-color: #193d7c !important;
  box-shadow: 0px 2px 2px #2a2f34 !important;
}
.btn2-primary:hover, 
.btn-primary:hover, 
.btn-danger:hover, 
.btn-blue:hover, 
a.btn2-primary:hover {
  color: #193d7c !important;
  background-color: #fff !important;
  border-color: #193d7c !important;
}
.btn-black {
  color: #fff;
  background-color: #2a2f34 !important; 
  border-color: #2a2f34 !important;
  box-shadow: 0px 2px 2px #2a2f34 !important;
}
.btn-black:hover {
  color: #2a2f34 !important;
  background-color: #fff !important;
  border-color: #2a2f34 !important;
}

.btn-link {
  background-color: #fff !important;
  color: #193d7c !important;
}
.card {
  border: 1px solid #193D7C !important;
  border-radius: 10px !important; 
  box-shadow: 0px 2px 2px #2a2f34 !important;
}
.card-body { 
  border-radius: 0 0 10px 10px !important;
  background-color: #fff !important;
}
.card-header {
  padding: .5rem 1.25rem; 
  border-radius: 7px 7px 0 0 !important;
}
.card.no-header { /* cards with no card-header - class="card no-header" */
  border: 1px solid #2A2F34 !important;
}
.card-body.no-header { /* card-body with no card-header - class="card-body no-header" */
  border-radius: 10px !important; 
}
.card-header.no-header {
  border-bottom: none;
}
.card-ip {
  border: 1px solid #c2c2c2 !important;
  box-shadow: none !important;
}
.card-ip .card-header {
  border-radius: 0 !important;
}
.custom-control-input:checked~.custom-control-label::before {
  background-color: #193D7C;
  border-color: #193D7C;
}
.page-link {
  color: #193D7C !important;
}
.page-item.active .page-link {
  background-color: #193D7C;
  border-color: #193D7C;
  color: #fff !important;
}
.quicksearch {
  border: 1px solid #000 !important;
  box-shadow: 0px 2px 2px #2a2f34 !important;
}
.site-shadow {
  box-shadow: 0px 2px 2px #2a2f34;
}
thead {
  background-color: #193d7c !important;
  color: #fff !important;
}




/* FOOTER MENU 
====================================== */
#footer-reveal {
  height:0;
}

#site-footer {
  background: #212529;
  bottom: 0;
  color: #fff;
  font-family: 'Roboto Condensed','Roboto', arial, helvetica, sans-serif;
  font-size: 10px;
  line-height: 12px;
  padding: 15px 0 0 0;
  position: relative;
  text-align: center;
  z-index: 1;
}
#site-footer {margin-top: auto;}
#site-footer nav {
  margin-bottom: 10px;
}
#site-footer .logo {
  margin-top: 30px;
  margin-bottom: 10px;
}
#footer-site-menu {
  font-size: 0;
  line-height: 2;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
#footer-site-menu>li {
  display: inline-block;
  margin: 0;
}
#footer-site-menu>li>span {
  font-size: 16px;
}
#footer-site-menu>li>span:before {
  content: "\00a0\00a0|\00a0\00a0";
}
#footer-site-menu>li:first-child>span:before {
  content: '';
}
#footer-site-menu a {
  color: white;
}
#footer-site-menu a:hover {
  color: #c2c2c2;
}

.foot-social-wrap {
  margin:0 auto 20px; 
  display: inline-block;
}
.footer-social-icons {
  width: 42px; 
  height: 42px;
}

.footer-fb-icon {
  background: url("../images/footer/fb-blue-62.png") no-repeat; 
  background-size: contain;
  display: inline-block;
}
.footer-fb-icon:hover {
  background: url("../images/footer/fb-reverse-62.png") no-repeat;
  background-size: contain;
}
.footer-x-icon {
  background: url("../images/footer/x.png") no-repeat; 
  background-size: contain;
  display: inline-block;
}
.footer-x-icon:hover {
  background: url("../images/footer/x-reverse.png") no-repeat;
  background-size: contain;
}
.footer-ig-icon {
  background: url("../images/footer/ig-blue-62.png") no-repeat; 
  background-size: contain;
  display: inline-block;
}
.footer-ig-icon:hover {
  background: url("../images/footer/ig-reverse-62.png") no-repeat;
  background-size: contain;
}
.footer-bluesky-icon {
  background: url("../images/footer/bluesky.png") no-repeat; 
  background-size: contain;
  display: inline-block;
}
.footer-bluesky-icon:hover {
  background: url("../images/footer/bluesky-reverse.png") no-repeat;
  background-size: contain;
}
.footer-threads-icon {
  background: url("../images/footer/threads.png") no-repeat; 
  background-size: contain;
  display: inline-block;
}
.footer-threads-icon:hover {
  background: url("../images/footer/threads-reverse.png") no-repeat;
  background-size: contain;
}



.social-icon {
  width: 36px; 
  height: 36px;
}

.website-icon {
  background: url("../images/social/website.png") no-repeat; 
  background-size: contain;
  display: inline-block;
}
.website-icon:hover {
  background: url("../images/social/website_reverse.png") no-repeat;
  background-size: contain;
}
.imdb-icon {
  background: url("../images/social/imdb.png") no-repeat; 
  background-size: contain;
  display: inline-block;
}
.imdb-icon:hover {
  background: url("../images/social/imdb_reverse.png") no-repeat;
  background-size: contain;
}
.linkedin-icon {
  background: url("../images/social/linkedin.png") no-repeat; 
  background-size: contain;
  display: inline-block;
}
.linkedin-icon:hover {
  background: url("../images/social/linkedin_reverse.png") no-repeat;
  background-size: contain;
}
.instagram-icon {
  background: url("../images/social/instagram.png") no-repeat; 
  background-size: contain;
  display: inline-block;
}
.instagram-icon:hover {
  background: url("../images/social/instagram_reverse.png") no-repeat;
  background-size: contain;
}
.facebook-icon {
  background: url("../images/social/fb-blue-62.png") no-repeat; 
  background-size: contain;
  display: inline-block;
}
.facebook-icon:hover {
  background: url("../images/social/fb-reverse-62.png") no-repeat;
  background-size: contain;
}
.x-icon {
  background: url("../images/social/x.png") no-repeat; 
  background-size: contain;
  display: inline-block;
}
.x-icon:hover {
  background: url("../images/social/x-reverse.png") no-repeat;
  background-size: contain;
}
.bluesky-icon {
  background: url("../images/social/bluesky.png") no-repeat; 
  background-size: contain;
  display: inline-block;
}
.bluesky-icon:hover {
  background: url("../images/social/bluesky-reverse.png") no-repeat;
  background-size: contain;
}
.threads-icon {
  background: url("../images/social/threads.png") no-repeat; 
  background-size: contain;
  display: inline-block;
}
.threads-icon:hover {
  background: url("../images/social/threads-reverse.png") no-repeat;
  background-size: contain;
}


/* MISC. 
====================================== */

.form-control {
  font-weight:300;
}
/* CUSTOM SCROLLBAR IP 03/15/24 MR */
.ip-scrollbar::-webkit-scrollbar {
  width: 10px;
}
.ip-scrollbar::-webkit-scrollbar-track {
  background-color: #7e7e7e66;
  border-radius: .25rem;
}
.ip-scrollbar::-webkit-scrollbar-thumb {
  background-color: #A8A8A8;
  border-radius: .25rem;
}
.hide, .hidden {
  display: none!important;
}
.show {
  display: block!important;
}
.box_grey {
  /* background:#E6E7EC; */
  padding:0 10px 10px 10px;
  border-radius:10px;
  overflow:hidden;
  display: inline-block;
}
.error { 
  color: red;
}
label {
  font-weight:700;
}
label.valid {
  display:inline;
}

#quick-search.card {
  border-color:#ddd;
  margin-bottom: 20px;
  border-radius:6px;
}
#quick-search .card-body {
  background:#EFF2F8;
  padding: 3px 10px;
}
#quick-search .title {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  padding: 10px 0;
  margin-bottom: -5px;
}
#quick-search label {
  font-weight: normal;
  display: block;
  margin: 0;
  font-size: 14px;
}
#quick-search .search {
  font-size: 10px;
}

#quick-search .btn,
#quick-search a.btn,
#quick-search a.btn:visited {
  font-family: arial, helvetica, sans-serif;
  font-weight: bold;
  color: #FFFFFF;
  border-style: none;
  border-radius: 25px;
  background: #093DB9;
  background: linear-gradient(#92BFFC, #093DB9);
  background: -ms-linear-gradient(#92BFFC, #093DB9);
  background: -webkit-linear-gradient(#92BFFC, #093DB9);
  background: -moz-linear-gradient(#92BFFC, #093DB9);
}
#quick-search .btn:hover,
#quick-search a.btn:hover {
  color: #FFFFFF;
  box-shadow: 0px 0px 2px 0px #093DB9;
  -webkit-box-shadow: 0px 0px 2px 0px #093DB9;
  -moz-box-shadow: 0px 0px 2px 0px #093DB9;
}

#main-left-writer {
  margin-top: 25px;
  margin-bottom: 15px;
}
#main-left-writer h6 {
  font-size: 15px;
  margin:10px 0 5px 0;
}
.red {
  color:#FF0000;
}
.article ol, .article ul {
  margin: 0 0 15px 20px;
}
.modal-txt {
  font-size:16px;
  font-weight:bold;
  margin-top:5px;
}
.modal-txt a {
  color:#f45d01;
}
.modal-txt a:hover {
  text-decoration:underline;
}
#myAcct { 
  margin:10px 0 0 0; 
  background-color:#F8F8F8; 
  border:1px solid #DDD; 
  border-radius:6px; 
  padding:0 10px 20px 10px;
}
.myacct-subnead {border-bottom:2px solid #CCC; padding:0; margin-bottom:10px;}
.myacct-subnead h5 {margin-top:10px;}
.myacct-line {font-size:14px; border-bottom:2px solid #CCC; padding-bottom:0; margin-bottom:10px;}
.myacct-time {margin:10px 0 0 0;}
.myacct-amt {font-weight:bold; float:right; margin-top:-20px;}

.media > div > img {
  margin-right:30px;
}
sup {
  font-size:6px;
}
.writer-main-link {
  display:inline-block; 
  min-width:200px; 
  line-height:2;
  font-size:16px;
}
.writer-main-link-last {
  display:inline-block; 
  line-height:2;
  font-size:16px;
}
#IframeModal .modal-title {
  font-weight:500;
  font-size:28px;
  color:#091047;
}
.pwdLost {
  font-size:18px; 
  font-weight:300;
}
.pwdInfo {
  font-size: small;
}
.showpasswordlabel {
  display:block;
  font-weight:400; 
  font-size:16px; 
  margin-left:5px;
}
.showpasswordlabel span {
  margin:0 0 2px 5px;
}
#forgot_pwd {
  margin:0 85px 0 0; 
  font-size:12px;
}
.table-condensed td, .table-condensed th {
  padding: .3rem;
}


.tooltip-static {
  position: absolute;
  top: 40%;
  left: 100%;    /* pushes it to the right of the dropdown */
  transform: translateY(-50%);
  background: #fff;
  color: #000;
  padding: 4px 8px 4px 14px;
  border-radius: 12px;
  font-size: 0.8rem;
  white-space: nowrap;
  margin-left: 8px; /* gap */
}
.tooltip-static::before {
  content: "";
  position: absolute;
  left: -1px;           /* arrow hugs left side */
  top: 50%;             /* vertically centered */
  transform: translateY(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent #000 transparent transparent; /* border edge */
}
.tooltip-static::after {
  content: "";
  position: absolute;
  left: -5px;           /* arrow inner fill */
  top: 50%;
  transform: translateY(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: transparent #fff transparent transparent;
}

 MEDIA QUERIES
======================================

@media (max-width: 1199.98px) {
  
  h2 {
    font-size:34px;
  }
  a#logout {
    margin: -20px 0 -20px 5px;
  }
  #main-left {
    margin: 20px -15px 20px 0;
  }
  .script-bar {
    font-size:14px;
  }
}


@media (max-width: 991.98px) {
  
  #contact body {
    margin-top: 0;
  }
  #main {
    padding-top: 0;
  }
  #main-writer {
    padding-top: 0;
  }
  .container {
    width:100%;
  }
  #header {
    top:0;
  }
  #content {
    padding-top:0;
  }
  .bar {
    border-right:none;
  }
  a#logout {
    margin:0;
    padding:5px 25px 10px;
  }
  #followus {
    display:inline;
    float:none;
  }
  #main-left {
    margin:0;
    padding:0;
  }
  .leftmenu {
    width:140px;
  }
  #main-left-writer {
    margin: -10px auto 10px;
    display: inline-block;
  }
  #main-left-writer h6 {
    margin:3px 0 3px 0;
  }
  .card-writer .card-body {
    padding:5px 15px;
  }
  .myacct-line {
    margin-bottom:0;
  }
  .myacct-time {
    margin:0;
  }
  a.searchlink:link,  
  a.searchlink:visited,
  a.searchlink:hover,
  a.searchlink:active {
    font-size:16px;
  }
  .searchlinkOff {
    font-size:16px;
  }

}


@media (max-width: 767.98px) {
  html, 
  body {
    font-size: 16px;
    line-height: 1.6;
  }  
  #header-box {
    display:none;
  }
  #main {
    padding-top: 0;
  }
  #main-writer {
    padding-top: 0;
  }
  h1 {
    font-size:30px;
    line-height:1.2;
  }
  .pad-rt {
    padding-right:5px;
  }
  .leftmenu {
    margin-left:-5px;
    width:100%;
  }
  #main-left-writer {
    margin:0 auto -10px;
    overflow:hidden;
    padding-top:10px;
  }
  #main-left-writer div {
    padding-right: 5px;
    padding-left: 5px;
  }
  .mobile-link {
    display:block;
    margin-bottom:20px;
  }
  .foot-social-wrap {margin: 15px auto 20px;}
  .footer-copy {margin-bottom: 5px;}
}

@media (max-width: 575.98px) {
  
  #header-box {
    display:none;
  }
 
  .black {
    color:#fff;
  }
  h1 {
    font-size:28px;
  }
  h2 {
    font-size:22px;
  }
  .modal-dialog {
    margin: 60px auto 0;
  }
  .modal-txt {
    font-size:14px;
    margin-bottom:20px;
  }
  ol li, ul li {
    margin: 0 0 0 20px;
  }
  #main-left-writer {
    margin:0 auto -10px;
    overflow:hidden;
    padding:10px;
  }
  #main-left-writer div {
    padding-right: 5px;
    padding-left: 5px;
    margin-bottom: 5px;
  }
  .media > div > img {
    margin-right:0;
  }
  .writer-main-link {
    display:inline-block; 
    min-width:160px; 
    font-size:14px;
    line-height:2;
  }
  .writer-main-link-last {
    font-size:14px;
  }

}



 RESPONSIVE ALIGNMENT
====================================== 
.text-left-not-xs, .text-left-not-sm, .text-left-not-md, .text-left-not-lg { text-align: left; }
.text-center-not-xs, .text-center-not-sm, .text-center-not-md, .text-center-not-lg { text-align: center; }
.text-right-not-xs, .text-right-not-sm, .text-right-not-md, .text-right-not-lg { text-align: right; }
.text-justify-not-xs, .text-justify-not-sm, .text-justify-not-md, .text-justify-not-lg { text-align: justify; }

@media (max-width: 767.98px) {
    .text-left-not-xs, .text-center-not-xs, .text-right-not-xs, .text-justify-not-xs { text-align: inherit; }
    .text-xs-left { text-align: left; }
    .text-xs-center { text-align: center; }
    .text-xs-right { text-align: right; }
    .text-xs-justify { text-align: justify; }
}
@media (min-width: 768px) and (max-width: 991.98px) {
    .text-left-not-sm, .text-center-not-sm, .text-right-not-sm, .text-justify-not-sm { text-align: inherit; }
    .text-sm-left { text-align: left; }
    .text-sm-center { text-align: center; }
    .text-sm-right { text-align: right; }
    .text-sm-justify { text-align: justify; }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .text-left-not-md, .text-center-not-md, .text-right-not-md, .text-justify-not-md { text-align: inherit; }
    .text-md-left { text-align: left; }
    .text-md-center { text-align: center; }
    .text-md-right { text-align: right; }
    .text-md-justify { text-align: justify; }
}
@media (min-width: 1200px) {
    .text-left-not-lg, .text-center-not-lg, .text-right-not-lg, .text-justify-not-lg { text-align: inherit; }
    .text-lg-left { text-align: left; }
    .text-lg-center { text-align: center; }
    .text-lg-right { text-align: right; }
    .text-lg-justify { text-align: justify; }
}


#login-box, .removelinkbtn{display: none !important;}