/* Minification failed. Returning unminified contents.
(5,1): run-time error CSS1019: Unexpected token, found '@import'
(5,9): run-time error CSS1019: Unexpected token, found 'url('https://fonts.googleapis.com/css?family=Lato:300,300i,400,400i,700,700i&display=swap')'
 */
/*****************************/
/* css for public site       */
/*****************************/
@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Lato:300,300i,400,400i,700,700i&display=swap');

body
{
    font-family: 'Lato', Tahoma, Arial, sans-serif;
}

/*********************/
/* brand logo        */
/*********************/
#mb-image-logo 
{
    display: block;
    width: 150px;
    margin-top: 8px;
    margin-left: 8px;
}

/*********************/
/* menu              */
/*********************/
header
{
    font-weight: bold;
}
header .navbar-menu .navbar-nav > li > a 
{
    color: #E5412C;

}
header .navbar-menu .navbar-menu-login 
{
    background-color: #E5412C;
    color: white !important;
    padding: 5px;
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 1em;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 8px;
}
header .navbar-menu .navbar-menu-login:hover 
{
    background-color: #E5412C;
    color: white !important;
    padding: 5px;
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 1em;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 8px;
}
header .navbar-btn 
{
    background-color: #E5412C;
}
header .navbar-btn .icon-bar
{
    background-color: white;
}

/*********************/
/* login form        */
/*********************/
.login-form
{   
    height: auto;
    padding: 5px 10px;
}

.login-form-ad-area 
{
    vertical-align: top;
    width: 340px;
    height: 324px;
    display: inline-block;
}
.login-form-container 
{
    vertical-align: top;
    width: 300px;
    display: inline-block;
}
.login-form:before 
{
    top: -11px;
    left: 50%;
    margin-left: -11px;
    border-top-width: 0;
    border-bottom-color: #999;
    border-bottom-color: rgba(0, 0, 0, .25);
}
.login-form form 
{
    padding: 0 10px;
}
.login-form h3 
{
    color: #000;
}
.login-form label 
{
    color: #E5412C;
    display: block;
    width: 100%;
    max-width: 100%;
    text-transform: uppercase;
}
.login-form input 
{
    border: 0;
    outline: 0;
    background: transparent;
    border-bottom: 1px solid #969191;
    border-radius: 0;
    display: block;
    width: 100%;
    max-width: 100%;
}
.login-form input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #ccc;
    opacity: 1; /* Firefox */
}
.login-form input:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #ccc;
}
.login-form input::-ms-input-placeholder { /* Microsoft Edge */
    color: #ccc;
}

.login-form .btn 
{
    width: 100%;
    background-color: #e5412c;
    margin-top: 5px;
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
    border: none;
}
.login-form button.btn:hover,
.login-form button.btn:active,
.login-form button.btn:focus 
{
    background: none;
    background-color: #da2f19;
    outline: none;
    border: none;
}
.forgot-password-section 
{
    color: #969191;
    font-size: 12px;
}
.login-form a 
{
    color: #969191;
    font-size: 12px;
}
.login-form .username-error,
.login-form .password-error,
.login-form .error-msg 
{
    color: red;
    font-size: 11px;
    height: 20px;
    display: block;
}

/*********************************/
/*********** FLASH MESSAGES ******/
/*********************************/
.mb-flash
{
    margin-bottom: .3em;
    font-size: 1.1em;
    text-align: left;
    padding: 0;
}

.mb-flash .error
{
    background-image: url(images/icons/false.png);
    background-color: #ffe3e3;
    border: #dd0000 1px solid;
    color: #550000;
}

.mb-flash .notice
{
    background-image: url(images/icons/true.png);
    background-color: #dfffdf;
    border: #9fcf9f 2px solid;
    color: #005f00;
}

.mb-flash .warning
{
    background-image: url(images/icons/warning.png);
    background-color: #FFEBC1;
    border: #FDBF3B 2px solid;
    color: #A6750C;
}

.mb-flash .error,
.mb-flash .notice,
.mb-flash .warning
{
    background-position: 8px 50%;
    background-repeat: no-repeat;
    padding: 4px 4px 4px 30px;
    list-style-type: none;
}

/*********************/
/* ad player         */
/*********************/
.ad-area 
{
    padding-bottom: 10px;
}
.btn-play 
{
    background: #e5412c;
    color: #fff;
    padding: 20px;
    padding-top: 6px;
    height: 42px;
    font-size: 17px;
    margin-top: 20px;
    min-width:30%;
}
.btn-play i:after 
{
    position: absolute;
    width: 1px;
    height: 42px;
    background: #fff;    
    top: -9px;
    margin-left: 13px;
}
.btn-play i 
{
    padding-right: 18px;
    font-size: 22px;
    position: relative;
    top: 2px;
}
.btn-play:hover,
.btn-play:focus,
.btn-play:active 
{
    background: #bd230f;
    color: #fff;
}

/***********************/
/* middle banner       */
/***********************/
.middle-banner
{
    position: relative;
    height: auto;
    min-height: 15em;
    background-color: #E5412C;
    background-size: cover;
    clip-path: polygon(0 10%, 100% 0, 100% 96%, 0 100%);
    display: block;
    z-index: -1;   
}

.middle-banner.middle-banner-promotion
{
    background-image: url(images/bkgd.png);
    background-color:transparent;
    color:black;
    clip-path: polygon(0 10%, 100% 1%, 100% 88%, 0 100%);
    margin-top: -41px;
    margin-bottom: 23px;
}

.middle-banner .middle-banner-content
{
    text-align: left;
    position: relative;
    color: white;
    padding: 2em;
    padding-top: 4em;
    
}

.middle-banner .middle-banner-header 
{
    margin: 0;
    font-size: 44px;
    text-align: center;
    position: relative;  
    color:black;
}

.middle-banner .middle-banner-header-team
{
   color: white;
   padding: 1em;
}

.middle-banner .middle-banner-body 
{
    text-align: center;
    position: relative;
    color: black;
}
.middle-banner .middle-banner-body img 
{
    width: 140px;
}

/*********************/
/* footer partners   */
/*********************/
footer 
{
    background-image: url("images/bkgd.png");
    -webkit-clip-path: polygon(0% 0%, 100% 20%, 100% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 100% 20%, 100% 100%, 0% 100%);
    margin-top: 20px;
    padding-top: 50px;
    position: relative;
    display: block;
}
footer .partners-header 
{
    padding: 5px 0;
    font-weight: bolder;
}
footer .partners .partner-item 
{
    display: inline-block;
    margin: 15px;
}
footer .partners .partner-item img 
{
    width: 120px;
}

/*********************/
/* footer our links  */
/*********************/
footer .our-links
{
    padding: 10px;
    font-size: 1em;
}
footer .social-media li 
{
    display: inline-flex;
}
footer .social-media li a 
{
    color: black;
    padding-right: 10px;
}
footer .social-media img
{
    width: 1.4em;
}
footer .useful-links li 
{
    display: inline-flex;
    list-style: none;
    padding-right: 20px;
    font-weight: lighter;
    color: black;
}

/*********************/
/* privacy policy    */
/*********************/
#mb-login-privacy-policy 
{
    padding: 10px;
    background-color: #f8f8f8;
    border: 1px solid #ccc;
    margin-bottom: 15px;
}

/*********************/
/* account rules     */
/*********************/
.password-rule-ok 
{
    color: green;
}
.password-rule-not-ok 
{
    color: red;
}
.account-container
{
    flex-shrink: 0;
    background: #fff;
    -webkit-box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
    margin-top: 50px;
    padding: 0;
    border-radius: 4px;
    margin-bottom: 110px;
}
.account .modal-header
{
    padding: 0;
    text-align: center;
}
.account h3 
{
    font-size: 18px;
    color: #000000;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 27px;
}
.account-container .btn-primary 
{
    border-radius: 2px;
    background: #2095de;
    background: -moz-linear-gradient(top, #2095de 0, #1a7bb7 100%);
    background: -webkit-linear-gradient(top, #2095de 0, #1a7bb7 100%);
    background: linear-gradient(to bottom, #2095de 0, #1a7bb7 100%);
    border: none;
}
.account-container .btn-primary:hover,
.account-container .btn-primary:focus,
.account-container .btn-primary:active 
{
    border-radius: 2px;
    background: #2095de;
    background: -moz-linear-gradient(top, #2095de 0, #1a7bb7 100%);
    background: -webkit-linear-gradient(top, #2095de 0, #1a7bb7 100%);
    background: linear-gradient(to bottom, #2095de 0, #1a7bb7 100%);
    border: none;
}
.account-container label 
{
    font-weight: normal;
}

/*********************/
/* faq rules         */
/*********************/
.faq
{
    margin-top: 20px;
    margin-bottom: 30px;
}
.faq h2
{
    font-size: 36px;
}
.faq h2 span
{
    font-size: 16px;
}
.faq h3
{
    font-size: 13px;
    color: #000000;
    font-weight: 500;    
    line-height: 27px;
}
.faq p
{
    font-size: 18px;
    font-weight: 500;
    margin-top:30px;
    margin-bottom: 25px;
}
.faq .panel-group .panel
{
    border-radius: 0;
    box-shadow: none;
    border-color: #EEEEEE;
    line-height: 33px;
}
.faq .panel-default > .panel-heading
{
    padding: 0;
    border-radius: 0;
    color: #212121;
    background-color: #FAFAFA;
    border-color: #EEEEEE;
}
.faq .panel-title
{
    font-size: 14px;
}
.faq .panel-title > a
{
    display: block;
    padding: 15px;
    text-decoration: none;
}
.faq .more-less
{
    float: right;
    color: #212121;
}
.faq .panel-default > .panel-heading + .panel-collapse > .panel-body
{
    border-top-color: #EEEEEE;
}
.faq .btn-primary
{
    border-radius: 2px;
    background: #2095de;
    background: -moz-linear-gradient(top, #2095de 0, #1a7bb7 100%);
    background: -webkit-linear-gradient(top, #2095de 0, #1a7bb7 100%);
    background: linear-gradient(to bottom, #2095de 0, #1a7bb7 100%);
    border: none;
}
.faq .btn-primary:hover
{
    border-radius: 2px;
    background: #2095de;
    background: -moz-linear-gradient(top, #2095de 0, #1a7bb7 100%);
    background: -webkit-linear-gradient(top, #2095de 0, #1a7bb7 100%);
    background: linear-gradient(to bottom, #2095de 0, #1a7bb7 100%);
    border: none;
}

/*********************/
/* contact us        */
/*********************/
.app-general-inquiry-container 
{
    background: #fff;
    margin-top: 25px;
    margin-bottom: 75px;
    margin-left: 24px;
    padding: 0;
}

.app-general-inquiry h3
{
    font-weight: bold;
    font-size: 20px;
}

.app-general-inquiry p
{
    font-size: 18px;
}


/*********************/
/* register          */
/*********************/
.register .editor-field, .register .text-box
{
    margin-bottom: 0px;
}
.register .editor-field input, .register .text-box
{
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-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;
}

/*********************/
/* validation        */
/*********************/
.validation-section
{
    background: #f1f1f1;
    float: left;
    border-top: #ccc solid 1px;
    width: 100%;
}
.validation-section img
{
    width:50px;
    float: left;
    margin-top: 20px;
}
.validation-content
{
    padding-left: 70px;
}
.validation-section h3
{
    color: #000;
    font-weight: 500;
}
.validation-section ul
{
    padding-left: 15px;
}
.validation-section ul li
{
    padding-bottom: 10px;
}
.validation-section .border-right
{
    border-right: #ccc solid 1px;
}
.validation-section .validation-inner-section
{
    padding-top: 20px;
    padding-bottom:20px;
    float: left;
}

/*********************/
/* team rules      */
/*********************/
.team-features .login-banner-container 
{
    padding: 0;
    margin: 0;
}
.team-info 
{
    color: black;
}
.team-info h3
{
    color: #E5412C;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: .3em;
}
.team-info p 
{
    font-size: 24px;
}
.team-item
{
    display: inline-block;
    text-align: left;
    margin: 25px;
    vertical-align: top;
}
.team-member-name
{
    color: #E5412C;
    font-weight: bold;
    text-decoration: underline;
    cursor: pointer;
    background: none !important;
    border: none;
    text-align: center;
    width: 160px;
}
.team-modal-pic
{
    display: inline-block;
    vertical-align: top;
    width: 180px;
}
.team-modal-bio
{
    vertical-align: top;
    display: inline-block;
    width: 75%;
}
.team-modal-title
{
    color: #E5412C;
    font-weight: bold;
}
.team-member-title
{
    text-wrap: normal;
    text-align: center;
    width: 160px;
}
.team-member-pic
{
    text-align: center;
}
.team-member-pic img,
.team-modal-pic img
{
    width: 160px;
    height: 160px;
}
/*********************/
/* common rules      */
/*********************/
.theme-color
{
    color: #E5412C;
}
.alert ul {
    list-style: none;
}
.mb-spacer 
{
    padding: 20px;
}

/********************************/
/* OneTrust cookie footer link  */
/********************************/
#ot-sdk-btn.ot-sdk-show-settings,
#ot-sdk-btn.optanon-show-settings
{
    border: 0 !important;
    color: #337ab7 !important;
    padding: 0 !important;
    font-size: inherit !important;
}

    #ot-sdk-btn.ot-sdk-show-settings:hover,
    #ot-sdk-btn.optanon-show-settings:hover
    {
        color: #337ab7 !important;
        background-color: transparent !important;
    }


/*********************/
/* About             */
/*********************/

.mb-about-container
{
    width:60%;
    margin:auto;
}

.mb-about-info
{
    margin:10px;
}

.mb-about-info h3
{
    color: #E5412C;   
}

.mb-about-info p
{
    font-size: 13px;
}

.mb-about-info-body 
{
    font-size: 16px;
    font-weight: 700;
}

.mb-highlight-content p
{
    font-size: 15px;
    font-weight: 800;    
}


/*********************/
/* responsive rules  */
/*********************/
@media (min-width:320px) and (max-width:844px)
{
    header .navbar-menu .navbar-menu-login 
    {
        margin-left: 10px;
    }
    .login-form 
    {
        width: 315px;
        background-color: #fff;
        margin: 0 auto;
        -webkit-background-clip: padding-box;
        background-clip: padding-box;
        border: 1px solid #ccc;
        border: 1px solid rgba(0, 0, 0, .15);
        border-radius: 0;
        -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
        box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    }
    .login-form-ad-area 
    {
        display: none;
    }
    .dropdown-menu.dropdown-login 
    {
        padding: 0;
    }
}

@media (min-width:0) and (max-width:499px) 
{
    .team-modal-pic { width: 100%; text-align: center; }
    .team-modal-pic img { margin: 0 auto; }
    .team-modal-bio { width: 100%; }
    .team-modal-title { text-align: center; }
}
@media (min-width:500px) and (max-width:529px) { .team-modal-bio { width: 58%; } }
@media (min-width:530px) and (max-width:567px) { .team-modal-bio { width: 61%; } }
@media (min-width:568px) and (max-width:599px) { .team-modal-bio { width: 64%; } }

@media (min-width:600px) and (max-width:629px) { .team-modal-bio { width: 66%; } }
@media (min-width:630px) and (max-width:667px) { .team-modal-bio { width: 68%; } }
@media (min-width:668px) and (max-width:699px) { .team-modal-bio { width: 69%; } }
@media (min-width:700px) and (max-width:767px) { .team-modal-bio { width: 70%; } }
@media (min-width:768px) and (max-width:799px) { .team-modal-bio { width: 65%; } }
@media (min-width:800px) and (max-width:899px) { .team-modal-bio { width: 65%; } }
@media (min-width:900px) and (max-width:991px) { .team-modal-bio { width: 65%; } }

@media (min-width:0) and (max-width:767px)
{
    footer
    {
        -webkit-clip-path: polygon(0% 0%, 100% 10%, 100% 100%, 0% 100%);
        clip-path: polygon(0% 0%, 100% 10%, 100% 100%, 0% 100%);
    }


}
@media (min-width:768px) and (max-width:1320px) 
{
    footer 
    {
        -webkit-clip-path: polygon(0% 0%, 100% 20%, 100% 100%, 0% 100%);
        clip-path: polygon(0% 0%, 100% 20%, 100% 100%, 0% 100%);
    }
}
@media (max-width: 768px)
{
    .validation-section .container,
    .validation-section .col-sm-12
    {
        padding-left: 0;
        padding-right: 0;
    }
    .validation-section img
    {
        margin-top: 0;
    }
    .validation-section .validation-inner-section
    {
        padding-bottom: 20px;
    }
    .validation-content
    {
        padding-left: 70px;
    }
}
@media (min-width:768px)
{
    .login-form-ad-area .mb-advertisement-poster-broken-image,
    .login-form-ad-area .mb-advertisement-poster-broken-login-image
    {
        width: 340px;
        height: 300px;
    }

    .login-form-ad-area .mb-advertisement-banner-broken-image,
    .login-form-ad-area .mb-advertisement-banner-broken-login-image
    {
        width: 340px;
        height: 40px;
    }
}
/*********************/
/* muzooka           */
/*********************/
#muzooka-section
{
    padding: 15px;
}

/*********************/
/* features          */
/*********************/
.features
{
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.features .features-icons-icon 
{
    display: inline-block;
    vertical-align: top;
    margin-top: 10px;
    margin-bottom: 0;
}
.features img 
{
    width: 40px;
    vertical-align: top;
}
.features h3 
{
    display: inline-block;
    font-size: 20px;
    vertical-align: top;
    color: white;
}
.features .features-text 
{
    font-size: 12px;
    text-align: left;
}
.features-right-shape
{
    -webkit-clip-path: polygon(100% -25%, 100% 0%, 100% 100%, 0% 100%, 0% 100%);
    clip-path: polygon(100% -25%, 100% 0%, 100% 100%, 0% 100%, 0% 100%);
    -webkit-shape-outside: polygon(100% -25%, 100% 0%, 100% 100%, 0% 100%, 0% 100%);
    shape-outside: polygon(100% -25%, 100% 0%, 100% 100%, 0% 100%, 0% 100%);
    float: right;
    width: 10%;
   
    background-color: transparent;
}
/*********************/
/* sign up           */
/*********************/
.sign-up 
{
    text-align: center;
}
.sign-up .sign-up-link
{
    color: #E5412C;
    font-size: 1.2em;
}
.sign-up .sign-up-item
{
    margin: 20px 0;
}
.sign-up .sign-up-item img
{
    width: 200px;
}
.sign-up .sign-up-item.sign-up-link-item
{
    width: 300px;
    margin: 0 auto;
    margin-top: 120px;
}

/**********************/
/*AS SEEN IN */
/**********************/
.as-seen-in-text
{
    margin-right: 5px;
}

/**********************/
/* login desktop ad   */
/**********************/
.mb-advertisement-desktop-control img.desktop-ad
{
    width: 100%;
}

.mb-advertisement-desktop-control map area
{
    outline: none;
}

/************************************************** */
/* responsive rules about text sizez                */
/************************************************** */
@media (min-width: 0px) and (max-width: 767px)
{
    .features h3 { font-size: 24px; }
    .features .features-text { font-size: 14px; line-height: 160%; }
}
@media (min-width: 768px) and (max-width: 1199px)
{
    .features h3 { font-size: 24px;  }
    .features .features-text { font-size: 15px; }
}
@media (min-width: 1199px)
{
    .features h3 { font-size: 28px; }
    .features .features-text { font-size: 15px; }
}

/************************************************** */
/* responsive rules                                 */
/************************************************** */
@media (min-width: 0px) and (max-width: 1199px)
{
    .sign-up
    {
        background: url(images/bkgd.png) no-repeat;
        background-size: cover;
        clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
        padding-top: 45px;
        padding-bottom: 15px;
    }
    
    .features-right-shape
    {
        width: 0;
    }
   
    .sign-up .sign-up-item.sign-up-link-item { margin-top: 0; }
}

@media (min-width: 1320px) and (max-width: 1399px)
{
    .features-right-shape { width: 25%; }
}
@media (min-width: 1400px) and (max-width: 1449px)
{
    .features-right-shape { width: 20%; }
}
@media (min-width: 1450px) and (max-width: 1499px)
{
    .features-right-shape { width: 15%; }
}
@media (min-width: 1500px) and (max-width: 1549px)
{
    .features-right-shape { width: 10%; }
}
@media (min-width: 1550px) and (max-width: 1599px)
{
    .features-right-shape { width: 5%; }
}

/**********************/
/* validation fields  */
/**********************/
.required
{
    color: red;
}
.field-validation-valid
{
    display: none;
}
.validation-summary-valid
{
    display: none;
}
