@charset "UTF-8";

@keyframes blinker {
    50% {
      opacity: 0;
    }
}


    :root {
      --primary: #3f51b5;
      --secondary: #00bcd4;
      --accent: #ff9800;
      --bg: #f4f6fb;
      --card: #ffffff;
      --text: #2c2c2c;
    }

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

    body {
      font-family: 'Poppins', sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
    }

    .container {
      padding: 10px 10px;
      max-width: 1200px;
      margin: auto;
    }

    .section-title {
      text-align: center;
      margin-bottom: 40px;
    }

    .section-title h2 {
      font-size: 2rem;
      color: var(--primary);
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .card {
      background: var(--card);
      border-radius: 16px;
      padding: 25px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.08);
      transition: transform 0.2s ease;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .card h3 {
      margin-bottom: 10px;
      color: var(--secondary);
    }

    .card ul {
      margin-left: 18px;
    }

    .card ul li {
      margin-bottom: 8px;
    }

    .demo {
      background: #eef2ff;
      border-radius: 12px;
      padding: 20px;
      margin-top: 15px;
      font-size: 0.95rem;
    }

    .demo code {
      background: #fff;
      padding: 4px 6px;
      border-radius: 6px;
      color: #3f51b5;
    }

    footer {
      background: #1e1e1e;
      color: #ccc;
      text-align: center;
      margin-top: 60px;
    }

    footer span {
      color: var(--accent);
    }


/* Desktop Header */
.desktop header {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: #fff;
      padding: 20px 10px;
      text-align: center;
    }

.desktop header h1 {
      font-size: 2.8rem;
      font-weight: 700;
    }

.desktop header p {
      margin-top: 5px;
      font-size: 1.1rem;
      opacity: 0.9;
      color:white;
      font-weight:bold;
    }
/* Mobile Header */
.mobile header {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: #fff;
      padding: 5px 5px;
      text-align: center;
    }

.mobile header h1 {
      font-size: 1.8rem;
      font-weight: 700;
    }

.mobile header p {
      margin-top: 2px;
      font-size: 0.8rem;
      opacity: 0.9;
      color:white;
      font-weight:bold;
    }

.speaker
{
    color:gray;
}

.speaker:hover
{
    color:blue;
    text-decoration:underline;
    cursor:pointer;
}


#page_preview
{
    text-align:left;
}

div.chosen-container .chosen-drop
{
    width:auto;
}

div.underlinable_container
{
    background-color:#AFF;
    display:inline;
}

div.underlinable span
{
    padding-top:10px;
    padding-bottom:10px;
    margin-left:6px;
}

div.underlinable span:first-child
{
    padding-left:10px;
}

div.underlinable span:last-child
{
    padding-right:10px;

}


form.edit table.data div.chosen-container ul.chosen-choices li.search-choice
{
    min-width:0%;
}

.chosen-container .chosen-results li
{
    white-space: nowrap;
}

input.select_checkbox
{
    float:left;
    width:25px;
}


div.dropdown .chosen-container a
{
    overflow-x: visible;
    border: 0px solid white;
    background: transparent;
    box-shadow: none;
}
div.dropdown .chosen-container .chosen-results
{
    overflow-y: scroll;
    overflow-x: visible;
}

div.dropdown .chosen-container .chosen-drop
{
    width:auto;
    height:auto;
}

div.dropdown .chosen-container-single .chosen-single span 
{
    overflow-x: visible;
    margin-right:16px;
}

div.dropdown .chosen-container .chosen-results .math-equation
{
    overflow-y: scroll;
    overflow-x: visible;
}

.container .chosen-container a
{
    font-size:12px;
}

/* Style The Dropdown Button */
div.scratchpad_menu .dropbtn {
  background-color: gray;  /* #4CAF50; */
  color: white;
  padding: 0px 5px;
  font-size: 10px;
  border: none;
  cursor: pointer;
}

/* The container <div> - needed to position the dropdown content */
div.scratchpad_menu .dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
div.scratchpad_menu .dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
div.scratchpad_menu .dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
div.scratchpad_menu .dropdown-content a:hover {background-color: #f1f1f1}

/* Show the dropdown menu on hover */
div.scratchpad_menu .dropdown:hover .dropdown-content {
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
div.scratchpad_menu .dropdown:hover .dropbtn, div.scratchpad_menu select:hover  {
  background-color: black;/*#3e8e41;*/
}

div.scratchpad_menu input[type="text"]
{
    border-bottom:2px solid white;
    border-top:0px;
    border-left:0px;
    border-right:0px;
    font-size:10px;
    border-radius:0px;
    width:auto;
}

div.scratchpad_menu label
{
    color:white;
}

div.scratchpad_menu select
{
    background-color: gray;
    border: 0px;
    border-radius: 4px;
    color: white;
}

div.scratchpad_menu button, div.scratchpad_menu_open_box button
{
    min-width:30px;
}

div.scratchpad_menu, div.scratchpad_menu_open_box
{
    position:absolute;z-index:3000;float:right;width:auto; 
    border-bottom-left-radius:0px;
    border-bottom-right-radius:5px;
    margin-left: 2px;margin-top: 2px;
    padding-left:10px;
    background-color: #49c0f0;
}

#voiceSelect
{
    font-size:12px;
}

text.svg_element
{
  -webkit-touch-callout: none;
  -webkit-user-select:none;
  -khtml-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
  -o-user-select:none;
  user-select:none;
}

/* For division-equal-share */
 .dividend-items { display:block; clear:both;min-height: 8em;height:auto }
  .gallery.custom-state-active { background: #eee; }
  .dividend-items li { float: left; width: 96px; padding: 0.4em; margin: 0 0.4em 0.4em 0; text-align: center; list-style:none}
  .dividend-items li h5 { margin: 0 0 0.4em; cursor: move; }
  .dividend-items li img { width: 100%; cursor: move; }
 
.divisor-div {display:block;clear:both}
  .divisor-group { display:inline-block; min-height: 80px; padding: 1%;vertical-align:top; }
  .divisor-group h4 { line-height: 16px; margin: 0 0 0.4em; }
  .divisor-group h4 .ui-icon { float: left; }
 .divisor-group .gallery li { float:left; }
.divisor-group li { list-style:none; }

div.paginator_container
{
    min-height:40px;
}

#logo
{
    min-width:200px;
}

#logo_image_container
{
    height:40px;width:40px;vertical-align:middle;border:4px solid black;border-radius:50%;display:inline-block;background-color:white;
}

@keyframes tilt-shaking {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(8deg); }
  50% { transform: rotate(0eg); }
  75% { transform: rotate(-8deg); }
  100% { transform: rotate(0deg); }
}


body.mobile 
{
    width:auto;
    overflow-x:hidden;
}

#take_task_form
{
    padding-bottom:40px
}

#take_task_form .question
{
    display:inline;
}


div.attention
{
	margin-bottom:30px;
}

div.failures_container
{
	background-color:#49c0f0;
	border-radius:10px;
	padding:10px 10px;
	color:white;
}

#form_list_users .failures, #form_list_users .failures a
{
	font-size:12px;
}

div.failures_container div.failures a
{
	color:white;
}

div.failures
{
	text-align:left;
	clear:both;
}

div.book_title h3:before
{
	content: '* ';
}

div.book_title h4:before
{
	content: '** ';
}

div.book_title h5:before
{
	content: '*** ';
}

#main_body
{
	background-color:#ccc;
}


div.page select.dropdown_select
{
	width:auto;
	min-width:0;
}

.fa-trash
{
    color:red;
}

select.drop_down_select.closeleft
{
    margin-left: -4px;
}

[tooltip]
{
	border-radius:0 !important;
	border-top:1px solid #aaa !important;
	position:relative;
}

.edit_input label
{
	margin:5px 5px;
}

.edit_input label>input
{
	margin-right:5px;
}

div.control
{
    float:left;
    clear:both;
}

.paginator_container .items_per_page,
.paginator_container .items
{
	vertical-align:middle
}

.paginator_container .pages
{
	vertical-align:bottom
}



.paginator_container .column
{
    white-space:nowrap;
    text-align:left;
    display:inline-block;
    float:left;
    margin-right:20px;
}

.paginator_container ul
{
    padding: 0;
    list-style-type: none;
}

.table_only_paginitor>li
{
	float: left;
	text-decoration: none;
	background-color: #ffffff;
	border: 1px solid #dddddd;
	border-left-width: 1px;
	border-left-width: 0;
	list-style-type:none;
	line-height: 1.6em;
	font-family: Times New Roman, Helvetica, Arial;
	font-size: 14px;
	font-style: italic;
	font-weight: bold;
    min-width:40px;
    
    text-align:center;
}

.table_only_paginitor>li button
{
    min-width:40px;
    border-radius:unset;
}

.table_only_paginitor>li.inactive
{
	background-color:#EEEEEE;
}

.question_index
{
    display:inline-block;width:30px;white-space:nowrap;vertical-align: top;
}

input.expandable_text_input
{
    border-top:0px solid white !important;
    border-left:0px solid white !important;
    border-right:0px solid white !important;
    border-bottom:2px solid black !important;
    border-radius:0px !important;
    min-width:20px !important;height:1em !important;width:2ch !important;
}

.svg_item
{
    position:relative;
}

div.book
{
    text-align:left;
}

#sample_exam div.exam_question.preview
{
    overflow:hidden;
}



ul.links.book_pages>li
{
    border-left: 2px solid gray;
    border-top-left-radius: 10px;
}

div.CodeMirror
{
    resize: vertical;
    height:auto;
}

div.book
{
  resize: vertical;
  overflow: auto;
}

#edit_page_form
{
    position:fixed;
    bottom:0px;
    width:95%;
    height:250px;
    z-index:1000;
}

#edit_page_form textarea
{
    width:100%;
    height:250px;
}

ul.links.book_pages>li
{
    display: inline-block;
    border-top-right-radius: 10px;
    border-right: 2px solid gray;
    max-width: 200px;
    border-top: 2px solid gray;
    color: white;
    background-color: #111111;
    margin-top: -1.5px;
    line-height: 30px;
    padding-left:0px;
    text-align:center;
    margin-left:-10px;
    position:relative;
    margin-top:1px;
}

.book
{
    padding-top:40px;
    padding-left:10px;
    padding-right:10px;
    max-width:1000px;
    margin-left:auto;
    margin-right:auto;

}

ul.book_pages li.active
{
    background:#CCC;
}

ul.book_pages li.active>a
{
    color:#111111;
}

ul.book_pages li>label
{
    font-size:10px;
    display:block;
    white-space:nowrap;
    padding-left:20px;
    
}

ul.book_pages li:hover>label
{
    background-color:white;
    color:#000;
}

ul.book_pages li>span
{
    display:none;
}

ul.book_pages li:hover>span
{
    display:inline;
    position:absolute;
    top:60px;
    left:60px;
    margin-left:auto;
    margin-right:auto;
    background-color:blue;
    color:white;
    padding:2px 5px;
    margin-top:-3em;
    margin-left:-4em;
    border-radius:5px;
    z-index:10000;
}


ul.book_pages li>label
{
    font-size: 10px;
    height: 20px;
    line-height: 20px;
    padding-left:15px;
    padding-right:10px;
    color:#dddddd;
    margin-bottom:0px;
}

ul.book_pages li.active>label
{
    color:black;
    
}

ul.book_pages li:hover>label
{
    text-decoration:underline;
}

ul.book_pages
{
    background-color: gray;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    border-top-right-radius: 10px;
    padding-bottom: 0px;
    text-align: left;
    margin-bottom: 0px;
    border-left: 2px solid gray;
    border-top: 2px solid gray;
    border-top-left-radius: 10px;
    
}



div.book
{
    margin-top:0px;
    max-width:1200px;
    margin-left:auto;
    margin-right:auto;
    padding-bottom:40px;
}

div.page>div.book
{
    border-radius:5px;
    background-color:#EEEEEE;
}

/*#edit_page_form
{
	margin-left:10px;
	margin-right:10px;
	border:5px solid gray;
}*/
div.kinder-block .fa
{
    vertical-align:top;
}

div.CodeMirror
{
    text-align:left;
    padding-bottom:20px;
}

.kinder-block
{
	font-size: 24px !important;
	padding: 2px 10px !important;
}

div.fillable div.input, div.math div.input
{
    margin-bottom:10px;
}
div.choices_block
{
    margin-bottom:20px;
}

.math
{
    font-size:16px;
    font-weight:normal;
}

.math input.no_submit_enter
{
    font-size:16px;
    font-weight:bold;    
}

div.math .bordered
{
    border:2px solid gray;
    border-radius:0px;
    padding:5px 5px;
}

div.button_block
{
    margin-top:20px;
}

div.button_block .cancel
{
    float:right;
}

#take_task_form div.kinder-block
{
    display:inline-block;
}

.question_display
{
    margin-top:20px;
}

table.math td
{
    text-align:right;
    border:0px;
}

table.math td:nth-child(n+2) {
    border-right: 0px solid #D0D0D0;
}

table.math td:nth-child(2) {
    border-left: 0px solid #D0D0D0;
}

table.math td:first-child
{
    border:0px;
}

table.math tr.output
{
    border-top:1px solid #D0D0D0;
}

table.math tr.output td
{
    height:1.5em;
}


table.math tr.input td input
{
    font-size:16px;
    font-weight:normal;
    overflow:visible;
}


#take_task_form div
{
	text-align:left;
	clear:both;
}

#take_task_form div.choice_container
{
	clear:none;
	display:inline-block;
}

div.logo_container
{
    margin-left:20px;
}
.exam_instruction_header
{
    text-align:left;
}

#take_task_form div.choices_block
{
    border:2px solid #EEE;
    padding-top:5px;
    padding-bottom:5px;
    padding-left:10px;
    padding-right:10px;
}

#user_login
{
    width: 320px;
    display: block;
    position: fixed;
    left: 50%;
    top: 2.3em;
    margin-left: -160px;
    background-color:white;
    z-index:3000;
    border:1px solid lightblue;
    border-radius:5px;
}

#user_login input {
  padding-top: 5px;
  padding-bottom: 5px;
  width: 260px;
}

div.sub_toolbars
{
    text-align:center;
    float:right;
}

div.sub_toolbars div.sub_toolbar
{
    border-radius:5px;
    border:0px;
    background-color:#DDD;
    display:inline-block;
    padding:0px 5px;
    margin-left:5px;
}

div.sub_toolbars div.sub_toolbar input[type="text"]
{
    border-top:0px;
    border-left:0px;
    border-right:0px;
    border-bottom:2px solid #888;
    border-radius:0px;
    margin-left:5px;
}

div.sub_toolbars div.sub_toolbar  button
{
    border-radius:50%;
    border:5px solid #888;
    width:28px;
    height:28px;
    min-width: 28px
}

div.sub_toolbars div.sub_toolbar .item img
{
    min-width:28px;
    max-height:48px;
}

div.sub_toolbars div.sub_toolbar  i
{
    margin-left:-5px;
    vertical-align:top;
}

div.sub_toolbars div.sub_toolbar  i.fa-image
{
    margin-left:0px;
    vertical-align:middle;
}

div.preview div.sortable > span
{
    font-size:18px;
}

div.click_to_clipboard div.item, div.click_to_clipboard div.item span
{
    font-size:8px;
    font-family:helvetica;
}

div.click_to_clipboard div.item .choices
{
    width:auto;
    min-width:20px;
}

div.click_to_clipboard div.item .choice_container
{
    display:inline-block;
}


div.click_to_clipboard label
{
    font-size:10px;
    font-family:helvetica;
}


div.full_width
{
    width:100%;
}

div.full_width>div textarea
{
    width:100%;
}

div.field_row
{
    border:1px solid #DDD;
    width:300px;
    display:inline-block;
}

div.field_container div.label
{
    text-align:left;
}

div.field_row>div select
{
    width:100%;
}

button.user_login
{
    margin-top:0;padding-top:5px;margin-bottom:0;padding-bottom:0;float:right;
}

#user_login div.login_form
{
    padding-left: 10px;
    padding-right: 10px;
    background-color: #DDD;
}

#user_login div.login_form button
{
    border:0px solid;
    background-color:#DDD;
    width:1.75em;
}

#user_login div.login_form button:hover
{
    border:0px solid;
    background-color:#AAA;
    border-radius:50%;
    
    
}

#login_form
{
    overflow-x:unset;
}

div.speak_image_container
{
    min-height:102px;
    min-width:102px;
    display:inline-block;
}

div.speak_image_container
{
    min-height:102px;
    min-width:320px;
    display:block;
}

div.flash
{
    padding-left:20px;
}

div.speak_icon_container i
{
font-size:32px;
}

a
{
    cursor:pointer;
}

h3
{

    font-family: 'Poppins', sans-serif;
	color: #555555;
    text-decoration: none;
}
.title
{
    color: #2C3539;
    text-decoration: none;
    font-family: Times New Roman,Helvetica,Arial;
    font-size: 18px;
    font-style: italic;
    font-weight: bold;
    line-height: 1.5em;
    text-align:center;
}


a.title:hover
{
    color: #FFFFFF;
}
a
{
    color: #000055;
    text-decoration: none;
    /*width: 140px;*/
    font-family: Times New Roman, Helvetica, Arial;
    /*font-size: 40px;*/
	font-weight: bold;
}

a:hover
{
    color: #0000AA;
}


.content p
{
    color: #555555;
    text-decoration: none;
    /*width: 140px;*/
    font-family: Times New Roman, Helvetica, Arial;
    font-size: 22px;    
	font-weight: bold;
}

ul.menu_tabpane
{
    margin: 0 2px;
    border: 2px;	
	list-style-type:none;
}

/*ul.menu_tabpane:hover
{
	background-color:#555555;
}*/



table.odd_even_row_alternate_color tbody tr:nth-child(2n) 
{
    background: #F7F7F7;
}
    
table.odd_even_row_alternate_color tbody tr:nth-child(2n+1) 
{
    background: #F0F0F0;
}


table thead tr
{
	background-color: transparent;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
table th, table th>select
{
    color: #FFFFFF;
    background-color: #49c0f0;
    font-size: 18px;
    font-weight: bold;
    /*padding: 5px 10px;*/
    padding: 0px;
    text-align: center;
    text-shadow: none;
    font-family: Times; 
    font-style: italic;
    border-right: 2px solid white-smoke;
}

table th>select.filter, table th>select.sort
{
    font-size: 14px;
    font-weight: normal;
    padding: 0px 5px;
    color: #FFFFFF;
}

table th>select.sort
{
    font-size: 14px;
    font-weight: normal;
    padding: 0px 0px;
    color: rgba(255,255,255,0.001);
    height:0px;
    overflow:hidden;
}



table, table > thead
{
    background-color: transparent;
}


table tr th
{
    border-left: 1px solid #CCCCCC;
    padding-left:5px;
    padding-right:5px;
}

table tr:first-child th:first-child
{
    border-top-left-radius: 5px;
    
}

table tr:first-child th:last-child
{
    border-top-right-radius: 5px;
    
}

#form_list table th+th
{
	border-left: 1px solid #AAAAAA;
}

table td:first-child
{
    border-left: 1px solid #D0D0D0;
}

table td:nth-child(2)
{
    border-left: 1px solid #D0D0D0;
}

table td:nth-child(n+2) 
{
    border-right: 1px solid #D0D0D0;
}

table td
{
	padding-left:10px;
	font-size: 16px;
    color: #333333;
    /*vertical-align: top;*/
    border-bottom: 2px solid #DDDDDD;
    text-align:left;
}


table tr:last-child td
{
    border-bottom: 1px solid #D0D0D0;
} 


.important_link
{
    font-size: 24px;
}


.toc_title
{
    color: #999999;
    padding-top:2em;
    margin-top: 2em;
    margin-bottom: 2em;
    text-align: center;
    font-family: Times New Roman, Helvetica, Arial;
    font-size: 32px;
	font-weight: bold;
    text-shadow: none;
}

.toc_elements, .toc
{
    border: none;
    border-width: 0px;
    border-spacing: 0px;    
    border-style: none;
    /*padding: 5px 20px 5px 20px;*/
    font-size: 28px;
    font-style: italic;
    font-weight: bold;
    font-family: Times New Roman, Arial;
    text-shadow: none;
}


.height_
{
    height: 28px;
    padding-left: 24px;
    background-repeat: no-repeat;
    background-position: 5px 50%;
    opacity: 0.6;
    text-decoration: none;
    font-size: 12px;  
    text-indent:24px;  
    display: inline-block;
    vertical-align: bottom;
}


.height_32
{
    height: 38px;
    padding-left: 32px;
    background-repeat: no-repeat;
    background-position: 5px 50%;
    opacity: 0.6;
    text-decoration: none;
    font-size: 16px;
    text-indent: 32px;
    display: inline-block;
    vertical-align: bottom; 
}

.height_64 
{
    height: 74px;
    padding-left: 64px;
    padding-top:16px;
    padding-bottom:16px;
    background-repeat: no-repeat;
    background-position: 5px 50%;
    opacity: 0.6;
    text-decoration: none;
    font-size: 32px;  
    display: inline-block;
    vertical-align: bottom;  
}



input.login,button.login,input.logout,button.logout
input.register, button.register
{
    text-indent: 1.4em;
}



#user_label
{
    z-index: 0;
    position: relative;
    overflow: hidden;
}


input#user:active,
input#user.active,
input#user:focus, 
input#user:valid
{
    background-color: white;
    opacity:1;
}

#password_label
{
    z-index: 0;
    position: relative;
    overflow: hidden;
}


input#password:active,
input#password.active,
input#password:focus, 
input#password:valid
{
    background-color: white;
    opacity:1;
}

/*.label
{
    padding-left: 10px;
}*/


 .button.selected, .button32:hover, .button32.selected, .button64:hover, .button64.selected
{
	background-color: #49c0f0;
}

.action_link
{
	background-color: rgb(153, 153, 153);
	opacity: 0.5;
	color: rgb(255, 255, 255);
	border-radius: 5px;
	position: relative;
	float: left;
	margin: 10px 2px;
	text-shadow: 0px 0px 3px rgb(255, 255, 255);
	height: 1.5em;
	font-family: Times New Roman,Helvetica,Arial;
	font-size: 28px;
	font-style: italic;
	font-weight: normal;
	text-indent: 4px;
	text-align: center;
	border: 1px solid #555555;
}

.action_link:hover, .action_link.selected
{
	opacity:1;
}

img
{
    -moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px; /* future proofing */
	-khtml-border-radius: 10px;
}

.round-corners-5px
{
    -moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px; /* future proofing */
	-khtml-border-radius: 5px;
}

.round-corners
{
    -moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px; /* future proofing */
	-khtml-border-radius: 10px;
}

.round-corners-bottom
{
    -moz-border-bottom-left-radius: 10px;
	-webkit-border-bottom-left-radius: 10px;
	border-bottom-left-radius: 10px; /* future proofing */
	-khtml-border-bottom-left-radius: 10px;
    -moz-border-bottom-right-radius: 10px;
	-webkit-border-bottom-right-radius: 10px;
	border-bottom-right-radius: 10px; /* future proofing */
	-khtml-border-bottom-right-radius: 10px;
}
.content
{
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
}

textarea, input[type=text]
{

    color: #555555;
    text-decoration: none;
    /*width: 140px;*/
    font-family: Times New Roman, Helvetica, Arial;
    font-size: 16px;
	font-weight: bold;
}



.footer 
{
	width:100%;
	height:auto;
	position:relative;
	bottom:0;
	left:0;
	background:#555555;
}

td>input, td > textarea, td > select, td > div
{
	text-align:left;
	/*margin-left:10px;
    min-width:250px;*/
    width:98%;
    /*white-space: nowrap;*/
}

table#member_questions td>a
{
    min-width:0px;
}

td.label, td>a
{
    min-width:100px;
	color: #555555;
    text-shadow: none;
}

td
{
    word-wrap: break-word;
    max-width:200px;
}

td.label, td>a.link
{
    text-align:center;
	color: #555555;
    text-shadow: none;
}

.form
{
    background-color: transparent;
    border: 0px solid #888888;
    padding: 5px 5px 5px 5px;
    width: 100%;
    margin-left:auto;
    margin-right:auto;
    margin-bottom: 20px;
    overflow-x:scroll;
}

.form>ul
{
    border: 4px solid #DDDDDD;
    -moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px; /* future proofing */
	-khtml-border-radius: 10px;
}

.form input[type=submit]
{
    margin-top:10px;
    -moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px; /* future proofing */
	-khtml-border-radius: 10px;
}

.form input[type=float], .form input[type=text], .form input[type=number], .form input[type=password], .form input[type=datetime], .form div>span
{
    color: blue;
    font-family: Times New Roman, Helvetica, Arial;
    font-size: 18px;
	font-weight: bold;    
	text-indent: 0px;
    text-shadow: none;

    border:2px solid #999999;
    background-color: transparent; 
    color: #222222;
	position: relative;
}

.form textarea, .form select,
.chosen-container-multi .chosen-choices li.search-field , .chosen-container-multi .chosen-choices li.search-choice, .chosen-container-multi .chosen-results li
{
    color: blue;
    font-family: Times New Roman, Helvetica, Arial;
    font-size: 16px;
	font-weight: bold;    
	/*text-indent: 4px;*/
    text-shadow: none;
    /*height:80px;*/
    min-width: 100px;
    min-width:80%;
}

.form div>span, div.draggable>span.item
{
    color: blue;
	font-weight: normal;    
	
    text-shadow: none;
    line-height:1.5em;
    background-color: transparent; 
    color: #222222;
    -moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px; /* future proofing */
	-khtml-border-radius: 5px;
	position: relative;
    border: 0px solid gray;
}

div.sortable>span
{
    color: blue;
    font-family: Times New Roman, Helvetica, Arial;
    font-size: 36px;
	font-weight: normal;    
	text-indent: 4px;
    text-shadow: none;
    min-height:50px;
    line-height:1.5em;
    background-color: transparent; 
    color: #222222;
    -moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px; /* future proofing */
	-khtml-border-radius: 5px;
	position: relative;
    padding-left:0.5em;
    padding-right:0.5em;
    border: 2px solid gray;
    display:inline-grid;
    margin-left:5px;
}
}

div.underlinable>span
{
    color: blue;
    font-family: Times New Roman, Helvetica, Arial;
    font-size: 24px;
	font-weight: normal;    
	text-indent: 4px;
    text-shadow: none;
    min-height:32px;
    line-height:1.5em;
    background-color: transparent; 
    color: #222222;
    -moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px; /* future proofing */
	-khtml-border-radius: 5px;
	position: relative;
    padding-left:5px;
    padding-right:5px;
    border: 0px solid gray;
}

div.fillable>input
{
    width: 10px;
    padding-left: 2px;
    font-size: 18px;
    color: #333333;
}

.form label, .form a
{
    color: #0444c6;
    font-family: Times New Roman, Helvetica, Arial;
    font-size: 18px;
	font-weight: normal;    
	text-indent: 4px;
    
}

.user_greeting
{
    color: white;
    font-family: Times New Roman, Helvetica, Arial;
    font-size: 16px;
	font-weight: normal;    
	text-indent: 4px;
    font-style: italic;
    text-shadow: 0px 0px 3px #FFFFFF;
}

.footer 
{
    width: 100%;
    height: auto;
    position: relative;
    bottom: 0px;
    left: 0px;
    background: none repeat scroll 0% 0% rgba(0,0,256,0.8);
}

.popup-open
{
	width:5px;
	min-width:5px;
    position:fixed;
    right:0;
    bottom:0;
    background-color:transparent;
}

.popup-close
{
	width:5px;
	min-width:5px;
    position:fixed;
    right:0;
    bottom:0;
    background-color:transparent;
}

table.full_width
{
    width: 100%;
}

.choices
{
    padding-left:10px;
	padding-top:0.5em;
	padding-bottom:0.5em;
	min-width:100px;
	margin-left:10px;
	margin-right:10px;
	background-color: transparent;
    color: #222222;
	position: relative;
    /*float: left;
    margin: 10px 2px;*/
    text-shadow: 0px 0px 3px #000000;
    font-family: Times New Roman, Helvetica, Arial;
    font-size: 18px;
    font-style: italic;
	font-weight: normal;    
	text-indent: 4px;	
    cursor: pointer;
}

.ui-sortable-handle
{
    cursor:move;
    cursor:grab;
    cursor: -moz-grab;
    cursor: -webkit-grab;
}

.ui-sortable-handle:hover
{
    background-color:#DDD;
}

 /* (Optional) Apply a "closed-hand" cursor during drag operation. */
.ui-sortable-handle:active {
    cursor: grabbing;
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing;
}


.choices:hover
{
    -moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px; /* future proofing */
	-khtml-border-radius: 5px;
    background-color: #FFFFFF;
}

.choices > input[type=radio]
{
	width:1em;
	height:1em;
    vertical-align: middle;
}


.checkmark
{
    height: 32px;
    width:32px;
    padding-left: 34px;
    padding-top:2px;
    background-repeat: no-repeat;
    background-position: 5px 50%;
    background-image: url(../img/check.png);
    opacity: 1.0;
    text-decoration: none;
}

.wrongmark
{
    height: 32px;
    width:32px;
    padding-left: 34px;
    padding-top:2px;
    background-repeat: no-repeat;
    background-position: 5px 50%;
    background-image: url(../img/wrong.png);
    opacity: 1.0;
    text-decoration: none;
}

.center
{
    text-align:center;
}


.date_time_picker div
{
    display:inline-block;
    vertical-align:center;
}

.date_time_picker input
{
    display:block;
    width:80px;
    margin-left: auto;
    margin-right: auto;
    min-width:60px;
    vertical-align:center;
}


.button_curve_bot
{
    height: 50px;
    background-color:#666666;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-image: url(../img/down_arrow.png);
    opacity: 0.8;
    text-decoration: none;
    -moz-border-bottom-left-radius: 20px;
	-webkit-border-bottom-left-radius: 20px;
	border-bottom-left-radius: 20px; /* future proofing */
	-khtml-border-bottom-left-radius: 20px;
    -moz-border-bottom-right-radius: 20px;
	-webkit-border-bottom-right-radius: 20px;
	border-bottom-right-radius: 20px; /* future proofing */
	-khtml-border-bottom-right-radius: 20px;
    border: 0px solid;
}

.button_curve_top
{
    height: 50px;
    background-color:#666666;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-image: url(../img/up_arrow.png);
    opacity: 0.8;
    text-decoration: none;
    -moz-border-top-left-radius: 20px;
	-webkit-border-top-left-radius: 20px;
	border-top-left-radius: 20px; /* future proofing */
	-khtml-border-top-left-radius: 20px;
    -moz-border-top-right-radius: 20px;
	-webkit-border-top-right-radius: 20px;
	border-top-right-radius: 20px; /* future proofing */
	-khtml-border-top-right-radius: 20px;
    border: 0px solid;
}

.button_curve_top:hover, .button_curve_bot:hover
{
    opacity: 1.0;
    
}

.separator
{
	display:block;
	background-color: transparent;
	border: 0px solid;
	height:50px;
	width:20px;
}




/*form select.sort>option
{
    text-indent:15px;
}
form select.sort:hover 
{
 border:1px solid #26759E;
 background-color: #d4dee1; background-image: -webkit-gradient(linear, left top, left bottom, from(#d4dee1), to(#a9c0c8));
 background-image: -webkit-linear-gradient(top, #d4dee1, #a9c0c8);
 background-image: -moz-linear-gradient(top, #d4dee1, #a9c0c8);
 background-image: -ms-linear-gradient(top, #d4dee1, #a9c0c8);
 background-image: -o-linear-gradient(top, #d4dee1, #a9c0c8);
 background-image: linear-gradient(to bottom, #d4dee1, #a9c0c8);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#d4dee1, endColorstr=#a9c0c8);
}*/
form select.filter, select.sort
{
    border: 1px solid white;
    border-collapse: collapse;
  -webkit-appearance: none;
        -moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px; /* future proofing */
	-khtml-border-radius: 5px;
} 

select.sort
{
	text-overflow: "";
	-moz-appearance: none;
	border: 0px solid;
}    

img.profile, img.profile_icon
{
    margin:5px 5px;
}

img.profile_icon
{
    opacity:0.7;
}

img.profile_icon:hover
{
    opacity:1.0;
}

.user_basic_controls
{
	position:fixed;
	top:0px;
	right:5px;
	z-index:101;
    background:#4c4c4c;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.user_basic_controls a
{
	background-color: transparent;
    padding-right:5px;
    text-indent: 0px;
}

.user_basic_controls a:hover, span.hide32:hover
{
    background-color: rgba(20,20,20,0.1);
    -moz-border-radius: 15px;
	-webkit-border-radius: 15px;
	border-radius: 15px; /* future proofing */
	-khtml-border-radius: 15px;
    
}

.user_basic_controls a.user_control64, .user_basic_controls a.hide64
{
    -moz-border-top-left-radius: 20px;
	-webkit-border-top-left-radius: 20px;
	border-top-left-radius: 20px; /* future proofing */
	-khtml-border-top-left-radius: 20px;
    -moz-border-bottom-left-radius: 20px;
	-webkit-border-bottom-left-radius: 20px;
	border-bottom-left-radius: 20px; /* future proofing */
	-khtml-border-bottom-left-radius: 20px;
}


ul.art-hmenu>li.hidden
{
    display:none;
}

ul.art-hmenu > li.hidden.active
{
    display:inline-block;
}

.speak, .speak_phonic
{
    text-indent: 28px;
    background-repeat: no-repeat;
    background-position: 1px 50%;
    background-image: url(../img/speak.png);
}

.speak_phonic
{
     border: 2px solid #DDDDDD;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -khtml-border-radius: 5px;
    cursor: pointer;
    font-family: Times New Roman;
    font-size: 28px;
    padding-right: 10px;
    padding-left: 30px;   
}

.speak
{
    background-repeat: no-repeat;
    background-position: 1px 50%;
    background-image: url(../img/speak.png);
    border: 2px solid #DDDDDD;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -khtml-border-radius: 5px;
    cursor: pointer;
    font-family: Times New Roman;
    color: green;
    font-size: 28px;
    padding-right: 10px;
    padding-left: 30px;
}

div.paginator
{
    height:2em;
    position: fixed;
    bottom:5px;
    z-index:100;
    left:42%;
    
}

div.paginator div.a_container
{
    height:30px;
    display:inline-block;
}

div.paginator a, div.paginator input
{
    display:inline-block;
    height: 2em;
    padding-left:10px;
    padding-right:10px;
    padding-top:5px;
    padding-bottom:20px;
    background: -webkit-linear-gradient(#DDDDDD, gray, #DDDDDD); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#DDDDDD, gray, #DDDDDD); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#DDDDDD, gray, #DDDDDD); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#DDDDDD, gray, #DDDDDD); /* Standard syntax */
    border: 1px solid #AAAAAA;    
    color: #000088;
    text-decoration: none;
    margin-right: 1px;
    vertical-align:top;
    margin-top:auto;
    margin-bottom:auto;
    opacity: 0.7;
}


div.paginator .first
{
    -moz-border-top-left-radius: 20px;
	-webkit-border-top-left-radius: 20px;
	border-top-left-radius: 20px; /* future proofing */
	-khtml-top-left-border-radius: 20px;
    -moz-border-bottom-left-radius: 20px;
	-webkit-border-bottom-left-radius: 20px;
	border-bottom-left-radius: 20px; /* future proofing */
	-khtml-bottom-left-border-radius: 20px;
	
	-moz-border-top-right-radius: 0px;;
	-webkit-border-top-right-radius: 0px;;
	border-top-right-radius: 0px;; /* future proofing */
	-khtml-top-right-border-radius: 0px;;
    -moz-border-bottom-right-radius: 0px;;
	-webkit-border-bottom-right-radius: 0px;;
	border-bottom-right-radius: 0px;; /* future proofing */
	-khtml-bottom-right-border-radius: 0px;;    
	
    /*line-height: 2.2em;*/
}

div.paginator .last
{
   
    -moz-border-top-right-radius: 20px;
	-webkit-border-top-right-radius: 20px;
	border-top-right-radius: 20px; /* future proofing */
	-khtml-top-right-border-radius: 20px;
    -moz-border-bottom-right-radius: 20px;
	-webkit-border-bottom-right-radius: 20px;
	border-bottom-right-radius: 20px; /* future proofing */
	-khtml-bottom-right-border-radius: 20px;
	
    -moz-border-top-left-radius: 0px;
	-webkit-border-top-left-radius: 0px;
	border-top-left-radius: 0px; /* future proofing */
	-khtml-top-left-border-radius: 0px;
    -moz-border-bottom-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	border-bottom-left-radius: 0px; /* future proofing */
	-khtml-bottom-left-border-radius: 0px;
	
}

div.paginator .center
{margin
    /*line-height: 2.2em;*/
    margin-right:3px;
    color: #DD3C27;
}

div.paginator a:hover, div.paginator input:hover
{
    opacity: 1.0;
    text-decoration: none;
}

div.paginator input.no_hover_effect:hover
{
	opacity: 1.0;
    text-decoration: none;
}

div.paginator .left
{
    -moz-border-top-left-radius: 10px;
	-webkit-border-top-left-radius: 10px;
	border-top-left-radius: 10px; /* future proofing */
	-khtml-top-left-border-radius: 10px;
    -moz-border-bottom-left-radius: 10px;
	-webkit-border-bottom-left-radius: 10px;
	border-bottom-left-radius: 10px; /* future proofing */
	-khtml-bottom-left-border-radius: 10px;
	
	-moz-border-top-right-radius: 0px;;
	-webkit-border-top-right-radius: 0px;;
	border-top-right-radius: 0px;; /* future proofing */
	-khtml-top-right-border-radius: 0px;;
    -moz-border-bottom-right-radius: 0px;;
	-webkit-border-bottom-right-radius: 0px;;
	border-bottom-right-radius: 0px;; /* future proofing */
	-khtml-bottom-right-border-radius: 0px;;    
	
}

div.paginator .right
{
    -moz-border-top-right-radius: 10px;
	-webkit-border-top-right-radius: 10px;
	border-top-right-radius: 10px; /* future proofing */
	-khtml-top-right-border-radius: 10px;
    -moz-border-bottom-right-radius: 10px;
	-webkit-border-bottom-right-radius: 10px;
	border-bottom-right-radius: 10px; /* future proofing */
	-khtml-bottom-right-border-radius: 10px;
	
    -moz-border-top-left-radius: 0px;
	-webkit-border-top-left-radius: 0px;
	border-top-left-radius: 0px; /* future proofing */
	-khtml-top-left-border-radius: 0px;
    -moz-border-bottom-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	border-bottom-left-radius: 0px; /* future proofing */
	-khtml-bottom-left-border-radius: 0px;

    padding-right:10px;
}

div.paginator .disabled
{
    color: gray;
}

div.paginator input, div.paginator select 
{
    vertical-align: middle;
    font-size: 18px;
    font-family: Cabin,Arial,"Arial Unicode MS",Helvetica,sans-serif;
    font-weight: bold;
    font-style: normal;
}

.hanger
{
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(255,255,255,0.8);
    
    border-right: 2px solid #49c0f0;
    border-bottom: 2px solid #49c0f0;
    position:fixed;
    z-index:2000;
    top:0px;
    left:0;
    margin-left:auto;margin
    margin-right:auto;    
    
    padding-left:5px;
    padding-right:5px;
    
    -moz-border-bottom-right-radius: 10px;
	-webkit-border-bottom-right-radius: 10px;
	border-bottom-right-radius: 10px; /* future proofing */
	-khtml-bottom-right-border-radius: 10px;    
}

.hanger_greeting
{
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(255,255,255,0.8);
    
    border-right: 2px solid #49c0f0;
    border-bottom: 2px solid #49c0f0;
    position:fixed;
    z-index:1000;
    top:0px;
    left:0;
    margin-left:auto;
    margin-right:auto;    
    
    padding-left:5px;
    padding-right:5px;
    
    -moz-border-bottom-right-radius: 10px;
	-webkit-border-bottom-right-radius: 10px;
	border-bottom-right-radius: 10px; /* future proofing */
	-khtml-bottom-right-border-radius: 10px;    
}


.hanger>form, .hanger>ul
{
    overflow-x:hidden;
}

textarea.droppable.edit_question
{
    min-height:150px;
}

textarea.droppable.answer,textarea.droppable.choices
{
    min-height:60px;
}


.click_to_clipboard
{
    height:80px;
    overflow-x:hidden;
    overflow-y:scroll;
    clear:both;
    padding-left:10px;
    padding-right:10px;
    display: inline-grid;
    grid-template-columns: auto auto auto auto auto auto auto auto;
}

.click_to_clipboard .click_to_clipboard_item
{
    margin: 1px 1px 1px 1px;
    border: 2px solid black;
    width: 70px;
    height: auto;
    background-color: aliceblue;
    padding: 5px 2px 2px 2px;
    white-space:nowrap;
}

.click_to_clipboard .click_to_clipboard_item select
{
    width:60px;
}

.click_to_clipboard .click_to_clipboard_item div.sortable > span
{
    min-height:20px;
}

.click_to_clipboard .click_to_clipboard_item .choice_container .choices,
.click_to_clipboard .click_to_clipboard_item .multiple_container .choices
{
    margin-left:2px;
    margin-right:0px;
    margin-top:0px;
    margin-bottom:0px;
    padding:0px;
}

.click_to_clipboard .click_to_clipboard_item .multiple_container
{
    display:inline-block;
}

div.row_container
{
    white-space:nowrap;
    display:table;
    width:100%;
}

body.mobile div.row_container > div
{
	display:block;
	width:100%;
}

div.row_container>div
{
    width: 50%;
    text-align: left;
    min-width: 300px;
    
    display: table-cell;
    border:2px solid #DDD;
    vertical-align:top;
    height:auto;
    white-space:break-spaces;
}

div.row_container > div.preview
{
    padding: 10px 20px;
    white-space: nowrap;
}

div.row_container>div>textarea
{
    border:0px;
    background-color:#EEE;
    padding: 10px 20px;
}

#toolbar 
{
    position:fixed;
    bottom:0px;
    width:100%;
    background-color:#999;
    border-top-left-radius:5px;
    border-top-right-radius:5px;
    z-index: 2000;
    left: 0px;    
    border-top: 2px solid #DDD;
}


.click_to_clipboard_item:hover
{
    border: 2px solid #999;
    background-color:#EEE;
}

.hanger ul>li>a:hover
{
    background-color: rgba(255,255,255,1);
    display:block;
    color:black;
}

table.data
{
    margin-left:auto;
    margin-right:auto;
    border: 0px none;
    border-spacing: 0px;
    padding: 5px 0px;
    font-size: 28px;
    font-style: italic;
    font-weight: bold;
    font-family: Times New Roman,Arial;
    text-shadow: none;    
    width: 100%;
}

div.page
{
    max-width:100%;
    margin-left:auto;
    margin-right:auto;

}

input[type=checkbox],input[type=radio]
{
    -ms-transform: scale(1.2); /* IE */
    -moz-transform: scale(1.2); /* FF */
    -webkit-transform: scale(1.2); /* Safari and Chrome */
    -o-transform: scale(1.2); /* Opera */
}



a.button32
{
    color: white;
    line-height:2em;
    padding-right:5px;
}


.login_form_input_div, .login_form_button_div
{
    padding-bottom:10px;
    padding-left:5px;
}

#user_login .fa {
  color: white;
}

div.login_form_input_div a {
display: inline-block;
  height: 35px;
  vertical-align: top;
  line-height: 38px;
  background-color: #71c55d;
  padding-left: 5px;
  padding-right: 5px;
  width: 40px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-top: 1px solid gray;
  border-bottom: 1px solid gray;
  border-right: 1px solid gray;
}

div.login_form_input_div a:hover
{
    background-color:gray;
}

div.login_form_input_div .fa {
display: inline-block;
  line-height: 24px;
  width: 25px;
  vertical-align: top;
  padding-top: 4px;
}

div.login_form_input_div input {
  border: none;
  padding-left: 10px;
  padding-right: 10px;
}

div.search_form_input_div input.search
{
    width: 80%;
}

.transparent_button32
{
    background-color: transparent;
    color: #FFF;
    border-radius: 5px;
    position: relative;
    margin: 10px 2px;
    text-shadow: 0px 0px 3px #FFF;
    font-family: Times New Roman,Helvetica,Arial;
    font-size: 20px;
    font-style: italic;
    font-weight: normal;
    text-indent: 4px;
    border: 0px solid #000;
}

.transparent_button32:hover
{
    background-color: rgba(100,100,100,0.3);
}

a.toggle_sort, button.toggle_sort
{
    display: block;
    vertical-align: bottom;
    color: #FFFFFF;
    text-align: left;
    padding-left: 20px;
    padding-top: 0.25em;
    border: none;
    background-color: transparent;
    white-space: nowrap;
    width: 100%;
    border-radius: 0px;
    line-height: 24px;
    padding-bottom: 0.25em;
}

.toggle_sort:hover
{
    background-color: #51DCf0;;
}

select.sort
{
    float:right;
    
}

div.header
{
    background: rgba(220,220,220,0.5);
    max-width:100%;
}

.hanger .hide32
{
    float:right;
}

.mx-
{
    border: 0px;
    background-color: transparent;
    color: #1260CC;
    white-space:nowrap;
}

.mx-:hover
{
    border: 0px;
    /*background-color: #1260CC;*/
    
    color: white;
    background-color: #41952d;    
}

button
{
    white-space:nowrap;
    border:none;
    background-color: transparent;
    color:gray;
	position: relative;
    
    -moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px; /* future proofing */
	-khtml-border-radius: 5px;    
    
    font-family: Times New Roman, Helvetica, Arial;
    font-size: 14px;
    font-style: italic;
	font-weight: bold;    
	text-indent: 1px;
    
    display:inline-block;
    line-height:1.4em;
}

.button
{
    white-space:nowrap;
    border:1px solid  gray;
    background-color: #DDDDDD;
    color:gray;
    -moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px; /* future proofing */
	-khtml-border-radius: 5px;
	position: relative;
    
    margin: 5px 2px;
    text-shadow: 0px 0px 3px #FFFFFF;
    font-family: Times New Roman, Helvetica, Arial;
    font-size: 16px;
    font-style: italic;
	font-weight: bold;    
	text-indent: 1px;
    
    display:inline-block;
    line-height:1.4em;
    padding-right:4px;
    padding-left:4px;

}

button:hover
{
   background-color: gray;
   color:white;    
}

.button:hover
{
   border:1px solid  #DDDDDD;
   background-color: gray;
   color:white;
}

img.ajax_loader
{
	margin-left:-67px;
	margin-top:-50px;
	opacity:0.7;
}

input.search_text[type="text"]
{
    width: 60%;
    padding-left: 5px;
    padding-right: 5px;
    font-size: 12px;
    height: 2em;
    padding-top: 2px;
    padding-bottom: 2px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border: 2px solid #FFF;
    vertical-align: middle;
    color:#FFF;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */    
}

input.search_text::selection {
    color: none;
    background: none;
}
/* For Mozilla Firefox */
input.search_text::-moz-selection {
    color: none;
    background: none;
}

a.search_text_button, button.search_text_button
{
    border: 2px solid #FFF;
    height: 2em;
    vertical-align: middle;
    font-size: 12px;
    padding-top: 2px;
    padding-bottom: 2px;
    font-family: Times New Roman, Helvetica, Arial;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-top: 2px solid #FFF;
    border-bottom: 2px solid #FFF;
    border-right: 2px solid #FFF;
    border-left: 0px solid #FFF;
    font-weight: bold;
    text-indent: 0px;
    text-shadow: none;
    display: inline-block;
    width:22px;
    background-color:#EEEEEE;
}

a.search_text_button:hover, button.search_text_button:hover
{
    background-color:gray;
}

th a.fa
{
    font-family:FontAwesome;
}

#clear_search_and_sort
{
    background-color:#49c0f0;
    border:2px solid #FFF;
    color:#FFF;
}

.click_to_clipboard_item .choices > input[type="radio"], .click_to_clipboard_item .choices > input[type="checkbox"] 
{
    width: 0.25em;
    height: 0.25em;
    
    ms-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    
    min-width: 10px;
    min-height: 10px;
}

.click_to_clipboard_item .choices
{
    padding-top:0px;
    padding-bottom:0px;
    margin-top:2px;
    margin-bottom:0px;
}

div.ticket_comment
{
   margin-left:20px;
   margin-right:20px;
   padding-left:5px;
   padding-right:5px;
   border: 2px solid gray;
}

.ticket_comment_field_label
{
   width:200px;
   display:inline-block;
}

div.ticket_comment_field label
{
   display:inline-block;
}

div.ticket_comment_field:nth-child(2n) 
{
    background: #F7F7F7;
}
    

div.ticket_comment_field:nth-child(2n+1) 
{
    background: #F0F0F0;
}

table.table
{
    width:100%;
}

table.bordered td
{
    border-bottom: 1px solid gray;
}

table.bordered
{
    border-collapse: collapse;
}

body.mobile div.page
{
	clear: both;
}




/* End Sitemap menu */

.clock {
	background-image: url("../images/clockBg.png");
	height: 200px;
	position: relative;
	width: 200px
}
.clock div {
	position: absolute;
	left:48px
}

.weighing_scale  
{
	
	height: 330px;
	position: relative;
	width: 200px
}

.weighing_scale .view_scale_g div.main_scale 
{
	background-image: url("../images/weighing_scale_1000g.png");
	position: absolute;
	width: 200px;
	height: 262px;
}

.weighing_scale .view_scale_kg div.main_scale 
{
	background-image: url("../images/weighing_scale_10kg.png");
	position: absolute;
	width: 200px;
	height: 262px;
}

.weighing_scale div.view_scale 
{
	width: 200px;
	height: 330px;	
}

.weighing_scale div.load 
{
	height:70px;
	margin-bottom:-20px;
}

.weighing_scale div.load img
{
	margin-left:auto;
	margin-right:auto;
	display:block;
	height:90px;
}

.weighing_scale div.scale_hand 
{
	position:absolute;
	left:97px;
	top:33px;
}

.speak:hover, .speak_phonic:hover
{
    background-color:lightgreen;
    color:red;
}


.draggable .ui-draggable
{
	border:2px solid #999999;
	margin-right:5px;
}
     
.solutions_preview_block
{
    overflow:auto;
    resize:vertical;
}     
     
.blink 
{
    animation: blinker 0.6s linear infinite;
    color: #1c87c9;
    font-size: 30px;
    font-weight: bold;
    font-family: sans-serif;
}

.math-equation 
{
    color: darkblue;
    background-color:#EEE;
    border-radius:3px;
}

.MathJax_SVG:hover, .MathJax_CHTML:hover
{
    background-color:gray;
    color:white;
    border-radius:4px;
}
/* Preload images */
#preload
{
	display:none;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
.cd-faq__items { // on mibile, faq contents slides in from the right
  position: fixed;
  height: 100%;
  width: 90%;
  top: 0;
  right: 0;
}

.cd-faq__items .cd-faq__item
{
	text-align:left;
	font-style:italic;
}

.cd-faq__items--slide-in {
  transform: translateX(0);
}

#take_task_form p
{
    margin-bottom:0px;
}

#sample_exam .exam_question>div:first-child
{
    background-color:#EEEEEE;
    padding:5px 5px;
}

#disclaimer
{
    font: italic bold 16px Times New Roman;
}

#preview_exam .exam_name
{
    background-color:#DDDDDD;
    color:#000000;
    margin:5px 5px;
    padding:5px 5px;
}

div.filter label>div
{
	display:inline-block;
}
#exam_preview_sort div
{
	display:inline-block;
}
#preview_exam a.toggle_sort 
{
    display: inline;
    vertical-align: bottom;
    color: #444444;
    text-align: left;
    padding-left: 20px;
    padding-top: 0.5em;
    vertical-align:middle;
}

#exam_preview_filters select.filter
{
	border:2px solid #999999;
	background-color:#dddddd;
    padding:0px 5px;
}

#exam_preview_filters #clear_search_and_sort
{
	border:2px solid #999999;
	background-color:#999999;

}

#preview_exam a.search_text_button 
{
    border: 2px solid #FFF;
    height: 2em;
    vertical-align: middle;
    font-size: 12px;
    padding-top: 2px;
    padding-bottom: 2px;
    font-family: Times New Roman, Helvetica, Arial;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-top: 2px solid #999999;
    border-bottom: 2px solid #999999;
    border-right: 2px solid #999999;
    border-left: 0px solid #999999;
    font-weight: bold;
    text-indent: 0px;
    text-shadow: none;
    display: inline-block;
    width: 22px;
}
#preview_exam input.search_text[type="text"] 
{
    width: 60%;
    padding-left: 5px;
    padding-right: 5px;
    font-size: 12px;
    height: 2em;
    padding-top: 2px;
    padding-bottom: 2px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border: 2px solid #999999;
    background-color:#DDDDDD;
    vertical-align: middle;
    color: #555555;
}
#exam_preview_filters .filter
{
	display:inline-block;
	white-space:nowrap;
}

#preview_exam input[type="checkbox"]
{
    margin-left:20px;
    margin-right:4px;
    min-width:0px;
}

#exam_preview_filters .search_filter_header
{
	display:inline-block;
}

div.assistive input
{
    border:none;
}

#preview_exam 
{
	text-align:left;
}

div.exam_question.preview
{
    display:inline-block;
    width:30%;
    vertical-align:top;
    font-size: 10px;
    word-wrap: break-word;    
}

div.exam_questions:nth-child(2n+1) 
{
    background: #EEEEEE;
}

div.exam_questions
{
	border:1px solid #BBB;
}

div.exam_question.preview .choice_container
{
	display:inline-block;
	font-size:8px;
}

div.exam_question.preview .choice_container .choices, div.exam_question.preview  .speak
{
	font-size: 12px;
	background-size: contain;
	display: inline-block;
}

#new_user
{
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.register_button:hover
{
    background: #41952d;
}

.register_button
{
    background: #71c55d;
    color: #fff !important;
    margin: 0;
    display: inline-block;
    margin-left:auto;
    margin-right:auto;
}

div.exam_question 
{
    border:1px solid #e0e0e0;
    padding:10px 10px;
    background-color:#eeeeee;
}

.exam_question .question_display button
{
    border: 0px solid white;
    background-color: transparent;
    width: auto;
    min-width: 20px;
}

section .btn.btn-default
{
    background-color:lightgreen;
}

#take_task_form td.choices_td > div.sortable
{
    display:table-cell;
}

form.list td > .mx-
{
    display:block;
    white-space: nowrap;
}


body {
  background-color: #CCC;
  color: #333;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

h2 {
  color: #000;
  font-weight: 600;
}

h4 {
  color: #000;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 2;
}

h5 {
  color: #626262;
  font-size: 14px;
  font-weight: 500;
}

a {
  letter-spacing: 2px;
  text-decoration: none;
}

ul {
  letter-spacing: 1px;
}

li {
  /*color: #626262;*/
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 30px;
  /*text-transform: capitalize;*/
}

p {
  color: #505050;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 2;
  margin-bottom: 20px;
}

span {
  letter-spacing: 1px;
}

.img-fluid {
  height: 60px;
  margin-bottom: 30px;
  width: 60px;
}

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

.btn {
  background: #71c55d;
  color: #fff !important;
  border: 1px solid #fff;
  border-radius: 50px;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 15px 40px;
  text-transform: uppercase;
  -moz-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

.btn-default:hover {
  color: #fff;
  background-color: #e6e6e6;
  border-color: #adadad;
}

.fa {
  font-size: 13px;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: #71c55d;
  line-height: 1;
  color: #fff;
  padding: 7px 12px 13px 12px;
  font-size: 16px;
  border-radius: 2px;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

.back-to-top:focus {
  background: #71c55d;
  color: #fff;
  outline: none;
}

.back-to-top:hover {
  background: #55b03f;
  color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  height: 35px;
  z-index: 600;
  transition: all 0.5s ease;
}

#header #logo {
  padding: 5px 0 0 0;
}

#header #logo h1 {
  color: #505050;
  font-family: "Philosopher", sans-serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 1px;
  margin: 0;
}

#header #logo h1 a {
  color: #555;
  line-height: 1;
  display: inline-block;
  text-decoration: none;
}

#header #logo h1 a span {
  color: #71c55d;
}

#header #logo img {
  padding: 0;
  margin: 0;
}

.scroll-header {
  background: #fff;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: calc(100vh - 40px);
  background: url(../img/hero-bg.png) center bottom no-repeat;
  background-size: 100%;
  position: relative;
  margin-top: 40px;
}

@media (min-width: 1025px) {
  #hero {
    background-attachment: fixed;
  }
}

#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  font-family: "Philosopher", sans-serif;
  color: #71c55d;
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
}

#hero h2 {
  color: #777;
  margin-bottom: 30px;
  font-size: 20px;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

#hero img {
  max-width: 95%;
  margin-bottom: 30px;
}

#hero .btn-get-started {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 11px 36px;
  border-radius: 50px;
  transition: 0.5s;
  margin-bottom: 30px;
  border: 2px solid #71c55d;
  background: #fff;
  color: #71c55d;
  text-decoration: none;
}

#hero .btn-get-started:hover {
  background: #71c55d;
  color: #fff;
}

#hero .btns a {
  color: #555;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 4px 20px;
  text-decoration: none;
  transition: 0.3s;
}

@media (max-width: 720px) 
{
   div.page
  {
    padding-top:0px;
  }
}


@media (min-width:576px)
{
  #take_task_form div.choices_block 
  {
    display: grid;
    grid-template-columns:auto auto;
  }

}


@media (max-width: 575px) 
{
  #hero .btns a {
    margin: 4px 8px;
  }

  #take_task_form div.choices_block 
  {
    display: grid;
    grid-template-columns:auto;
  }

}

#hero .btns a:hover {
  color: #71c55d;
}


/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/


@media (max-width: 992px) {

}

.section-title {
  margin-top:40px;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .section-title {
    margin-bottom: 40px;
  }
}

.section-title h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.section-title .separator {
  margin: 0;
}

.separator {
  color: #626262;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 30px;
  text-transform: capitalize;
}

/* Get Started Section
--------------------------------*/
#get-started {
  display: inline-block;
  height: 100%;
  width: 100%;
}

#get-started .feature-block {
  background: #fff none repeat scroll 0 0;
  padding: 30px 20px;
  transition: all 0.5s ease-in-out 0s;
}

@media (max-width: 991px) {
  #get-started .feature-block {
    margin-bottom: 30px;
  }
}

#get-started .feature-block:hover {
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease-in-out 0s;
}

#get-started .feature-block h4 {
  margin-bottom: 20px;
}

#get-started .feature-block p {
  margin-bottom: 20px;
}

#get-started .feature-block a {
  color: #505050;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  text-transform: capitalize;
  transition: 0.3s;
}

#get-started .feature-block a:hover {
  color: #71c55d;
}

/* About Us Section
--------------------------------*/
#about-us img {
  max-width: 100%;
}

#about-us .about-content {
  padding-top: 60px;
}

#about-us .about-content h2 {
  color: #252525;
  font-family: "roboto";
  font-size: 39px;
  font-weight: 100;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: capitalize;
}

#about-us .about-content span {
  font-weight: 700;
  padding-right: 10px;
  text-transform: uppercase;
}

#about-us .about-content ul li {
  line-height: 36px;
}

#about-us .about-content ul li .fa {
  padding-right: 20px;
}

/* Features Section
--------------------------------*/
#features {
  display: inline-block;
  height: 100%;
  width: 100%;
}

#features .feature-block {
  background: #fff none repeat scroll 0 0;
  padding: 30px 20px;
  margin-bottom: 30px;
  transition: all 0.5s ease-in-out 0s;
}

#features .feature-block:hover {
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease-in-out 0s;
}

#features .feature-block h4 {
  margin-bottom: 20px;
}

#features .feature-block p {
  margin-bottom: 0;
}

/* Screenshots Section
--------------------------------*/
.owl-dot.active > span {
  height: 10px !important;
  width: 10px !important;
}

.owl-theme .owl-dots .owl-dot span {
  height: 10px !important;
  width: 10px !important;
}

.owl-item img {
  cursor: pointer;
}

.owl-stage-outer {
  margin-bottom: 30px;
}

.owl-theme .owl-nav {
  display: none;
  margin-top: 10px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #71c55d;
}

.owl-theme .owl-dots .owl-dot span {
  background: #ddd;
}

/* Video Section
--------------------------------*/
#video {
  background: url(../img/video-bg.jpg) center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
  overflow: hidden;
}

#video .overlay {
  background: rgba(0, 0, 0, 0.85);
  height: 100%;
}

#video .overlay .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#71c55d 50%, rgba(113, 197, 93, 0.15) 52%);
  border-radius: 50%;
  display: block;
  margin: 153px auto 0;
  position: relative;
  overflow: hidden;
}

#video .overlay .play-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-40%) translateY(-50%);
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

#video .overlay .play-btn:before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate1 2s;
  animation: pulsate1 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

#video .overlay .play-btn:hover::after {
  border-left: 15px solid #71c55d;
  -webkit-transform: scale(20);
  transform: scale(20);
}

#video .overlay .play-btn:hover::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-40%) translateY(-50%);
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@-webkit-keyframes pulsate1 {
  0% {
    -webkit-transform: scale(0.6, 0.6);
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate1 {
  0% {
    -webkit-transform: scale(0.6, 0.6);
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0;
  }
}

@-webkit-keyframes pulsate2 {
  0% {
    -webkit-transform: scale(0.1, 0.1);
    transform: scale(0.1, 0.1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* Team Section
--------------------------------*/
#team .team-block {
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
  height: 254px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

@media (max-width: 991px) {
  #team .team-block {
    margin-bottom: 30px;
  }
}

#team .team-block img {
  width: 100%;
}

#team .team-block .team-content {
  background: #fff none repeat scroll 0 0;
  bottom: 0;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(0, 0, 0, 0.19);
  bottom: -147px;
  padding: 20px 0;
  position: absolute;
  width: 100%;
  transition: all 0.5s ease-in-out 0s;
}

#team .team-block .team-content ul {
  display: block;
  width: 100%;
}

#team .team-block .team-content ul li {
  display: inline-block;
}

#team .team-block .team-content ul li a {
  color: #626262;
}

#team .team-block .team-content ul li a .fa {
  float: left;
  padding-left: 10px;
  padding-right: 10px;
  transition: 0.3s;
}

#team .team-block .team-content ul li a .fa:hover {
  color: #71c55d;
}

#team .team-block .team-content ul > span {
  display: inline-block;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

#team .team-block:hover .team-content {
  bottom: 0px;
  transition: all 0.5s ease-in-out 0s;
}

/* Testimonials Section
--------------------------------*/
#testimonials .testimonials-content {
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
  padding: 49px 20px;
}

#testimonials .testimonials-content::before {
  color: #71c55d;
  content: "";
  display: inline-block;
  font: 70px/1 FontAwesome;
  position: absolute;
  right: 43px;
  text-align: left;
  top: -29px;
}

#testimonials .top-top > h2 {
  font-family: "Roboto" sans-serif;
  font-size: 45px;
  font-weight: 100;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: capitalize;
}

#testimonials .top-top > h4 {
  font: 700 12px Lato, sans-serif;
}

#testimonials .top-top span {
  font-size: 12px;
  font-weight: 300;
  margin-left: 26px;
}

#testimonials .btm-btm ul li {
  float: left;
  margin-left: 13px;
  border-radius: 50%;
  margin-right: 13px;
  background: #ddd none repeat scroll 0 0;
  border-radius: 50%;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: block;
  height: 10px;
  width: 10px;
}

#testimonials .btm-btm .active {
  background: #71c55d;
}

.carousel-indicators {
  position: relative;
  bottom: 0;
  left: 0;
  bottom: 0 !important;
  z-index: 15;
  width: auto;
  padding-left: 0;
  margin: 30px auto 0 auto;
  margin-right: auto;
  text-align: center;
  list-style: none;
  margin-bottom: 0;
  display: inline-block;
}

.carousel-indicators li {
  margin: 0;
}

/* Pricing Table Section
--------------------------------*/
#pricing .block-pricing {
  background: #fff;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2), 0 0 4px 0 rgba(0, 0, 0, 0.19);
  display: inline-block;
  position: relative;
  width: 100%;
}

@media (max-width: 991px) {
  #pricing .block-pricing {
    margin-bottom: 30px;
  }
}

#pricing .block-pricing .table {
  margin-bottom: 0;
  padding: 30px 15px;
  max-width: 100%;
  width: 100%;
}


#pricing .block-pricing .table h4 {
  padding-bottom: 30px;
}

#pricing .block-pricing h2 {
  margin-bottom: 30px;
}

#pricing .block-pricing ul {
  list-style: outside none none;
  margin: 10px auto;
  max-width: 240px;
  padding: 0;
}

#pricing .block-pricing ul li {
  border-bottom: 1px solid rgba(153, 153, 153, 0.3);
  padding: 12px 0;
  text-align: center;
}

#pricing .block-pricing ul li b {
  color: #3c4857;
}

#pricing .block-pricing .table .table_btn a {
  background: #71c55d;
  color: #fff;
  margin: 0;
  display: inline-block;
}

#pricing .block-pricing .table .table_btn a:hover {
  background: #55b03f;
}

#pricing .block-pricing .table .table_btn a .fa {
  font-size: 13px;
  margin-right: 5px;
}

/* Blog Section
--------------------------------*/
@media (max-width: 991px) {
  #blog .block-blog {
    margin-bottom: 30px;
  }
}

#blog .block-blog img {
  width: 100%;
}

#blog .block-blog .content-blog {
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2), 0 0 4px 0 rgba(0, 0, 0, 0.19);
  display: inline-block;
  min-height: 125px;
  padding: 20px 10px;
  width: 100%;
}

#blog .block-blog .content-blog h4 {
  line-height: 24px;
  margin-bottom: 20px;
  text-transform: capitalize;
  font-weight: normal;
  letter-spacing: 0;
  font-size: 16px;
}

#blog .block-blog .content-blog h4 a {
  color: #555;
  text-decoration: none;
  transition: 0.3s;
}

#blog .block-blog .content-blog h4 a:hover {
  color: #71c55d;
}

#blog .block-blog .content-blog > span {
  float: left;
  font-size: 12px;
}

#blog .block-blog .content-blog a.readmore {
  color: #505050;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  letter-spacing: 0;
  text-transform: capitalize;
}

#blog .block-blog .content-blog a.readmore:hover {
  color: #71c55d;
}

/* Newsletter Section
--------------------------------*/
#newsletter {
  background: transparent url(../img/newsletter-bg.jpg) no-repeat center top fixed;
  background-size: cover;
}

#newsletter .overlay {
  background: linear-gradient(rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.2) 95%);
  height: 100%;
  width: 100%;
}

#newsletter .form-control {
  background-color: transparent;
  border: 1px solid #dddddd;
  border-radius: 0;
  color: #888;
  font-size: 11px;
  font-weight: 600;
  height: 50px;
  text-align: center;
  width: 70%;
  background: #fff;
}

@media (max-width: 575px) {
  #newsletter .form-control {
    margin-bottom: 30px;
    width: 100%;
  }
  
}

#newsletter .form-control:focus {
  border-color: #71c55d;
  box-shadow: none;
  outline: 0 none;
}

#newsletter .btn {
  background: #71c55d;
  border: 0;
  border-radius: 0;
  height: 50px;
  width: 30%;
  transition: 0.3s;
}

@media (max-width: 575px) {
  #newsletter .btn {
    width: 100%;
  }
}

#newsletter .btn:hover {
  background: #55b03f;
}

#newsletter .btn .fa {
  padding-right: 10px;
}

#newsletter ul {
  display: inline-block;
  margin-top: 40px;
  margin-bottom: 0;
}

#newsletter ul li {
  background: #71c55d;
  border-radius: 50px;
  float: left;
  height: 35px;
  line-height: 35px;
  margin-left: 10px;
  margin-right: 10px;
  width: 35px;
  transition: 0.3s;
}

#newsletter ul li:hover {
  background: #55b03f;
}

#newsletter ul li .fa {
  color: #fff;
}

/* Contact Section
--------------------------------*/
#contact {
  background: #fff;
}

#contact .info {
  color: #222;
}

#contact .info i {
  font-size: 32px;
  color: #71c55d;
  float: left;
}

#contact .info p {
  padding: 0 0 10px 50px;
  margin-bottom: 20px;
  line-height: 22px;
  font-size: 14px;
}

#contact .info .email p {
  padding-top: 5px;
}

#contact .social-links {
  padding-bottom: 20px;
}

#contact .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #71c55d;
  color: #fff;
  line-height: 1;
  padding: 6px 0 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#contact .social-links a:hover {
  background: #55b03f;
  color: #fff;
}

#contact .form #sendmessage {
  color: #71c55d;
  border: 1px solid #71c55d;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #errormessage {
  color: red;
  display: none;
  border: 1px solid red;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #sendmessage.show, #contact .form #errormessage.show, #contact .form .show {
  display: block;
}

#contact .form .validation {
  color: red;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}

#contact .form input, #contact .form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  padding: 12px 10px;
  line-height: 1;
}

#contact .form button[type="submit"] {
  background: #71c55d;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
}

#contact .form button[type="submit"]:hover {
  background: #92d283;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background-color: transparent;
  padding-top: 0px;
}

.footer .footer-logo .navbar-brand {
  color: #fff;
  display: inline-block;
  float: none;
  font-family: "Philosopher", sans-serif;
  font-size: 24px;
  font-weight: 500;
  height: 100%;
  letter-spacing: 0.2em;
  padding-left: 0;
  padding-top: 0;
}

.footer .footer-logo p {
  color: #fff;
  font-size: 12px;
  letter-spacing: 1px;
}

.footer .list-menu > h4 {
  color: #fff;
  padding-bottom: 20px;
}

.footer .list-menu ul li a {
  color: #fff;
  font-size: 12px;
  padding-left: 5px;
  text-decoration: none;
  letter-spacing: 0;
}

.footer .copyrights {
  background: #fff;
  margin-top: 0px;
  text-align: center;
  padding: 5px;
}

.footer .copyrights p, .footer .copyrights .credits {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
  font-size: 14px;
  letter-spacing: 0;
}

.footer .copyrights p a, .footer .copyrights .credits a {
  letter-spacing: 0;
  color: #71c55d;
}


div.click_to_clipboard .toolbars
{
    height: 38px;
}

#main_book_editor
{
    background-color:#ddd;
}


body {
    margin: 0;
    overflow: hidden; /* Hide scrollbar during loading */
}

/* The loading overlay styles */
#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff; /* Or any color */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    /* Add smooth transition for fading out */
    transition: opacity 0.5s ease;
}

/* A simple CSS spinner example (optional, you can use an image) */
.spinner {
    border: 16px solid #f3f3f3;
    border-top: 16px solid #3498db;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Styles for main content and hidden class */
.content
{
    /* Add initial animation styles (e.g., opacity: 0 for fade-in) */
    opacity: 0; 
    transition: opacity 1s ease-in-out;
}

.hidden {
    display: none;
}

/* Class to trigger the fade-in animation on the content */
.visible {
    opacity: 1;
}
