/*Common CSS*/
:root {
    --primary-color: #353B47;
    --secondary-color: #F6903B;
    --bg-color: #eef1fb;
    --gray-color: #ccc;
    --green-color: #60C51D;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/*Rest CSS Start*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s,
samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, 
article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a{
    text-decoration: none;
    color: var(--secondary-color);
}
a:focus, button:focus, input:focus, select:focus, textarea:focus{
    outline: none;
}
img{
    max-width: 100%;
    display: block;
}
/*Rest CSS End*/
/**/
body{
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--primary-color);
    background-color: var(--bg-color);
}
.tc-header {
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 80px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    
}
.tc-logo{
    width: 168px;
    padding: 18px 0;
}
.tc-menu{
    position: relative;
}
.tc-menu-toggle{ 
    display: none; 
    position: relative;
    width: 24px;
}
.tc-menu-toggle span{
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--secondary-color);
    margin: 3px 0;
}
.is-active{
    display: block !important;
}
.tc-menu ul li{
    display: inline-flex;
}
.tc-menu ul li{
    padding: 0 15px;
}
.tc-menu ul li a{
    display: block;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 500;
    padding: 35px 0;
    position: relative;
}
.tc-menu ul li a:hover, .tc-menu ul li.active a{
    color: var(--secondary-color);
}
.tc-menu ul li a:after{
    position: absolute;
    border-bottom: 3px solid var(--secondary-color);
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}
.tc-menu ul li.active a:after, .tc-menu ul li a:hover:after{
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}
.logout{
    background-color: var(--secondary-color);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    display: inline-block;
    height: 35px;
    padding: 0 15px;
    line-height: 35px;
}
.logout:hover{
    background-color: var(--primary-color);
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;

}
.logout i{ margin-right: 5px;}
.tc-main-section{
    padding: 135px 80px 0;
}
.tc-main-section:after{
    clear: both;
    display: block;
    content: "";
}
#example1_wrapper table.dataTable thead{ 
    background-color: #fff;
}
#example1_wrapper table.dataTable thead th{ 
    text-align: left; 
    padding: 15px 10px;
    border-bottom: 2px solid var(--secondary-color);
}
#example1_wrapper table.dataTable{ 
    margin-top: 15px;
    margin-bottom: 15px;
    float: left;
}
#example1_wrapper table.dataTable tbody td {
    padding: 15px 10px;
    vertical-align: middle;
}
#example1_wrapper table.dataTable tfoot th{
    text-align: left;
}
#example1_wrapper table.dataTable.no-footer {
    border-bottom: none;
}


.tc-table {
    margin: 35px auto;
    float: left;
    width: 100%;
}
table.dataTable.no-footer {
    border-bottom: none;
    float: left;
    clear: both;
    margin: 20px 0;
    border-spacing: 0 8px;
}
table.dataTable thead tr, table.dataTable tbody tr{
    -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
    -webkit-border-radius: 15px;
    border-radius: 15px;
}
table.dataTable thead th, table.dataTable thead td,
table.dataTable tbody th, table.dataTable tbody td {
    padding: 15px 18px;
    text-align: center;
    vertical-align: middle;
    border:none !important;
}
table.dataTable thead th, table.dataTable thead td {
    border-bottom: none;
    background: var(--primary-color);
    padding: 20px 18px;
    color: #fff;
    font-weight: normal;
}
table.dataTable td .icon-btn{
    float: none;
    display: inline-block;
    line-height: 32px;
}
table.dataTable thead th:first-child, table.dataTable thead td:first-child, table.dataTable tbody th:first-child, table.dataTable tbody td:first-child{
    -webkit-border-radius: 15px 0 0 15px;
    border-radius: 15px 0 0 15px;
}
table.dataTable thead th:last-child, table.dataTable thead td:last-child, table.dataTable tbody th:last-child, table.dataTable tbody td:last-child{
    -webkit-border-radius: 0 15px 15px 0;
    border-radius: 0 15px 15px 0;
}
.right_answer{
    color: var(--green-color);
}

.tc-qa{
    padding: 0 155px;
}
.tc-q b{
    font-size: 21px;
    font-weight: 600;
}
.tc-q i{
    color: var(--secondary-color);
}
.tc-q input, .tc-a input[type="text"], .add-question-modal .tc-a input, .add-question-modal .tc-q input,
.tc-q textarea.require{
    display: block;
    background-color: #fff;
    border:1px solid var(--gray-color);
    margin-top: 15px;
    padding: 12px 15px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 500;
    width: 100%;
    height: 45px;
}
.tc-q textarea.require {
    height: 100px;
    resize: none;
}
.add-question-modal .rdo-check label{
    margin: 0;
}
.tc-a{
    margin-top: 10px;
}
.tc-a li{
    display: flex;
    align-items:center;
    position: relative;
    margin-bottom: 15px;
}
.tc-drag {
    margin-right: 15px;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
}
.tc-drag:hover, .tc-drag:focus{
    cursor: all-scroll;
}
.tc-a input[type="text"]{
    margin: 0 0 0 5px;
}
.tc-a-close{ 
    position: absolute;
    left: 100%;
    margin-left: 10px;
    font-size: 18px;
    font-weight: 300;
    cursor: pointer;
}
.tc-a-close:hover,
.tc-a-close:active{
    color: var(--secondary-color);
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}
#addAns{
    width: 42px;
    height: 42px;
    border-radius: 5px;
    border: 1px solid var(--green-color);;
    background: var(--green-color);;
    color: #fff;
    font-size: 18px;
}
#addAns:hover, #addAns:active{ 
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    cursor: pointer;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}
#addAns:focus{ outline: none;}
.add-ans{
    font-weight: 500;
    margin-left: 10px;
}
/*CSS3 Custom Radio Buttons*/
[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 42px;
    cursor: pointer;
    line-height: 42px;
    display: inline-block;
    color: var(--secondary-color);
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 42px;
    height: 42px;
    border-radius: 5px;
    border: 1px solid #ddd;
    background: #fff;
}
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
    content:"\f00c";
    font-family:'FontAwesome';
    font-size: 18px;
    width: 42px;
    height: 42px;
    text-align: center;
    position: absolute;
    top: 0px;
    left: 0px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    
}
[type="radio"]:not(:checked) + label:after {
    /*
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    */
    content:"\f068";
    color: var(--gray-color);
}
[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
/**/
/*CSS3 Custom Checkbox Buttons*/

/* Customize the label (the container) */
.checkBx {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 22px;
    margin-left: 15px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Hide the browser's default checkbox */
  .checkBx input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom checkbox */
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
  }
  
  /* On mouse-over, add a grey background color */
  .checkBx:hover input ~ .checkmark {
    background-color: #ccc;
  }
  
  /* When the checkbox is checked, add a blue background */
  .checkBx input:checked ~ .checkmark {
    background-color: var(--secondary-color);
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .checkBx input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
  .checkBx .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
/********************************/
.tc-qa-bottom{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 35px 0;
    text-align: center;
}
.tc-qa-bottom input[type="submit"]{
    height: 42px;
    min-width:120px;
    background-color: var(--secondary-color);
    border: none;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}
.tc-qa-bottom input[type="submit"]:hover,
.tc-qa-bottom input[type="submit"]:active{
    background-color: var(--primary-color);
    cursor: pointer;
}
.cancel{
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 500;
    margin-left: 15px;
}
.cancel:hover, .cancel:active{
    text-decoration: underline;
    color: var(--secondary-color);
}
/*Login page*/
.login-sec{
    background-color: #fff;
    -webkit-border-radius: 12px;
    border-radius: 12px;
    max-width: 620px;
    margin: 0 auto 35px;
}
.login-hd {
    font-size: 24px;
    font-weight: 600;
    background-color: var(--primary-color);
    color: #fff;
    -webkit-border-radius: 12px 12px 0 0;
    border-radius: 12px 12px 0 0;
    padding: 20px 25px 20px;
    letter-spacing: 1px;
}
.login-hd .tc-logo{
    padding: 0;
    display: block;
    float: none;
}
.login-ttl{
    font-size: 15px;
    font-size: 500;
    line-height: 21px;
    padding: 25px 25px 0;
}
.login-ttl span{
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}
.form-fields{
    padding: 35px 55px 25px;
    border-bottom: 1px solid var(--gray-color);
}
.form-fields li{
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.form-fields li:last-child{
    margin-bottom: 10px;
}
.form-fields li.remember{
    display: block;
    padding-left: 35%;
}

.form-fields li label{
    font-size: 16px;
    font-weight: 500;
    width: 35%;
}
.form-fields li.remember label{
font-size: 14px;
font-weight: 400;
vertical-align: top;
margin-left: 5px;
}
.form-fields li label i{
    margin-right: 5px;
    color: var(--secondary-color);
}
.form-fields li input[type="text"],
.form-fields li input[type="password"],
.form-fields li input[type="email"]{
    display: block;
    background-color: #fff;
    border: 1px solid var(--gray-color);
    height: 42px;
    padding: 5px 15px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    width: 65%;
}
.ac-login{
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ac-login:after{
    display: block;
    content: "";
    clear: both;
}
.login-btn{
    float: left;
    background-color: var(--secondary-color);
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1px;
    height: 42px;
    min-width: 120px;
    padding: 8px 15px;
    border: none;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    cursor: pointer;
}
.login-btn:hover, .login-btn:active{
    background-color: var(--primary-color);
}
.forgot{
    float: right;
    margin-top: 10px;
    font-weight: 300;
    font-size: 13px;
}
.forgot:hover, .forgot:active{
    color: var(--primary-color);
    text-decoration: underline;
}

input[type="text"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="file"]::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: var(--gray-color);
    opacity: 0.9;
  }
input[type="text"]::-moz-placeholder,
input[type="password"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
input[type="file"]::-moz-placeholder { /* Firefox 19+ */
    color: var(--gray-color);
    opacity: 0.9;
  }
input[type="text"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="file"]:-ms-input-placeholder { /* IE 10+ */
    color: var(--gray-color);
    opacity: 0.9;
  }
input[type="text"]:-moz-placeholder,
input[type="password"]:-moz-placeholder,
input[type="email"]:-moz-placeholder,
input[type="file"]:-moz-placeholder { /* Firefox 18- */
    color: var(--gray-color);
    opacity: 0.9;
  }
  /*Test List Page*/
  .icon-btn{
      display: flex;
      align-items: center;
      justify-content: center;
      float: left;
      color: #fff;
      border: none;
      background: var(--secondary-color);
      height: 32px;
      width: 32px;
      -webkit-border-radius: 3px;
      border-radius: 3px;
      margin: 3px;
      cursor: pointer;
      font-size: 16px;
      font-weight: 300;
  }
  .icon-btn:hover, .icon-btn:active{
      background-color: var(--primary-color);
      -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
  }
  .f-left{
      float: left;
  }
  .f-right{
      float: right;
  }
  .clear{
      clear: both;
  }
  .clear:after{
      display: block;
      content: "";
      clear: both;
  }
  .h1, h1{
    font-size: 26px;
    font-weight: 700;
    line-height: 36px;
    color: var(--primary-color);
  }
  .btn, .create-test-model ul li input[type="button"], .create-test-model ul li input[type="submit"]{
      display: inline-block;
      font-size: 16px;
      font-weight: 500;
      color: #fff;
      background-color: var(--secondary-color);
      border: none;
      -webkit-border-radius: 3px;
      border-radius: 3px;
      height: 36px;
      line-height: 36px;
      min-width: 100px;
      padding: 0 15px;
  }
  .btn:hover, .create-test-model ul li input[type="button"]:hover, .create-test-model ul li input[type="submit"]:hover{
      background-color: var(--primary-color);
      -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
    cursor: pointer;
  }
  .create-test-model ul li input[type="button"], .create-test-model ul li input[type="submit"]{
      width: auto;
  }
  .btn i{
      margin-right: 5px;
  }
  .tc-table{
      margin: 35px auto;
      float: left;
      width: 100%;
  }
  .create-test-model{
      padding: 0;
  }
  .create-test-model h1{
      padding: 20px 20px 12px 20px;
      border-bottom: 1px solid var(--gray-color);
  }
  .create-test-model ul{
      padding: 25px 30px;
  }
  .create-test-model ul li{
      margin-bottom: 15px;
  }
  .create-test-model ul li:last-child{
      margin-top: 35px;
      margin-bottom: 0;
  }
  .create-test-model ul li label{
      display: block;
      font-size: 14px;
      font-weight: 500;
      margin-bottom: 8px;
  }
  .create-test-model ul li input{
      display: block;
      width: 100%;
      border: 1px solid var(--gray-color);
      -webkit-border-radius:5px;
      border-radius:5px;
      background-color: #fff;
      height: 36px;
      padding: 3px 15px;
  }
  .create-test-model ul li input[type="submit"]{
      background-color: var(--secondary-color);
      width: auto;
      min-width: 100px;
      color: #fff;
      border:none;
      font-size: 16px;
      font-weight: 500;
      cursor: pointer;
  }
  .create-test-model ul li input[type="submit"]:hover, .create-test-model ul li input[type="submit"]:active{
      background-color: var(--primary-color);
      -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
  }
  .blocker{
      z-index: 99;
  }
  .create-test-btn i{
      margin-right: 5px;
  }
  .edit, .view, .delete{
      margin-bottom: 5px;
  }

  /**/
  .add-question-modal{
      max-width: 1000px !important;
      margin-left: -500px !important;
  }
  .modal .tc-qa{
    padding: 25px 30px;
  }
  .modal .tc-qa-bottom{
    border-radius: 0 0 10px 10px;
    border: none;
    position: relative;
    padding: 0 0 35px 0;
  }
  #example1_wrapper .tc-questions-table thead th:first-child, #example1_wrapper .tc-questions-table tbody td:first-child{
      text-align: center;
  }
  #example1_wrapper .tc-questions-table tbody td:first-child{
      cursor:all-scroll;
  }
  .tc-slct{
      position: relative;
      float: right;
  }
  .tc-slct:after{
      display: block;
      position: absolute;
      top: 1px;
      right: 1px;
      bottom: 1px;
      background-color: #fff;
      -webkit-border-radius: 0 5px 5px 0;
      border-radius: 0 5px 5px 0;
      content: "\f107";
      font-family:'FontAwesome';
      width: 25px;
      line-height: 36px;
      text-align: center;
      pointer-events: none;
  }
  .tc-slct select{
      padding: 5px 8px;
      padding-right: 25px;
      -webkit-border-radius: 5px;
      border-radius: 5px;
      border:1px solid var(--gray-color);
      height: 36px;
  }
  .dataTables_wrapper .dataTables_length select,
  .dataTables_wrapper .dataTables_filter input{
    background-color: #fff;
    border:1px solid var(--gray-color);
    -webkit-border-radius: 5px;
    border-radius: 5px;
  }
  .tc-qes-list{
      clear: both;
      float: none;
      width: 100%;
      padding: 35px 0;
      margin: auto;
  }
  .tc-qes {
    display: flex;
    align-items: center;
    background-color: #fff;
    justify-content: space-between;
    padding: 15px;
    padding-left: 60px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    margin-bottom: 15px;
    position: relative;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
  .tc-qes p{
      width: 92%;
      font-size: 15px;
      font-weight: 500;
      padding-left: 0;
      line-height: 20px;
  }
  .tc-qes .tc-drag {
    -webkit-border-radius: 8px 0 0 8px;
    border-radius: 8px 0 0 8px;
    background-color: var(--primary-color);
    color: #fff;
    margin-right: 0;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
a.tc-menu-close {
    display: none;
    font-size: 28px;
    height: 28px;
    width: 28px;
    position: absolute;
    right: 15px;
    top: 20px;
    text-align: center;
}
a.tc-menu-close:hover{
    color: var(--primary-color);
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

  /* Success/Error response messages CSS start*/
  .error-msg{
      font-size: 13px;
      position: absolute;
      top: 100%;
      right: 0;
      margin-top:1px;
      color: #ff2626;
      opacity: 0;
      visibility: hidden;
  }
  
  .show-error{
    opacity: 1;
    visibility: visible;
  }
  .msg{
      display: block;
      font-size: 14px;
      font-weight: 300;
      width: auto;
      position: fixed;
      bottom:-100px;
      right: 20px;
      z-index: 999999;
      color: #fff;
      padding: 15px;
      text-align: center;
      -webkit-border-radius: 10px;
      border-radius: 10px;
      -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
      -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
      -o-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
      -ms-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
      box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
      opacity: 0;
      pointer-events:none;
  }
  .msg:after {
    position: absolute;
    top: 100%;
    right: 30px;
    z-index: 9;
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0px 0 10px;
    border-color: #007bff transparent transparent transparent;
}
  .msg i{
      margin-right: 10px;
  }
  .msg-success{
    background-color: #218721;
    opacity: 1;
    bottom: 20px;
    -webkit-transition: all ease 1s;
    transition: all ease 1s;
  }
  .msg-success:after{
    border-color: #218721 transparent transparent transparent;
  }
  .msg-error{
    background-color: #ff2626;
    opacity: 1;
    bottom: 20px;
    -webkit-transition: all ease 1s;
    transition: all ease 1s;
  }
  .msg-error:after{
    border-color: #ff2626 transparent transparent transparent;
  }
  /* Success/Error response messages CSS end */

  /*Custom Modal CSS*/
  .modal-overlay, .tc-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    z-index: 9;
    padding: 20px;
    box-sizing: border-box;
    background-color: rgba(0,0,0,0.5);
    text-align: center;
}
.modal {
    display: none;
    vertical-align: middle;
    position: absolute;
    top: 100px;
    left: 50%;
    z-index: 99;
    max-width: 500px;
    margin: auto;
    margin-left: -250px;
    box-sizing: border-box;
    width: 90%;
    background: #fff;
    padding: 0;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -o-border-radius: 8px;
    -ms-border-radius: 8px;
    border-radius: 8px;
    -webkit-box-shadow: 0 0 10px #000;
    -moz-box-shadow: 0 0 10px #000;
    -o-box-shadow: 0 0 10px #000;
    -ms-box-shadow: 0 0 10px #000;
    box-shadow: 0 0 10px #000;
    text-align: left;
}
.modal a.close {
    position: absolute;
    top: -12.5px;
    right: -12.5px;
    display: block;
    width: 42px;
    height: 42px;
    border:1px solid #000;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-color: #fff;
    color: var(--primary-color);
    text-align: center;
    line-height: 42px;
    font-size: 18px;
}
.modal a.close:hover, .modal a.close:focus{
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}
.show-modal{
    display: block;
}
  /**/
  .tc-menu-overlay.is-active{
      display: block;
  }
  .tc-menu.is-active{
      right: 0;
      opacity: 1;
      -webkit-transition: all ease 1s;
      transition: all ease 1s;
  }

  /*----------- Toggle Switch CSS ---------*/
  /* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 32px;
    height: 7px;
  }
  
  /* Hide default HTML checkbox */
  .switch input.switch-inpt {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  /* The slider */
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    border: 1px solid var(--gray-color);
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: -1px;
    bottom: -6px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    background-color: var(--gray-color);
  }
  
  input.switch-inpt:checked + .slider {
    border-color: var(--green-color);
  }
  
  input.switch-inpt:focus + .slider {
    /*box-shadow: 0 0 1px var(--green-color);*/
  }
  
  input.switch-inpt:checked + .slider:before {
    -webkit-transform: translateX(15px);
    -ms-transform: translateX(15px);
    transform: translateX(15px);
    background-color: var(--green-color);
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }
  /*----------*/

  .tc_loader {
    position: fixed;
    z-index: 999999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
}
.multiple_btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 15px;
}
.select-all-check {
    float: right;
    margin-top: 10px;
}
.select-all-check .ui-checkboxradio-label{
    border: 1px solid #fff;
    background: #fff;
    border: 1px solid var(--gray-color);
    font-weight: normal;
    color: var(--primary-color);
    -webkit-border-radius: 5px;
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
}
.select-all-check .ui-state-active, .select-all-check .ui-widget-content .ui-state-active, .select-all-check .ui-widget-header .ui-state-active, .select-all-check a.ui-button:active, .select-all-check .ui-button:active, .select-all-check .ui-button.ui-state-active:hover {
    border: 1px solid var(--secondary-color);
    background: var(--secondary-color);
    font-weight: normal;
    color: #ffffff;
}
.copyToClipboard{ margin-top: 15px;}
.hide{
    display: none !important;
}
input#selectAllQues {
    top: 2px;
    position: relative;
    margin-left: 5px;
}

/* Exam Page CSS */
.tc-front-exam{

}
.tc-exam-box{
    max-width: 700px;
    margin: auto;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 45px 0;
    text-align: center;
    -webkit-border-radius: 15px;
    border-radius: 15px;
    -webkit-box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
}
.tc-exam-nm{
    font-size: 42px;
    font-weight: 700;
    line-height: 32px;
    color: var(--secondary-color);
    margin-bottom: 45px;
    padding: 0 25px 25px;
    text-align: center;
    border-bottom: 1px solid var(--bg-color);
}
.tc-exam-dur, .tc-exam-no-qes{
    font-size: 32px;
    font-weight: 500;
    line-height: 32px;
    color: var(--gray-color);
    margin-bottom: 45px;
    padding: 0 25px
}
.tc-exam-dur span, .tc-exam-no-qes span{
    color: var(--primary-color);
    font-weight: 700;
}
.tc-exam-box button{
    clear: both;
    margin-top: 25px;
}
.tc-exam-box button {
    clear: both;
    margin-top: 25px;
    min-width: 200px !important;
    height: 52px !important;
    line-height: 52px !important;
    font-size: 24px !important;
}
.sign-modal{
    -webkit-border-radius: 15px;
    border-radius: 15px;
}
.create-test-model .form-fields li.remember,
.create-test-model.sign-modal .form-fields li:last-child{
    margin: 0;
}
.create-test-model .form-fields li.remember input[type="checkbox"]{
    width: auto;
    display: inline-block;
    vertical-align: top;
    height: auto;
}
.create-test-model .form-fields li.remember label{
    display: inline;
    vertical-align: top;
}
.create-test-model#showTestUrl li{
    position: relative;
}
.create-test-model#showTestUrl li:last-child{
    margin: 0;
    margin-bottom: 15px;
}
.create-test-model#showTestUrl li .copyToClipboard{
    position: absolute;
    right: 0;
    margin: 0;
    top: 0;
}
/**/

/*Swal modal css*/
.swal-icon--warning__body, .swal-icon--warning__dot{
    background-color: var(--secondary-color);
}
.swal-icon--warning{
    border-color: var(--secondary-color) !important;
}
.swal-icon {
    width: 40px;
    height: 40px;
}
.swal-icon--warning__dot{
    bottom: -9px;
    width: 6px;
    height: 6px;
    margin-left: -3px;
}
.swal-icon--warning__body {
    width: 5px;
    height: 17px;
    top: 7px;
}
.swal-title, .swal-text{
    color: var(--primary-color) !important;
}
.swal-button{
    background-color: var(--secondary-color);
    font-weight: normal;
}
.swal-button:focus {
    outline: none;
    box-shadow: none;
}
.swal-button--cancel{
    color: #fff;
}
.swal-button--cancel:not([disabled]):hover,
.swal-button:not([disabled]):hover {
    background-color: var(--primary-color);
    color: #fff;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}
.swal-footer{
    text-align: center;
}
/**/
.no-refresh {
    font-size: 16px;
    text-align: center;
    line-height: 18px;
    margin-bottom: 15px;
    color: var(--primary-color);
    position: absolute;
    right: 0;
    bottom: 100%;
    background-color: #fff;
    padding: 10px 25px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgb(0 0 0 / 30%);
}

/********* Profile Page ********/
.tc-profile-main{
    background-color: #fff;
    padding: 35px 55px;
    margin:25px 0;
    -webkit-border-radius: 15px;
    border-radius: 15px;
    -webkit-box-shadow: 0 0 10px rgb(0 0 0 / 30%);
    box-shadow: 0 0 10px rgb(0 0 0 / 30%);

}
.tc-profile-main ul{
    margin: 0 -15px;
}
.tc-profile-main ul:after, .tc-profile-main:after{
    clear: both;
    display: block;
    content: "";
}
.tc-profile-main ul li{
    float: left;
    width: 50%;
    padding: 15px;
    position: relative;
}
.tc-profile-main ul li.confirm-pass{
    float: right;
}
.tc-profile-main ul li label{
    display: block;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
}
.tc-profile-main ul li input[type="text"],
.tc-profile-main ul li input[type="email"],
.tc-profile-main ul li input[type="password"],
.tc-profile-main ul li input[type="file"]{
    display: block;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
    border: 1px solid var(--gray-color);
    padding: 5px 25px;
    height: 52px;
    -webkit-border-radius: 12px;
    border-radius: 12px;
}
.tc-profile-main ul li input[type="file"]{
    padding-top: 12px;
}
.tc-profile-edit-btn{
    float: right;
    height: 52px !important;
    min-width: 200px !important;
    letter-spacing: 1px;
    margin-top: 55px;
}
.change-password{ 
    position: absolute;
    right: 15px;
    bottom: -3px;
    z-index: 9;
}
.change-password:hover, .change-password:focus{
    color: var(--primary-color);
    text-decoration: underline;
}
.confirm-pass{
    display: none;
}
.confirm-pass.is-active{
    display: block;
}
.tc-category {
    position: absolute;
    right: 30px;
}
table.dataTable.display tbody tr:first-child td.dataTables_empty {
    border-radius: 15px !important;
}
