/**
 * bluegreen recording portal
 * Author : RemoteLink Team
 * ===================================================================
 * Table of Contents
 *
 * 1.0 - Resets
 * 2.0 - Repeatable Patterns
 * 3.0 - Structure / Grid / Column
 * 4.0 - Header
 * 5.0 - Main Content
 * 6.0 - Footer
 * 7.0 - Clearing
 * 8.0 - Mobile CSS / Media Queries
 */
/* =================================================================== 
 * 1.0 :: Resets
 * ===================================================================
 */
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, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  border: 0;
  color: #6e6e6e;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

body {
    line-height: 1;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

html {
    font-size: 100%;
    overflow-y: scroll;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%
}

article, aside, figure, footer, header, nav, section, time {
    display: block
}

/* =================================================================== 
 * 2.0 :: Repeatable Patterns
 * ===================================================================
 */

/* Links */

:focus {
    outline: 0
}
a, a.link--blue, a.link--gray  {
    text-decoration: none;
}

a.link--blue {
    color: #309DDC;
    font-size: 12px;
}

a.link--blue:hover {
    color: #147EB9;
}

a.link--gray {
    color: #bbbbbb;
    font-size: 12px;
}

a.link--gray:hover {
    color: #fff;
}

/* Formating */
b, strong {
    font-weight: bold!important
}

i, em {
    font-style: italic!important
}

small {
    font-size: 75%!important
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sup {
    top: -0.5em
}

sub {
    bottom: -0.25em
}

h1,
h2,
h3,
h4,
h5,
h6 {
    clear: both;
    font-weight: normal;
    margin: 0!important;
}

h1 {
    font-size: 25px;
    line-height: 35px
}

h2 {
    font-size: 20px;
    line-height: 30px
}

h3 {
    font-size: 18px;
    line-height: 25px
}

h4 {
    font-size: 14px;
    margin-bottom: 0
}

h5 {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 0
}

h6 {
    font-size: 9px;
    line-height: 15px;
    margin-bottom: 0
}

p {
    margin-bottom: 20px
}

p:last-child {
    margin-bottom: 0!important
}

.color--blue {
    color: #00b9e4!important
}

.color--green {
    color: #a5cf4e!important
}

.color--orange {
    color: #fdb834!important
}

.color--white {
    color: #fff!important
}

.color--red {
    color: #f00!important
}

.color--gray {
    color: #bbbbbb!important
}

/* Alignment */

.left {
    float: left!important
}

.right {
    float: right!important
}

.t-center {
    text-align: center!important
}

.t-left {
    text-align: left!important
}

.t-right {
    text-align: right!important
}

.t-justify {
    text-align: justify!important
}

/* Audio & Video */

audio, canvas, video {
    display: inline-block;
    vertical-align: middle!important;
    width: 100%;
}


/* Images */

img {
    border: 0;
    -ms-interpolation-mode: bicubic;
    max-width: 100%
}

img.alignleft {
    float: left;
    margin: 0 12px 12px 0
}

img.alignright {
    float: right;
    margin: 0 0 12px 12px
}

img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 12px
}

img.img-absolute {
    position: absolute;
}

.imageholder {
    height: 105px;
}
/* UL, OL */

.list-text {
    margin: 0 20px 20px
}

.list-option {
    margin: 0 20px;
    text-align: left;
    display: inline-block; 
}

.list-option li {
    list-style: none;
    margin-bottom: 10px;
    padding: 5px;
    position: relative;
}

.list-option li:hover {
    background: #dcdcdc;
    border-radius: 5px;
}

.list-option li label {
    display: block;
    white-space: nowrap;
    color: #000;
    font-weight: normal;
}

.list-option li span {
    display: inline-block;
    white-space: normal;
    top: 5px;
    position: relative;
    cursor:pointer;
    margin-right: 20px;
}

/* Margin */

.mb--20 {
    margin-bottom: 20px!important
}

.mb--10 {
    margin-bottom: 10px!important
}

.mb--30 {
    margin-bottom: 30px!important
}

/* Forms */
form { text-align: center}

button,
input[type=submit],
input[type=button],
input[type=reset] {
    background: #309DDC;
    border: 0;
    color:#fff;
    cursor: pointer;
    display: inline-block;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
}

#form-thin button,
#form-thin input[type=submit],
#form-thin input[type=button],
#form-thin input[type=reset] {
    padding: 7px!important;
}

#ttl-form-thin button,
#ttl-form-thin input[type=submit],
#ttl-form-thin input[type=button],
#ttl-form-thin input[type=reset] {
    padding: 7px!important;
    margin-bottom: 5px;
    width: 80%  ;
}

button:hover,
input[type=submit]:hover,
input[type=button]:hover,
input[type=reset]:hover {
    background: #147EB9;
}

input[disabled] {
    cursor: default
}

input[type=checkbox]:focus,
input[type=radio]:focus,
input[type=file]:focus,
input[type=hidden]:focus {
    border: none;
    outline: 0
}

input[type=checkbox],
input[type=radio],
input[type=file],
input[type=hidden],
input[type=image],
input[type=color] {
    border: 0!important;
    border-radius: 0!important;
    padding: 0!important
}

button,
input,
textarea {
    font-family: inherit
}

button,
input {
    line-height: normal
}

textarea {
    font-size: 100%;
    overflow: auto;
    vertical-align: top
}

input[type=text],
input[type=password],
select,
textarea {
    background: #eee;
    border-radius: 5px;
    color: #6e6e6e;
    border: 1px solid transparent;
    padding: 8px;
    margin-bottom: 5px;
    width: 100%;
    -webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

 
#form-thin input[type=text],
#form-thin input[type=password],
#form-thin select,
#form-thin textarea {
    padding: 5px!important;
    font-size: 12px;
    border-radius: 5px;
}

input[type=password]:focus,
input[type=text]:focus,
textarea:focus {
    background:#fff;
    -webkit-box-shadow: 0px 0px 1px 2px rgba(24,146,216,0.75);
    -moz-box-shadow: 0px 0px 1px 2px rgba(24,146,216,0.75);
    box-shadow: 0px 0px 1px 2px rgba(24,146,216,0.75); 
}

form label {
    color: #6e6e6e;
    display: block;
    text-align: left;
}

form textarea,
form input[type=text],
form input[type=password] {
    width: 100%;
    margin-bottom: 10px;
}

form textarea {
    height: 250px
}


.month, .day {
    width: 28%;
}

.year {
    width: 32%;
}

.form--gray-bg {
    background: #f5f5f5;
    border: 1px solid #e9e9e9;
    padding: 40px;
    text-align: center;
    clear:both;                 /*additional css*/
}

.btn--gray {
    background: #6e6e6e;
    color: #fff;
    padding: 8px 25px
}

.btn--gray:hover {
    background: #333
}

.btn--big {
    display: block;
    font-size: 18px;
    margin: 10px;
    padding: 10px 0;
    width: 100%;
    max-width: 200px;
}

.btn--white {
    background: #f2f2f2;
    color: #222;
    padding: 8px 25px
}

.btn--white:hover {
    background: #ddd
}

.btn--gray:hover {
    background: #333
}

/* Table */
table {
    border-collapse: separate;
    width: 100%;
}
table, td, th {
    text-align: center;
    border-spacing: 10px 5px!important;
    border-collapse: separate!important;
    font-size: 14px;
    color:#505050;
}

#slid_tbl th{
    font-weight:bold;
    cursor:pointer;
}

#slid_tbl th.asc:after{
    content:' \25B4';    
}

#slid_tbl th.desc:after{
    content:' \25BE';    
}


.manage-sales, 
.manage-sales td, 
.manage-sales th {
    text-align: center;
    border-spacing: 10px 0;
    border-collapse: separate;

} 

.progress-report    { border-collapse: collapse!important;}
.progress-report td { padding: 8px 0; }
.progress-report .not-started { background: rgba(244, 67, 54, 0.3)!important }
.progress-report .in-progress { background: rgba(253, 184, 52, 0.3)!important }
.progress-report .completed { background: rgba(0, 150, 136, 0.3)!important }

.ttl-manage-sales, 
.ttl-manage-sales td, 
.ttl-manage-sales th {
    text-align: center;
    border-spacing: 10px 0;
    border-collapse: separate;
    font-size: 11px;
} 

th {
    text-align: center;
    font-weight: bold;
    /* vertical-align: middle; */
    font-size: 12px;
    
}
.search-result,
.search-result td,
.search-result th {
    border-spacing: 10px 7px!important;
    border-collapse: separate;
}

.start-date, .end-date{
    line-height: 5px;
    width: 30%;
    text-align: left;
}

.id-detail-header                               { padding-right: 5px; }
.id-detail-header td:nth-child(2)               { width: 175px; }  

.id-summary-header                              { padding-right: 15px;  }
.id-summary-header .grand-total                 { font-weight: bold; }
.id-summary-header .grand-total td              { font-size: 14px; } 
.id-summary-header .grand-total td:nth-child(2),
.id-summary-header .grand-total td:nth-child(3) { border-top: 1px solid #6e6e6e; padding-top: 20px; }

.recording-log                      {  font-family: arial, sans-serif; font-size: 12px; width: 100%; padding-right: 10px; border-spacing: 0; }
.recording-log td,
.recording-log th                   { border: 1px solid #dddddd; text-align: center; padding: 8px; vertical-align: middle; }
.recording-log tr:nth-child(even)   { background-color: #dddddd; }  

.sales-header                           { padding-right: 5px; }
.sales-header tbody tr td:nth-child(3)  { width: 130px; }
/* BG Color & Divider Images */

.bg--blue {
    background: #00b9e4;
    color: #fff;
    padding: 20px;   
}

.bg--green {
    background: #a5cf4e;
    color: #fff;
    padding: 20px;
}

.bg--orange {
    background: #fdb834;
    color: #fff;
    padding: 20px;
}

.bg--white {
    color: #2b2b2b;
    border-radius: 5px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
}

.bg--white-opac {
    background-color: rgba(255,255,255, 0.8);
    color: #2b2b2b;
    padding: 20px;
    min-height: 680px;
}

.bg--highlight {
    color: #2b2b2b;
    /* padding: 20px 0; */
    min-height: 680px;
}

.bg--height {
    min-height: 490px;      /*additional css*/
}

.assoc--login a, 
.admin--login a{
    font-size: 12px;
}

/* ===================================================================
 * 3.0 :: Structure / Grid/ Column
 * ===================================================================
 */
body {
    color: #2b2b2b;
    font: 14px/24px Arial, Helvetica, sans-serif
}

.inside {
    margin-left: auto;
    margin-right: auto;
    width: 1000px
}

.last {
    clear: right;
    margin-right: 0!important
}

/* Grid / Colums */

.one-whole {
    width: 100%;
}

.one-half {
    width: 49%
}

.one-third {
    width: 32%
}

.one-fourth {
    width: 23.5%
}

.one-fifth {
    width: 18.4%
}

.one-sixth {
    width: 15%
}

.one-tenth {
    width: 8%
}

.two-third {
    width: 66%
}

.two-fifth {
    width: 38.8%
}

.three-fourth {
    width: 74.5%
}

.three-fifth {
    width: 59.2%
}

.four-fifth {
    width: 79.6%
}

.five-sixth {
    width: 83%
}

.nine-tenth {
    width: 90%
}

.one-half,
.one-third,
.two-third,
.three-fourth,
.one-fourth,
.one-fifth,
.two-fifth,
.three-fifth,
.four-fifth,
.one-sixth,
.five-sixth,
.one-tenth,
.nine-tenth {
    margin-right: 2%;
    margin-bottom: 10px;
    float: left;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.one-third,
.two-third{
    width: 100%;
}

.two-third{
    border-bottom: 1px solid #bbb;
    padding-bottom: 5px;
}

.one-tenth,
.nine-tenth {
    margin-bottom: 0;
    border: 1px solid;
}

.last {
    margin-right: 0!important;
    clear: right
}

/* =================================================================== 
 * 4.0 :: Header
 * ===================================================================
 */
header {
    padding: 10px 0 0
}

header #logo--1 {
    float: left;
    margin: 25px 0;
    width: 250px;
}

header #logo--2 {
    float: left;
    margin: 20px 0; 
    display:none;
}

header #logo--3 {
    float: right;
    margin-top: 7px;
    width: 150px
}

header a {
    font-size: 12px;
    color: #bbbbbb;
    display: block;
    line-height: 20px;
    text-align: left;
    width: 160px;
    margin-right: 0;
    /* margin-left: auto; */
}

header a:hover {
    color: #fff;
}

.container {
    height: auto; overflow: hidden;
}

.menu {
    width: 160px; float: right;
}

.menu .user,
.menu .back-link {
    color: #fff;
    font-weight: bold;
}
.logo {
      float: none; width: auto; overflow: hidden;  
}

/* Navigation & User Login */

#wrap--color-bar {
    background: url(../images/cc_header.png);
    background-size: cover;
/*     background: #525252;
background-image: -moz-linear-gradient( 90deg, rgb(71, 71, 71) 0%, rgb(95, 95, 95) 100%);
background-image: -webkit-linear-gradient( 90deg, rgb(71, 71, 71) 0%, rgb(95, 95, 95) 100%);
background-image: -ms-linear-gradient( 90deg, rgb(71, 71, 71) 0%, rgb(95, 95, 95) 100%); */
}

#wrap--color-bar .inside {
    position: relative;
    padding-left: 5%;
    padding-right: 5%;
}

.active-link {
    color: #fff;
    font-weight: bold;
}

.logout-mobile {
    display: none;
}

.logout,
.logout-mobile {
    text-indent: 20px;
    background: url(../images/logout.png);
    background-size: 60px;
    background-position: 0 40px;
    text-align: right;
    position: relative;
    width: 17px;
    height: 19px;
    margin-right: 40px;
}

.logout:hover,
.logout-mobile:hover {
    background-position: -17px 40px;
}

.one-sixth .logout, 
.five-sixth .logout-mobile {
    float: none;
    text-align: left;
    position: inherit;
    height: 19px;
}
header .one-sixth a,
header .five-sixth a {
    margin-right: 0;
    margin-left: 0;
}

.main--buttons,
 .main--buttons-program {
    list-style: none;
}

.main--buttons > li { 
    margin: 20px 0;
    width: 50%;
    line-height: 40px;
    font-size: 26px;  
    cursor: pointer;
    display: inline-block;
    border: 1px solid rgba(255,255,255, 0.6);
    border-radius: 5px;
    text-align: center;
}

.main--buttons-program > li { 
    margin: 20px 0;
    width: 50%;
    line-height: 40px;
    font-size: 26px;  
    cursor: pointer;
    display: inline-block;
    border-radius: 5px;
    text-align: center;
/*     -moz-box-shadow: inset 0 0 220px -10px #f5f5f5;
-webkit-box-shadow: inset 0 0 220px -10px #f5f5f5;
box-shadow: inset 0 0 220px -10px #f5f5f5; */
    background-color: rgba(255,255,255,0.5);
}

.main--buttons > li a{ 
    color: #fff;
    padding: 15px;
    display: block;
}

.main--buttons-program > li a{ 
    color: #0f5e8a;
    padding: 15px;
    display: block;
    font-weight: 600;
}

.main--buttons-program > li.disable,
.main--buttons-program > li.disable:hover {
    /* background-color: rgba(54, 54, 54, 0.3); */
    background-color: rgba(187, 187, 187, 0.8);
    cursor: default;
} 

.main--buttons-program > li.disable a {
    color: rgba(0,0,0,0.2);
    pointer-events: none;

}

.main--buttons-program > li.disable:hover .description li {
    /* visibility: hidden; */
}

.main--buttons > li a:hover{ 
    color: #147EB9!important;
}
.main--buttons > li:hover{
    /* background: #00b9e4; */
    border: 1px solid transparent;
    -moz-box-shadow: inset 0 0 220px -10px #f5f5f5;
    -webkit-box-shadow: inset 0 0 220px -10px #f5f5f5;
    box-shadow: inset 0 0 220px -10px #f5f5f5;
}

.main--buttons-program > li:hover{
    background: rgba(255,255,255,0.8);
}

.main--buttons > li:hover .description li,
.main--buttons-program > li:hover .description li {
    opacity: 1;
    visibility: visible;
}

.description li {
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    position: absolute;
    top: 200px;
    right: 0;
    width: 40%;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    list-style: none;
    font-style:italic;
        -webkit-transition-property: opacity;
       -moz-transition-property: opacity;
         -o-transition-property: opacity;
            transition-property: opacity;
    -webkit-transition-duration: 0.8s;
       -moz-transition-duration: 0.8s;
         -o-transition-duration: 0.8s;
            transition-duration: 0.8s;
    -webkit-transition-timing-function: linear;
       -moz-transition-timing-function: linear;
         -o-transition-timing-function: linear;
            transition-timing-function: linear;
}

.description img {
    width: 100px;
    display: block;
    margin: 0 auto 10px;
}

.listen {
    text-indent: -9999px;
    background: url(../images/listen.png);
    background-size: 60px;
    top: 0px;
    width: 29px;
    height: 26px;
    display: block;
    margin: 0 auto 2px;
}

.listen:hover {
    background-position: -30px 0;
}
/* =================================================================== 
 * 5.0 :: Main Content
 * ===================================================================
 */
#wrap--content,
#wrap--content-inner {
    background: #fff;
    background: url(../images/bg1.jpg) top center repeat-y;
    border-bottom: 1px solid #ddd;
    padding: 30px 0;
    background-size: cover;
}

#wrap--content-inner {
    background: url(../images/bg1.jpg) top center repeat-y;
    padding: 0; 
    background-size: cover;
}

#wrap--content .inside,
#wrap--content-inner .inside {
    padding-left: 5%;
    padding-right: 5%;
}

.content--shadow {
    -moz-box-shadow: inset 0 -100px 150px -20px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: inset 0 -100px 150px -20px rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 -100px 150px -20px rgba(0, 0, 0, 0.5);
}

.page--title {
    padding: 20px 0 0 0;
    font-size: 24px!important;
}

.back {
    color: #bbbbbb;

}

.back:before { 
content: " ";
    background: url(../images/logout.png);
    background-size: 80px;
    background-position: 33px 47px;
    width: 15px;
    padding-left: 16px;
}

.back:hover::before { 
    background-position: 16px 47px;
}

.btn-back {
    background: rgba(20, 126, 185, 0.8);
    padding: 5px 20px;
    margin: 10px 0;
    line-height: 20px;
    border-radius: 5px;
    /* color: #309ddc!important; */
    color: #fff!important;
    font-weight: bold;
    display: inline-block;
}
.btn-back:hover {
    background: rgba(20, 126, 185, 1);
}
.pass-diag{
    margin:auto;
}

.w3-container {
    padding: 20px 0!important;
}

.edit_icon { 
    cursor: pointer;
    background: url(../images/edit.png);
    background-size: 60px;
    top: 0px;
    width: 27px;
    height: 27px;
    display: inline-block;
    margin: 0 5px;
}

.view_icon { 
    cursor: pointer;
    background: url(../images/view_ico.png);
    background-size: 60px;
    top: 0px;
    width: 27px;
    height: 27px;
    display: inline-block;
    margin: 0 5px;
}

.edit_icon + input,
.view_icon + input,
.buy_now + input,
.add_new + input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.edit_icon:hover {
    background-position: -30px 0;
}

.view_icon:hover {
    background-position: -30px 0;
}


.buy_now, .add_new {
    cursor: pointer;
}
.buy_now:hover, 
.add_new:hover {
    color: #1c94c4;
}

.hosts > li,
.coaches > li,
.participants > li {
    margin-bottom: 10px;
    color: #1270a5!important;
    font-size: 120%;
    font-weight: bold;
}

.hosts > li:last-child,
.coaches > li:last-child,
.participants > li:last-child {
    list-style: none;
    border-top: 1px solid #6e6e6e;
    padding-top: 15px; 
/*     font-weight: bold;   */  
}

.hosts > li:last-child .add_new,
.coaches > li:last-child .add_new,
.participants > li:last-child .buy_now,
.participants > li:last-child .add_new {
    background: #309DDC;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
    font-size: 16px;
}

.hosts > li:last-child .add_new:hover,
.coaches > li:last-child .add_new:hover,
.participants > li:last-child .buy_now:hover,
.participants > li:last-child .add_new:hover {
    background: #147eb9;
} 

.hosts ul li,
.coaches ul li,
.participants ul li {
    margin-left: 20px;
    font-size: 16px;
    font-weight: bold;
}

.popup_container {
    background: rgba(221,221,221,0.8);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: -150px;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
        -webkit-transition-property: opacity;
       -moz-transition-property: opacity;
         -o-transition-property: opacity;
            transition-property: opacity;
    -webkit-transition-duration: 0.8s;
       -moz-transition-duration: 0.8s;
         -o-transition-duration: 0.8s;
            transition-duration: 0.8s;
    -webkit-transition-timing-function: linear;
       -moz-transition-timing-function: linear;
         -o-transition-timing-function: linear;
            transition-timing-function: linear;
}
.popup_detail .close {
    content: "";
    background: #fff url(../images/i-close.png) center center no-repeat;
    text-indent: -9999px;
    height: 30px;
    position: absolute;
    right: -10px;
    top: -10px;
    width: 30px;
    z-index: 2;
    border-radius: 50%;
    border: 2px solid #d5d5d5;
}
.popup_detail {
    position: absolute;
    box-shadow: 2px 2px 10px 1px #888888;
    border: 1px solid #d5d5d5;
    border-radius: 6px;
    padding: 20px;
    background: #fff;
    width: 400px;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    bottom: 0;
    height: 545px;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    font-weight: normal;
        -webkit-transition-property: opacity;
       -moz-transition-property: opacity;
         -o-transition-property: opacity;
            transition-property: opacity;
    -webkit-transition-duration: 0.8s;
       -moz-transition-duration: 0.8s;
         -o-transition-duration: 0.8s;
            transition-duration: 0.8s;
    -webkit-transition-timing-function: linear;
       -moz-transition-timing-function: linear;
         -o-transition-timing-function: linear;
            transition-timing-function: linear;
}

.ui-widget {
    font-family: "Segoe UI",Arial,sans-serif!important;
    font-size: 1em!important;
}

/* ===================================================================
 * 6.0 :: Footer
 * ===================================================================
 */
footer {
    color: #9e9e9e;
    font-size: 13px;
    padding: 15px 0;
    text-align: center
}

footer img {
    vertical-align: top;
    width: 160px;
}

footer p {  
    margin-bottom: 0;
    font-size: 12px;
}

footer .copyright, footer a {
    vertical-align: middle;
}


/* ===================================================================
 * 7.0 :: Clearing
 * ===================================================================
 */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.clearfix:after,
.inside:after,
li:after,
form:after,
article:after {
    content: " ";
    clear: both;
    display: block;
    font-size: 0;
    height: 0;
    visibility: hidden
}

/* ===================================================================
 * 8.0 :: Mobile CSS
 * ===================================================================
 */
@media screen and (max-width: 970px) {
    .inside {
        width: 100%
    }

    .month, .day, .year {
        /* width: 65px;
        display: block;
        margin: auto; */
    }

    .table-res tr:nth-of-type(odd) {
        padding: 15px 5px;
    }

    .searchbox, 
    .searchbox thead, 
    .searchbox tbody, 
    .searchbox th, 
    .searchbox td, 
    .searchbox tr {
        display: block;
    }

    .searchbox thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .searchbox tr {
        border: none;
        border-bottom: 1px solid #ddd;
        padding: 15px 5px;
    }

    .searchbox td { 
        border: none;
        position: relative;
        padding-left: 30%;
        width: initial!important;
        line-height: 25px;
    }

    .searchbox input[type=text], 
    .searchbox input[type=password], 
    .searchbox select, 
    .searchbox textarea{ 
        margin-bottom: 5px!important; 
    }

    .searchbox td:before { 
        position: absolute;
        left: 6px;
        width: 20%; 
        padding-right: 10px; 
        white-space: nowrap;
        text-align: left;
        font-weight: bold;
        text-transform: uppercase;
    }

    .searchbox td:nth-of-type(1):before { content: "Start Date"; }
    .searchbox td:nth-of-type(2):before { content: "End Date"; }
    .searchbox td:nth-of-type(3):before { content: "Sales Loc. ID"; }
    .searchbox td:nth-of-type(4):before { content: "Detail/Summary"; }
    .searchbox td:nth-of-type(5):before { content: " "; }      

}

@media screen and (max-width: 900px) {

}

@media screen and (max-width: 840px) {
    /* Main Content */
    
    .one-tenth,
    .nine-tenth {
        margin-right: 0!important;
    }


    .one-sixth .logout {
        display: inline-block!important;
    }

    .logout-mobile {
        display: inline-block;
        margin: auto;
        float: right;
        right: 40px;
    }

    .five-sixth .logout-mobile {
            display: none!important;
        }

    .table-view-record tr:nth-of-type(odd) {
        background: rgba(255, 255, 255, 0.3);
        padding: 15px 5px;
    }

    .table-view-record, 
    .table-view-record thead, 
    .table-view-record tbody, 
    .table-view-record th, 
    .table-view-record td, 
    .table-view-record tr {
        display: block;
    }

    .table-view-record thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .table-view-record tr {
        border: none;
        border-bottom: 1px solid #ddd;
        padding: 15px 5px;
    }

    .table-view-record td { 
        border: none;
        position: relative;
        padding-left: 40%; 
        width: initial!important;
    }

    .table-view-record input[type=text], 
    .table-view-record input[type=password], 
    .table-view-record select, 
    .table-view-record textarea{ 
        margin-bottom: 5px!important; 
    }

    .table-view-record td:before { 
        position: absolute;
        left: 6px;
        width: 30%; 
        padding-right: 10px; 
        white-space: nowrap;
        text-align: right;
        font-weight: bold;
        text-transform: uppercase;
    }

    .view-recording td:nth-of-type(1)::before { content: "Phone Number"; }
    .view-recording td:nth-of-type(2)::before { content: "Sales Location ID"; }
    .view-recording td:nth-of-type(3)::before { content: "Date/Time"; }
    .view-recording td:nth-of-type(4)::before { content: "Length"; }
    .view-recording td:nth-of-type(5)::before { content: "Listen"; }
    .view-recording td:nth-of-type(6)::before { content: "Download"; }

    .popup_container {
        bottom: -200px!important;        
    }
}

@media screen and (max-width: 768px) {
    .one-half,
    .three-fourth,
    .one-fourth,
    .one-fifth,
    .two-fifth,
    .three-fifth,
    .four-fifth {
        margin-right: 0!important;
        width: 100%!important;
    }

    .last {
        margin-bottom: 20px!important;
    }

    #wrap--content-inner .inside {
        /* padding-left: 0;
        padding-right: 0; */
    }

    .bg--highlight {
        padding: 20px;  
    }
    
    #wrap--content,
    #wrap--content-inner {
        background: url(../images/bgmobile.jpg) top center repeat-y;
    }

    #wrap--content-inner {
        background: url(../images/bgmobile.jpg) top center repeat-y;
    }   

    .ttl-table-res tr:nth-of-type(odd) {
        background: rgba(255, 255, 255, 0.3);
        padding: 15px 5px;
    }

    .ttl-table-res, 
    .ttl-table-res thead, 
    .ttl-table-res tbody, 
    .ttl-table-res th, 
    .ttl-table-res td, 
    .ttl-table-res tr {
        display: block;
    }

    .ttl-table-res thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .ttl-table-res tr {
        border: none;
        border-bottom: 1px solid #ddd;
        padding: 15px 5px;
    }

    .ttl-table-res td { 
        border: none;
        position: relative;
        padding-left: 40%; 
        width: initial!important;
    }

    .ttl-table-res input[type=text], 
    .ttl-table-res input[type=password], 
    .ttl-table-res select, 
    .ttl-table-res textarea{ 
        margin-bottom: 5px!important; 
    }

    .ttl-table-res td:before { 
        position: absolute;
        left: 6px;
        width: 30%; 
        padding-right: 10px; 
        white-space: nowrap;
        text-align: right;
        font-weight: bold;
        text-transform: uppercase;
    }

    .ttl-header td:nth-of-type(1):before { content: "Session"; }
    .ttl-header td:nth-of-type(2):before { content: "Title"; }
    .ttl-header td:nth-of-type(3):before { content: "Start Date"; }
    .ttl-header td:nth-of-type(4):before { content: "End Date"; }
    .ttl-header td:nth-of-type(5):before { content: "Last Viewed"; } 
    .ttl-header td:nth-of-type(6):before { content: "Your Status"; } 
    .ttl-header td:nth-of-type(7):before { content: "eLearning"; padding-top: 6px; } 
    .ttl-header td:nth-of-type(8):before { content: "PDF Answers"; padding-top: 6px;} 

    .progress-report td:nth-of-type(1):before { content: "Name"; text-align: left; }
    .progress-report td:nth-of-type(2):before { content: "Staus"; text-align: left; }
    .progress-report td:nth-of-type(3):before { content: "Percent Completed"; text-align: left; }
    .progress-report td:nth-of-type(4):before { content: "Last Action Time"; text-align: left; }


}

@media screen and (max-width: 640px) {

    header #logo--1 {
        float: none;
        display: inline-block;
        padding: 0 40px 0 0;
        margin-top: 0;
        min-width: 115px;
    }  

    audio, canvas, video {
        width: 100%;
    }

    .main--buttons > li {
        margin-bottom: 75px;
        width: 100%;
    }

    .description {
        position: relative;
    }

    .description li {
        top: inherit;
        width: 100%;
        font-size: 14px;
        line-height: 20px;
        margin: 10px 0;
    }

    .description img {
        width: 50px;
        margin: 0 5px 0 0;
        float: left;
    }
    .pass-diag{
        width: 100%!important; 
        margin:auto;
    }

    .table-res tr:nth-of-type(odd) {
        background: rgba(255, 255, 255, 0.3);
        padding: 15px 5px;
    }

    .table-res, 
    .table-res thead, 
    .table-res tbody, 
    .table-res th, 
    .table-res td, 
    .table-res tr {
        display: block;
    }

    .table-res thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .table-res tr {
        border: none;
        border-bottom: 1px solid #ddd;
        padding: 15px 5px;
    }

    .table-res td { 
        border: none;
        position: relative;
        padding-left: 40%; 
        width: initial!important;
    }

    .table-res input[type=text], 
    .table-res input[type=password], 
    .table-res select, 
    .table-res textarea{ 
        margin-bottom: 5px!important; 
    }

    .table-res td:before { 
        position: absolute;
        left: 6px;
        width: 30%; 
        padding-right: 10px; 
        white-space: nowrap;
        text-align: right;
        font-weight: bold;
        text-transform: uppercase;
    }

    .sales-search-header td:nth-of-type(1):before { content: "Sales Loc. ID"; }
    .sales-search-header td:nth-of-type(2):before { content: "New Password"; }
    .sales-search-header td:nth-of-type(3):before { content: "Last MOD TS"; }
    .sales-search-header td:nth-of-type(4):before { content: "Action"; } 


    .sales-header td:nth-of-type(1):before { content: "Sales Loc. ID"; }
    .sales-header td:nth-of-type(2):before { content: "New Password"; }
    .sales-header td:nth-of-type(3):before { content: "Last MOD TS"; }
    .sales-header td:nth-of-type(4):before { content: "Active"; }
    .sales-header td:nth-of-type(5):before { content: "Action"; }   

    .id-detail-header td:nth-of-type(1):before { content: "Sales Loc. ID"; }
    .id-detail-header td:nth-of-type(2):before { content: "Date/Time"; }
    .id-detail-header td:nth-of-type(3):before { content: "Phone Number"; }
    .id-detail-header td:nth-of-type(4):before { content: "Length"; }
    .id-detail-header td:nth-of-type(5):before { content: " "; }  

    .popup_container {
        bottom: -250px!important;        
    }    

    .hosts > li:last-child .add_new, 
    .coaches > li:last-child .add_new, 
    .participants > li:last-child .buy_now, 
    .participants > li:last-child .add_new {
        width: 100%!important;
        display: inline-block;
        text-align: center;
    }          

    .btn_div {display:none;}
}

@media screen and (max-width: 500px) {

    h1 {
        font-size: 20px;
        line-height: 30px
    }
    h2 {
        font-size: 18px;
        line-height: 26px
    }
    h3 {
        font-size: 16px;
        line-height: 20px
    }
    header {
        padding: 20px 0 0;
    }

    .description li {
        font-size: 12px;
        text-align: justify;
    }

    .table-res td,
    .searchbox td {
        padding-left: 55%;
    }

    .searchbox td {
        line-height: 0;
    }

    .bg--white {
        padding: 10px;
    }

    .table-res td:before,
    .searchbox td:before {
        text-align: left;
        text-transform: capitalize;
    }

    .searchbox td:before {
        padding-top: 15px;
    }

    .month, .day, .year {
        width: 100%;
    }

    .id-detail-header input[type=submit]{
        text-indent: -9999px;
        background: url(../images/view.png) top center;
    }
    .id-detail-header input[type=submit]:hover{
        background: url(../images/view.png) center 29px;
    }

    .ttl-header td:nth-of-type(1):before,
    .ttl-header td:nth-of-type(2):before,
    .ttl-header td:nth-of-type(3):before,
    .ttl-header td:nth-of-type(4):before,
    .ttl-header td:nth-of-type(5):before,
    .ttl-header td:nth-of-type(6):before,
    .ttl-header td:nth-of-type(7):before,
    .ttl-header td:nth-of-type(8):before { font-size: 10px; text-align: left; }  

    .progress-report td:nth-of-type(1):before { content: "Name"; font-size: 11px; padding-top: 3px; }
    .progress-report td:nth-of-type(2):before { content: "Staus"; font-size: 11px; padding-top: 3px;}
    .progress-report td:nth-of-type(3):before { content: "Percent"; font-size: 11px; padding-top: 3px;}
    .progress-report td:nth-of-type(4):before { content: "Last Action"; font-size: 11px; padding-top: 3px;}  

    .detail_popup {
        width: 90%;
    }

    .popup_detail {
        width: 100%;        
    }

    .popup_container {
        bottom: -275px!important;
    }    

}

@media screen and (max-width: 320px) { 

    .main--buttons > li {
        margin-bottom: 120px;
    }
}
