/*! HTML5 Boilerplate v7.1.0 | MIT License | https://html5boilerplate.com/ */
/* main.css 1.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
   html {
    color: #222;
    font-size: 13px;
    line-height: 1;
    overflow: initial;
  }

  
  /*
   * Remove text-shadow in selection highlight:
   * https://twitter.com/miketaylr/status/12228805301
   *
   * Vendor-prefixed and regular ::selection selectors cannot be combined:
   * https://stackoverflow.com/a/16982510/7133471
   *
   * Customize the background color to match your design.
   */
  ::-moz-selection, ::selection {
    background: #b3d4fc;
    text-shadow: none;
  }
  
  /*
   * A better looking default horizontal rule
   */
  hr {
    display: block;
    height: 1px !important;
    border: 0 !important;
    border-top: 1px solid #88B1E2 !important;
    margin: 10px 0;
    padding: 0;
  }
  
  hr.bold {
      border-top-width: 2px;
  }


  /*
   * Remove the gap between audio, canvas, iframes,
   * images, videos and the bottom of their containers:
   * https://github.com/h5bp/html5-boilerplate/issues/440
   */
  audio, canvas, iframe, img, svg, video {
    vertical-align: middle;
  }
  
  /*
   * Remove default fieldset styles.
   */
  fieldset {
    border: 0;
    margin: 0;
    padding: 0;
  }
  
  /*
   * Allow only vertical resizing of textareas.
   */
  textarea {
    resize: vertical;
  }
  
  /* ==========================================================================
     Browser Upgrade Prompt
     ========================================================================== */
  .browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
  }
  
  .container {
      width: 100%;
      padding-right: 15px;
      padding-left: 15px;
      margin-right: auto;
      margin-left: auto;
  }
  
  *, ::after, ::before {
      box-sizing: border-box;
  }

.row {
    margin-left: -10px;
    margin-right: -10px;
    display: flex;
    flex-wrap: wrap;
}

.mainContainer {
    max-width: 1200px;
    width: 100%;
    margin: 40px auto 20px;
}

.mainWrapper {
    border: 1px solid #000;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 15px;
    padding: 15px;
}

.mainHeader {
    margin: -5px auto 20px auto;
    width: 100%;
}

.mainHeader li {
    display: inline;
    list-style: none;
}

.mainHeader ul {
    padding-left: 0px;
    margin-bottom: 0px;
}

.mainNav {
    border-radius: 10px 10px 0 0;
    background-image: linear-gradient(#d3e4fe, #d3e4fe, #6491ca);
    margin-top: 15px;
}

/* h1.public_login_main_heading {
    font-family: "Times New Roman", Times, sarif;
    font-size: 26px;
    margin: 0px;
}

h1.public_login_main_heading span.main_heading_highlight {
    font-size: 30px;
} */

table.text-center {
    text-align: center;
}
table.text-left {
    text-align: left;
}
table.text-right {
    text-align: left;
}

.page {
    border: 1px solid #000;
    border-radius: 15px;
    margin-top: 15px;
    padding: 20px;
    min-height: 150px;
    color: #333333;
    line-height: 20px;
}

.page .title {
    border-top: 1px solid #6ca9d8;
    border-bottom: 1px solid #6ca9d8;
    padding: 10px 0;
    font-weight: bold;
    margin-bottom: 15px;
}

.page .section {
    margin-top: 50px;
}

.page .nav ul {
    padding: 0;
    margin: 20px 0 -20px 0;
    display: flex;
    flex-wrap: wrap;
}
.page .nav ul li {
    display: inline-flex;
    list-style: none;
}
.page .nav ul li a {
    position: relative;
    margin-right: 16px;
    color: var(--color-link);
    z-index: 0;
    margin-bottom: 10px;
    position: relative;
    font-size: 12px;
}
.page .nav ul li a:after {
    content: "";
    position: absolute;
    border-right: 1px solid gray;
    height: 100%;
    width: 1px;
    top: 0;
    right: -8px;
    z-index: 999;
}
.page .nav ul li a:before {
    content: "";
    height: 1px;
    width: 0;
    position: absolute;
    background-color: var(--color-link);
    left: 0;
    top: 16px;
    transition: all 0.5s ease;
}
.page .nav ul li a:hover:before {
    width: 100%;
}
.page .nav h2 {
    font-weight: bold;
    margin: 0 0 20px;
}
.page h1, .page .title {
    margin: 0px;
    padding: 0px;
    margin-bottom: 22px;
    font-weight: bold;
    font-size: 16px !important;
    border: 0px;
    color: var(--color-dark-blue) !important;
}
.page h2 {
    margin: 0px;
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 14px !important;
    color: var(--color-dark-blue) !important;
}
.page h3, .page h4 {
    margin: 0px;
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 13px !important;
    color: var(--color-dark-blue) !important;
}
.page h4 {
    margin-bottom: 5px;
}
.page h5, .page h6 {
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 12px !important;
    color: var(--color-dark-blue) !important;
}
.page h1 br {
    display: none;
}
.page h4.modal-title {
    margin: 0px;
}

.page p, .page li {
    line-height: 22px;
    margin: 5px 0px 10px 0px;
    padding: 0;
}
.page p {
    margin: 0px 0 5px 0;
    line-height: 20px;
}
.page ul, .page ol {
    margin: 0px 0 5px 0;
    padding: 0;
    padding-left: 30px;
}
.page ol li {
    padding: 0;
}
.page .public_web_nav ul {
    padding: 0;
    margin: 20px 0 -20px 0;
    display: flex;
    flex-wrap: wrap;
}

.public_top_nav li a {
    font-weight: bold;
    color: var(--color-dark-blue);
    text-decoration: none;
}


.public_web_nav ul li {
    line-height: initial;
}

.public_web_nav ul li a {
    margin: 0px;
}

.public_web_nav .nav_table table td {
    position: relative;
}

.public_web_nav .nav_table table {
    border-collapse: separate;
    border-spacing: 0px 5px;
}

/* .public_web_nav .nav_table table td:not(:last-child):after {
    content: '•';
    color: #6899d4;
    position: absolute;
    right: 0;
} */

.public_web_nav ul li:not(:last-child):after {
    content: '';
    width: 1px;
    height: 1px;
    border-radius: 10px;
    background-color: #6899d4;
    margin: 5px;
    padding: 2px;
}

.public_broadcast_section b {
    /*display: block;*/
}

table.view_switch_current_registrations tbody tr:last-child hr {
    display: none;
}
table.view_switch_current_registrations tbody:last-child tr:last-child hr {
    display: block;
}
.modal-content {
    border-radius: 5px !important;
}

.model-close {
    color: var(--color-red);
    background: none !important;
    position: relative;
    border: none;
    cursor: pointer;
    padding: 5px 10px;
    margin-top: 0px;
    margin-bottom: 0px;
    float: none !important;
    border-radius: 3px;
    border: 1px solid transparent;
}

.public_userpass {
    margin-bottom: 10px;
}

.btn.btn-transparent {
    color: var(--color-blue) !important;
    background: transparent !important;
    border: 1px solid transparent;
}

.btn.btn-transparent:hover {
    color: var(--color-blue) !important;
    background: transparent !important;
    border: 1px solid var(--color-gray);
}

.modal-body {
    height: initial;
    max-height: 450px;
    overflow-y: auto;
    /*padding-right: 40px;*/
}

.modal-body h1, .modal-body h2, .modal-body h3, .modal-body h4  {
    font-size: 13px;
}
.modal-body h4 {
    margin-bottom: 5px;
}
.page a[href]:before {
    content: none;
    display: none;
}

.page a[href] {
    position: relative;
    display: inline-block;
    opacity: 1;
}

.page a[href]:after {
    content: "" !important;
    display: block;
    height: 1px;
    width: 0;
    position: absolute;
    background-color: #3f6ea6;
    left: 0;
    top: 16px;
    transition: all 0.5s ease;
    opacity: 0;
}

.page a[href]:hover:after {
    width: 100%;
    opacity: 1;
}
.page a.no-hover:hover:after,
.page #checking-form a[href]:hover:after,
.page form a[href]:hover:after {
    width: 0%;
    opacity: 0;
}

.page a[href].no-effect:after {
    display: none;
}

.page table a::after,
.page a.btn::after,
.page a.page-link::after {
    content: none;
    display: none;
}
#edit-form .nav-tabs {
    border-bottom: 1px solid #5c6570;
}

#edit-form .nav-tabs > li > a {
    bottom: -1px;
    border-bottom-color: transparent;
    background: transparent;
    color: #0a0a0a;
}
#edit-form .nav-tabs > li.active > a.tab_active {
    background: #ffffff;
    color: #000000;
    border: 1px solid #5c6570;
    border-bottom-color: #fff;
    position: relative;
    bottom: -1px;
}

.nav.nav-tabs li {
    margin-bottom: 0px;
}
.modal-footer .btn:active{
    /*background-color:#fff;*/
    /*color:red;*/
}
.currency .amount{
    text-align:right;
}
.modal-content .go-top-scroll {
    right: 20px;
    top: 40px;
}
.modal-content .go-down-scroll {
    right: 20px;
    bottom: 75px;
}
.go-top-scroll,
.go-down-scroll {
    position: absolute;
    top: 120px;
    right: calc(50vw - 290px);
    text-decoration: none;
    color: white;
    background-color: rgba(0, 0, 0, 0.67);
    font-size: 10px;
    padding: 3px 5px;
    display: none;
    text-align: center;
    border-radius: 2px;
    z-index: 99999;
}
.go-down-scroll {
    bottom: 185px;
    top: initial;
    display: block;
}
.modal-footer > button:disabled,
.modal-footer > button[disabled]:hover{
    /*background-color: transparent !important;*/
}
.custom-accordian-panel .panel-heading a:after {
    font-family: FontAwesome;
    content:"\f107";
    float: right;
    color: grey;
    font-size: 20px;
    margin-top: -5px;
}
.float-right, .floatright, .fr, .pull-right {
    float: right !important;
}
.float-left, .floatleft, .fl, .pull-left {
    float: left !important;
}
.custom-accordian-panel .panel-collapse{
    background-color: #f9f8f8 !important;
    border: 1px solid #00000075;
}
.text-green{
    color: green;
    font-weight:bold;
}
.textbox-with-no-border{
    border:0px !important;
}
.modal-dialog {
    margin: 80px auto auto auto;
}
.modal-header .close {
    display: inline-block;
    margin: 2px;
    margin-right: 6px;
    color: #ffffff;
    background: #da2020;
    position: relative;
    cursor: pointer;
    border: 1px solid transparent;
    width: 18px;
    height: 18px;
    font-size: 16px;
    opacity: 1;
    border-radius: 18px;
    line-height: 16px;
    text-align: center;
    text-shadow: none;
}
h4 .modal-title {
    padding-left: 14px;
}

.public_text_fields {
    box-sizing: border-box;
    padding: 0px;
    padding-bottom: 5px;
}
.input-group {
    margin: 5px 0;
}
.public_text_fields input[type=text]{
    display: block;
    width: 100%;
    font-size: var(--font-input);
    background: var(--color-white);
    border: 1px solid var(--color-gray);
    padding: 5px 8px;
    border-radius: 3px;
    height: initial;
    line-height: 20px;
    color: var(--color-input-text);
    box-shadow: none;
}

.file_prev_container{
    width: auto;
    height: 60px;
    float: left;
    border: 1px solid black;
    margin: 15px 10px 0 10px;
    border-radius: 5px;
}

.file_prev_container .image{
    width: 40px;
    height: 100%;
    float: left;
    padding: 8px;
}
.file_prev_container .image img{
    width:100%;
    height:100%;
}
.file_prev_container .image_desc {
    float:left;
    margin-left: 10px;
    margin-right: 10px;
}
.file_prev_container .image_desc a {
    width: 100%;
    text-align: center;
}
.image_desc p{
    margin:0px;
}
.fileinput-button {
    position: relative;
    color: #333;
    background-color: #ffffff;
    border-color: #8c8c8c;
}
.fileinput-button input {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    opacity: 0;
    font-size: 200px !important;
    direction: ltr;
    cursor: pointer;
    height: 100%;
}
.public_message_section input[type=file] {
    display: block;
}
.uploaded_image {
    float: left;
    position: relative;
    margin-left: 10px;
}
.uploaded_image, .uploaded_image > img {
    width: 135px;
    height: 95px;
}
.uploaded_image {
    margin-top:10px;
    width: 135px;
    height: 135px;
    text-align:center;
}
.msg_subtitle_bar td {
    padding-left: 5px;
}
.msg_title_bar td {
    line-height: 25px;
    border-bottom: 0px solid #fff;
}
.msg_title_bar td:first-child {
    border-radius: 5px 0 0 5px;
}
.msg_title_bar td:last-child {
    border-radius: 0 5px 5px 0;
}
.msg_title_bar a {
    margin-left: 5px;
    margin-right: 5px;
}
.message_icon {
    position: relative;
    bottom: 2px;
    margin-left: 5px;
    margin-right: 5px;
}
table.space td {
    padding: 0px 3px;
}

body.modal-open {
    overflow: hidden;
    overflow-y: hidden;
    overflow-x: hidden;
}

/*.model-close, .modal-footer button.btn {*/
/*    color: var(--color-red) !important;*/
/*    background: none !important;*/
/*    cursor: pointer !important;*/
/*    padding: 5px 10px !important;*/
/*    border-radius: 3px !important;*/
/*    !* border: var(--color-gray) 1px solid !important; *!*/
/*}*/
/*.modal-footer button[type=submit].btn {*/
/*    color: var(--color-dark-blue) !important;*/
/*}*/

/*.modal-footer .btn-primary.btn.ok,*/
/*.modal-footer .btn-primary.btn.submit {*/
/*    color: var(--color-gray-blue) !important;*/
/*}*/

.alert p,
.alert p+p {
    margin: 0px;
    padding: 0px;
}
.alert b {
    font-weight: normal;
}
.payment_method_btn {
    border-radius: 3px;
    border: 1px solid transparent;
}
.popup {
    padding: 0;
}
.page ul.pagination {
    margin-bottom: 0px;
}

.main_footer_top{
    margin-bottom: 10px;
    margin-top: 5px;
}
.main_footer_top ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main_footer_top ul li {
    padding: 0 8px;
    display: block;
    text-align: center;
    border-left: 1px solid var(--color-dark-blue);
    height: 16px;
    float: left;
}
.main_footer_top ul li:first-child {
    border: none;
}
.main_footer_top ul li a {
    line-height: 12px;
}
a, input, button, select,.bootstrap-select .dropdown-toggle,
a:focus, input:focus, button:focus, select:focus, .bootstrap-select .dropdown-toggle:focus {
    outline: none !important;
}
.btn-primary.disable:hover {
    background: var(--color-black);
}
.dropdown-menu li a,
.bootstrap-select button.btn {
    color: #333 !important;
}

.bootstrap-select button.bs-placeholder {
    color: var(--color-dark-gray) !important;
}

html *::placeholder {
    color: var(--color-dark-gray) !important;
}

#cc-form .redio_cc_type {
    margin-left: -10px;
}

#cc-form .redio_cc_type > label {
    border: 1px solid #ccc;
    padding: 5px 10px;
    margin-right: 10px;
    border-radius: 3px;
    width: initial !important;
}

#cc-form .redio_cc_type > label > span:not(.check-toggle) {
    border-right: 1px solid #ccc;
    padding-right: 10px;
    margin: 0px;
}

#cc-form .redio_cc_type > label > span.check-toggle {
    margin-right: 0px;
    margin-left: 10px;
}

#checking-form #btn_submit,
#cc-form #btn_submit {
    text-align: right;
    border-top: 1px solid #e9e9f4;
    padding-top: 15px;
    margin-top: 20px;
    margin-bottom: 5px;
    display: flex;
    /*flex-direction: row-reverse;*/
    gap: 5px;
}

#checking-form #btn_submit {
    margin-top: 10px;
}

.blueheading{
    margin: 20px 0 15px 0;
}
.open>.dropdown-menu {
    display: block;
    top: 30px;
    left: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
}
.open>.dropdown-menu .dropdown-menu.inner  {
    top: 0px;
}
.dropdown.bootstrap-select .filter-option {
    float: left;
}
.dropdown.bootstrap-select span.bs-caret {
    float: right;
}
.dropdown.bootstrap-select .dropdown-item.active {
    color: white !important;
}
.dropdown.bootstrap-select .inner {
    position: relative;
    height: 100%;
}
.dropdown.bootstrap-select .no-results {
    padding: 0px 10px;
}
.dropdown.bootstrap-select .bs-searchbox + .inner {
    height: calc(100% - 40px) !important;
}
.dropdown.bootstrap-select .dropdown-menu.open .dropdown-menu.inner {
    border: 0px;
    height: initial;
    padding-left: 5px;
}
.dropdown.bootstrap-select .dropdown-menu.open {
    height: initial;
    /* min-height: 150px !important; */
}
.dropdown.bootstrap-select .dropdown-menu.open .dropdown-menu.inner>li>a{
    padding: 3px 10px;
}
.dropdown.bootstrap-select .dropdown-menu>.active>a,
.dropdown.bootstrap-select .dropdown-menu>.active>a:focus,
.dropdown.bootstrap-select .dropdown-menu>.active>a:hover {
    background-color: #c8dff3;
}
ul.alt-arrows {
    padding-left: 30px;
    list-style: none;
    width: initial;
    height: initial;
}
ul.alt-arrows li:before {
    content: '►';
    left: -15px;
    line-height: 1;
    font-size: 8px;
    vertical-align: middle;
    position: relative;
}
.public_top_msg li {
    margin-left: 25px;
}
.font_bold,
.font_bold b {
    font-weight: bold;
}
.page_ckeditor {
    border-radius: 15px;
    margin-top: 15px;
    padding: 20px;
    min-height: 150px;
    color: #333333;
    line-height: 20px;
}
.color_remote_seminar {
    background: #e9f3ff;
    padding: 20px;
    margin: 15px 0px;
    border-radius: 10px;
    border: 1px solid #a5d0ff;
}
.btn.btn-border.print {
    color: #1563bb !important
}
.btn.btn-inline {
    display: inline;
    margin: 0px;
    padding: 5px 8px;
    line-height: 1;
    vertical-align: baseline;
}
#ccard_input input {
    letter-spacing: 5px;
}
#StreamingModal .modal-body {
    padding: 0 12px;
    overflow: auto;
    max-height: initial;
}
#StreamingModal .modal-dialog {
    width: 400px;
    height: 210px;
    margin: 25px auto;
}

.main_navigation {
    border-radius: 10px 10px 0 0;
    background-image: linear-gradient(#d3e4fe, #d3e4fe, #6491ca);
    margin-top: 9px;
}
.main_navigation ul {
    display: flex;
    align-items: center;
    align-content: center;
}
.main_navigation li {
    position: relative;
    display: block;
    flex: 1 0 10%;
}
.main_navigation > ul > li:hover {
    background-image: linear-gradient(#6d9dd6, #c7e0ff, #c7e0ff);
}
.main_navigation > ul > li:first-child {
    border-radius: 10px 0 0 0;
}
.main_navigation > ul > li:last-child {
    border-radius: 0 10px 0 0;
}
.main_navigation > ul > li:not(:first-child) {
    border-left: 1px solid;
}
.main_navigation li a {
    display: flex;
    padding: 0 10px;
    text-align: center;
    color: var(--color-dark-blue);
    text-decoration: none !important;
    font-weight: bold;
    align-items: center;
    justify-content: left;
}
.main_navigation > ul > li > a {
    height: 85px;
    justify-content: center;
}
.main_navigation > ul > li ul {
    position: absolute;
    left: 0;
    z-index: 999;
    background: #c7e0ff;
    width: 200%;
}
.main_navigation li li ul {
    top: 0;
    left: 100%;
    width: 100%;
}
.main_navigation li ul li a {
    text-align: left;
    padding: 8px 10px;
    font-weight: normal;
    line-height: 1.5em;
}
.main_navigation li:hover {
    background-color: #e6f1fe;
}
.main_navigation > ul > li ul {
    display: block;
    /* overflow: hidden; */
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    height: auto;
    transform: scaleY(0);
    transform: -ms-scaleY(0);
    transform-origin: top;
    opacity: 0;
}
.main_navigation li:hover > ul {
    transform: scaleY(1);
    transform: -ms-scaleY(0);
    opacity: 1;
}

.main_navigation > ul > li:last-child > ul {
    left: initial;
    right: 0;
}
.main_navigation > ul li:nth-child(7) li ul {
    top: 100%;
    left: 15%;
    width: 230px;
}
.main_navigation > ul li:nth-child(7) li ul ul {
    width: 120px;
    left:100%;
    top:0px
}
@media (min-width: 768px) {
    #StreamingModal  .modal-dialog {
        width: 680px;
        height: 370px;
    }
}
ul.pagination li.page-item.disabled {
    /* display: none; */
}
.pagination > li:first-child a.page-link::before {
    content: "\F100" !important;
    display: block !important;
    font-family: 'Font Awesome\ 5 Free', 'FontAwesome';
    color: #263950;
    position: absolute;
    z-index: 9999;
    left: 0;
    background: #fff;
    width: 36px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    font-size: 16px;
}
.pagination > li:last-child a.page-link::before {
    content: "\F101" !important;
    display: block !important;
    font-family: 'Font Awesome\ 5 Free', 'FontAwesome';
    color: #263950;
    position: absolute;
    z-index: 9999;
    right: 0;
    background: #fff;
    width: 36px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    font-size: 16px
}

.border-gray,
.border_block.grey {
    border: 1px solid #b3b3b3;
}

.border-light {
    border: #cdcdcd 1px solid;
}

.border-dark {
    border: #707070 1px solid;
}

.border-blue {
    border: var(--color-border) 1px solid;
}

.pre-loader{
    position: absolute;
    width: 98%;
    height: 100%;
    background: #ffffff5c;
}
.payment_method_btn{
    /*border: 1px solid rgba(0,0,0,0.2);*/
    background: transparent;
    padding: 5px 10px;
}
.payment_method_btn:hover{
    border: 1px solid rgba(0,0,0,0.2);
    background: transparent;
}
.payment_method_btn_active{
    border: 1px solid rgba(0,0,0,0.2);
    background: transparent;
}
.payment_method_btn_active {
    border: 1px solid var(--color-light-gray);
}

#state_html .btn.active {
    background: #263950 !important;
    border: 1px solid #0e1d30 !important;
    color: white !important;
    box-shadow: 0 3px 3px #000000a6 inset !important;
}

.table .header, .table tbody, .table thead {
    color: var(--color-black);
}

a[href].anchorToolTip:after {
    display: none;
}

a[href].anchorToolTip {
    width:15px;
    height: 15px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 5px;
    margin: auto;
    line-height: 1;
    transform: scale(1);
    transition: transform 0.2s ease-in-out;
}
a[href].anchorToolTip:hover {
    transform: scale(1.2);
}
a[href].anchorToolTip img {
    width: 100%;
    height: 100%;
}
.pos-rel a[href]::after,
.pos-rel a[href]::after {
    display: none;
}
.tippy-box {
    font-size: 10px;
}
.pagination>li>a, .pagination>li>span{
    background-color: var(--color-light-blue);
}

td.no-border a[href]:after{
    display: none;
}

.modal-close {
  color: var(--color-red) !important;
  background: none !important;
  position: relative;
  border: none;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 3px;
    border: 1px solid #F92323 !important;
}
.model-close:hover{
    background: none !important;
    color: #F92323 !important;
}
.modal {
    z-index: 999999;
}

#privacyPoilcyModal .modal-body{
    padding-right: 38px;
}
#TermsofUseModal .modal-body{
    padding-right: 38px;
}

.inputBorder{
    background: none !important;
    border: none !important;
    border-bottom: 1px solid black !important;
    border-radius: 0 !important;
}
.question_container p:not(:last-child) {
    margin-bottom: 10px !important;
}
.question_container p:last-child {
    margin-bottom: 0px !important;
}