/***************** Import Font Family *****************/
@import url('https://fonts.googleapis.com/css?family=Quicksand:400,500|Expletus+Sans');

@font-face{
  font-family:  maxwellSans;
  src:url('../fonts/maxwell_sans.ttf');
}

@font-face{
  font-family: papayaSunrise;
  src:url('../fonts/papayaSunrise.otf');
}

/***************** Global Use *****************/
a, .btn, .clickable,
.editpro-btn-upload-img,
.navbar-side ul li a div,
.nav-line1, .nav-line2,
.nav-line3, .nav-line4 {
    -o-transition: .5s;
    -moz-transition: .5s;
    -webkit-transition: .5s;
    transition: .5s;
}

a, .clickable {
    color: #4a4a4a;
    cursor: pointer;
}

.note-editable a {
    color:blue !important;
}

a:focus, a:hover,
.clickable:focus, .clickable:hover {
    color: #2c2c4a;
}

body {
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    padding: 65px 0;
    position: relative;
    min-height: 100%;
}

html {
    height: 100%;
}

input, select, textarea, .table {
    margin-bottom: 10px;
}

progress[value] { 
    color:#70d31e;
} IE10 

progress::-webkit-progress-bar-value { 
    background:linear-gradient(to bottom, rgba(117, 191, 255, 1) 0%, rgba(16, 87, 148, 1) 100%) !important;
}

progress::-webkit-progress-value { 
    background:linear-gradient(to bottom, rgba(117, 191, 255, 1) 0%, rgba(16, 87, 148, 1) 100%) !important; 
}

progress::-moz-progress-bar { 
    background:linear-gradient(to bottom, rgba(117, 191, 255, 1) 0%, rgba(16, 87, 148, 1) 100%) !important; 
}

textarea {
    border-radius: 5px;
    border: 1px solid #ccc;
    box-shadow: 1px 1px 1px #999;
    line-height: 1.5;
    padding: 10px;
}

.body-default {
    background: linear-gradient(to bottom right, #b9c9ec, #b5dff3, #f0eff8) #b5dff3 fixed center;
}

.btn:focus, .btn:active:focus{
    outline: 0 !important;
}

.btn-backtotop {
    bottom: 5%;
    color: #558ad2;
    cursor: pointer;
    display: none;
    opacity: 0.8;
    position: fixed;
    right: 12px;
    z-index: 1;
}

.btn-backtotop:hover {
    opacity: 1;
}

.btn-blue {
    background-color: #73a2df;
    background-image: linear-gradient(#5188d0, #9dc2f2)
}

.btn-grey {
    background-color: #4a5161;
    color: #FFFFFF;
    margin-left: auto;
}

.btn-pink {
    background-color: #d2b2d2;
    background-image: linear-gradient(to bottom left, #b8bee3, #d2b2d2, #f7b5bf);
}

.btn-icon {
    background-color: #b7aaec;
    background-image: linear-gradient(to bottom right, #6a9ad9, #eab5f7);
    border: 0;
    border-radius: 50%;
    box-shadow: 0 1px 2px 0 rgba(60,64,67,0.302), 0 1px 3px 1px rgba(60,64,67,0.149);
    color: #fff;
    margin: 0 2px 5px 0;
    padding: 3px 7px;
}

.btn-icon:hover {
    box-shadow: 0 1px 3px 0 rgba(60,64,67,0.302), 0 4px 8px 3px rgba(60,64,67,0.149);
    color: #323538;
}

.btn-blue, .btn-pink {
    border: 0;
    border-radius: 25px;
    box-shadow: 0 1px 2px 0 rgba(60,64,67,0.302), 0 1px 3px 1px rgba(60,64,67,0.149);
    color: #fff;
    font-weight: 600;
    margin: 0 3px 10px 3px;
    min-width: 100px;
    padding: 6px 18px;
    text-transform: uppercase;
}

.btn-blue:hover, .btn-pink:hover {
    box-shadow: 0 1px 3px 0 rgba(60,64,67,0.302), 0 4px 8px 3px rgba(60,64,67,0.149);
    color: #323538;
}

.btn-grey:hover {
    box-shadow: 0 1px 3px 0 rgba(60,64,67,0.302), 0 4px 8px 3px rgba(60,64,67,0.149);
    color: #71efe5;
}

.btn-blue i, .btn-pink i {
    margin-right: 5px;
}

.checkbox-label {
    cursor: pointer;
}

.checkbox-label input {
    height: 0;
    opacity: 0;
    width: 0;
}

/* change background of checkbox-mask when label on hover */
.checkbox-label:hover input ~ .checkbox-mask {
    background-color: #ccc;
}

/* change background when checkbox is checked */
.checkbox-label input:checked ~ .checkbox-mask {
    background-color: #5288d0;
    border-color: #5288d0;
}

/* animate right side tick on checked */
.checkbox-label input:checked ~ .checkbox-mask:after {
    width: 14px;
    transition-delay: 150ms;
}

/* animate right side tick on checked */
.checkbox-label input:checked ~ .checkbox-mask:before {
    width: 7px;
    transition-delay: 0ms;
}

.checkbox-mask {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    height: 21px;
    position: absolute;
    width: 21px;
}

/* right side of tick */
.checkbox-mask:after {
    background: #fff;
    content: "";
    height: 3px;
    left: 7px;
    position: absolute;
    top: 14px;
    transform: rotate(-48deg);
    transform-origin: left;
    transition: all 150ms;
    transition-delay: 0ms;
    width: 0;
}

/* left side of tick */
.checkbox-mask:before {
    background: #fff;
    content: "";
    height: 3px;
    left: 3px;
    position: absolute;
    top: 8px;
    transform: rotate(44deg);
    transform-origin: left;
    transition: all 150ms;
    transition-delay: 150ms;
    width: 0;
}

.color-black {
    color: #000;
}

.color-green {
    color: #3c763d;
}

.color-red {
    color: #a94442;
}

.container.error {
    font-size: 3rem;
}

.container.error img {
    margin: auto;
}

.container.error .title-error{
    font-size: 4rem;
}
        
.container-content {
    background: url('../images/bg_curve.jpg') transparent top left repeat;
    background-size: 1000px;
    background-blend-mode: overlay;
    border-radius: 5px;
    margin: 10px 0;
    padding: 15px 15px 10px 15px;
}

.filter-btn {
    margin-top: 28px;
}

.float-right {
    float: right;
}

.footer {
    background-color: #4a5161;
    bottom: 0;
    color: #fff;
    left: 0;
    padding: 7px;
    position: absolute;
    right: 0;
    text-align: center;
}

.footer a {
    color: #71efe5;
}

.footer a:hover {
    color: #14fff2;
    text-decoration: none;
}

.footer .list-inline {
    margin-bottom: 0;
}

.footer .list-inline>li {
    padding-left: 15px;
    padding-right: 15px;
}

.footer-goody {
    font-size: 1.2rem;
}

.form-horizontal .form-group {
    margin-left: 0;
    margin-right: 0;
}

.modal-body {
    word-wrap: break-word;
}

.modal-content {
    background-color: #e9fffc;
    background-image: linear-gradient(to bottom, #dafffb, #f9fffe);
}

.modal-title {
    font-size: 18px;
}

.nav-line1, .nav-line2,
.nav-line3, .nav-line4 {
    border: 2px solid #cdd0d6;
    display: block;
    margin-bottom: 4px;
    width: 18px;
}

.nav-line2, .nav-line4 {
    width: 25px;
}

.nav-pills {
    margin-bottom: 10px;
}

.navbar-brand-logo {
    margin-top: 7px;
    width: 45px;    
}

.navbar-brand-word {
    margin-top: 7px;
    padding-left: 3px;
    width: 120px;
}

.navbar-default {
    background-color: #4c5567;
    border: 0;
    color: #fff;
}

.navbar-icon-box {
    display: inline;
    float: right;
    margin-right: 30px;
    margin-top: 7px;
    position: relative;
}

.navbar-icon-box .list-unstyled {
    margin-bottom: 0;
}

.navbar-icon-box .list-unstyled li {
    display: inline;
}

.navbar-icon-box .navbar-icon {
    margin: 5px 20px;
    width: 25px;
}

.navbar-logo-box {
    display: inline;
    margin-left: 15px;
}

.navbar-logo-box a:focus , .navbar-logo-box a:hover {
    text-decoration: none;
}

.navbar-side {
    background-color: rgba(76, 85, 103,.9);
    height: 100%;
    left: 0;
    min-width: 275px;
    overflow-x: hidden;
    position: fixed;
    transform: translateX(-350px);
    top: 0;
    z-index: 5;
    -o-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
    transition: .3s;
}

.navbar-side.open {
    transform: translateX(0);
    -o-transition: .5s;
    -moz-transition: .5s;
    -webkit-transition: .5s;
    transition: .5s;
}

.navbar-side ul {
    font-size: 1.7rem;
    list-style: none;
    padding: 65px 30px 20px 30px;
}

.navbar-side ul li {
    margin-bottom: 5px;
}

.navbar-side ul li a {
    text-decoration: none;
}

.navbar-side ul li a div, .navbar-side ul li div {
    color: #fff;
    padding: 10px 20px;
}

.navbar-side ul li a div:hover {
    background-color: rgb(76, 85, 103);
    color: #71efe5;
}

.navbar-side ul li a div i {
    margin-right: 20px;
    width: 20px;
}

.navbar-side .user-profile-div {
    padding: 5px 10px;
}

.navbar-side .user-profile-img {
    border: 1px solid #fff;
    border-radius: 50%;
    margin-left: 0;
    margin-right: 10px;
    width: 40px;
}

.navbar-side-btn {
    background: none;
    float: left;
    height: 46px;
    margin: 2px;
}

.navbar-side-btn.open .nav-line1,
.navbar-side-btn.open .nav-line4 {
    border: 0;
}

.navbar-side-btn.open .nav-line2,
.navbar-side-btn.open .nav-line3 {
    width: 25px;
    top: 22px;
    transform: rotate(133deg);
    position: absolute;
}

.navbar-side-btn.open .nav-line3 {
    transform: rotate(-133deg);
}

.notification .alert {
    border-radius: 5px;
    display: none;
    opacity: 0;
    padding: 14px 25px;
    position: fixed;
    right: 1%;
    top: 60px;
    z-index: 1051;
}

.notification .alert-danger {
    background-color: rgba(242, 222, 222, .8);
}

.notification .alert-success {
    background-color: rgba(223, 240, 216, .8);
}

.notification-bubble {
    background: rgba(85,85,85,.95);
    border-radius: 15px;
    color: #efefef;
    display: none;
    margin-top: 20px;
    position: absolute;
    right: 0; 
    width: 500px; 
}

.notification-bubble:after {
    border: 18px solid transparent;
    border-bottom-color: #7b848c;
    border-top: 0;
    content: '';
    height: 0;
    margin-right: 15px;
    margin-top: -18px;
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
}

.notification-bubble.open {
    display: block;
}

.notification-bubble a {
    color: #fff;
}

.notification-bubble .notification-content {
    padding: 15px 25px;
}

.notification-bubble .notification-content .row {
    border-radius: 5px;
    margin-bottom: 5px;
    padding: 10px 5px 0 5px;
    -o-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
    transition: .3s;
}

.notification-bubble .notification-content .row.unread {
    background-color: #555;
    padding-bottom: 7px;
}

.notification-bubble .notification-content .row span {
    color: #efefef !important;
}

.notification-bubble .title-md,
.product-bubble .title-md {
    background-color: #7b848c;
    border-radius: 13px 13px 0 0;
    color: #fff;
    padding: 8px;
}

.notification-unread-bubble {
    background-color: #00bcff; 
    border-radius: 50%;
    box-shadow: 0 0 15px 0px #00bcff;
    font-size: 1.2rem;
    height: 20px;
    margin-right: 7px;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 20px;
}

.pr-0 {
    padding-right: 0 !important;
}

.pl-0 {
    padding-left: 0 !important;
}

.px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.pager li.active span{
    background-color: #558ad2;
    border-color: #558ad2;
    color: #fff;
}

.pagination-disabled {
    padding: 8px 13px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
}

.product-bubble {
    background: rgba(85,85,85,.95);
    border-radius: 15px;
    color: #efefef;
    display: none;
    margin-top: 20px;
    position: absolute;
    right: 0; 
    width: 285px; 
}

.product-bubble:after {
    border: 18px solid transparent;
    border-bottom-color: #7b848c;
    border-top: 0;
    content: '';
    height: 0;
    margin-left: 15px;
    margin-top: -18px;
    position: absolute;
    left: 13px;
    top: 0;
    width: 0;
}

.product-bubble.open {
    display: block;
}

.product-bubble a {
    color: #fff;
    font-size: 1.3rem;
}

.product-bubble .col-xs-4 {
    padding: 5px;
}

.product-bubble .product-content {
    padding: 5px 10px;
}

.product-bubble .row {
    margin: 0;
}

.profile-img-sm {
    height: 80px;
    width: 80px;
    margin: 5px;
}

.star-rating {
    font-family: 'Font Awesome 5 Free';
}

.star-rating fieldset {
    display: inline-block;
}

.star-rating fieldset input {
    height: 0;
    opacity: 0;
    width: 0;
}

.star-rating > fieldset:not(:checked) > label {
    float: right;
    padding: 0 3px;
    cursor: pointer;
    font-size: 2.5rem;
    color: #ffd634;
}

.star-rating > fieldset:not(:checked) > label:before {
    content: '\f005';
    font-weight: 400;
}

.star-rating > fieldset:not(:checked) > label:hover,
.star-rating > fieldset:not(:checked) > label:hover ~ label {
    color: #ffda4a;
    text-shadow: 0 0 3px #ffe368;
}

.star-rating > fieldset:not(:checked) > label:hover:before,
.star-rating > fieldset:not(:checked) > label:hover ~ label:before,
.star-rating > fieldset > input:checked ~ label:before {
    content: '\f005';
    font-weight: 900;
}

.table-col-checkbox {
    width: 2%;
}

.table-col-date {
    width: 10%;
}

.table-col-img {
    width: 18%;
}

.table-col-lg {
    width: 25%;
}

.table-col-md {
    width: 15%;
}

.table-col-sm {
    width: 8%;
}

.table-col-half {
    width: 50%;
}

.table-hover>tbody>tr:hover {
    background-color: rgba(255,255,255,.3);
}

.text-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; 
}

.text-underline {
    text-decoration: underline;
}

.title-lg {
    font-size: 2.2rem;
}

.title-md {
    font-size: 1.8rem;
}

.title-sm {
    font-size: 1.6rem;
}

.title-xl {
    font-size: 4rem;
}

.title-page {
    color: #4c4c4c;
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
}

/*active in datepicker*/
.ui-state-default.ui-state-active {
    background: #568bd2 !important;
    border: #000 !important;
}

/*today's date in datepicker'*/
.ui-state-default.ui-state-highlight {
    background: #d5dce8 !important;
    border-color: #c5c5c5 !important;
    color: #000 !important;
}

.upload-progress-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,.8);
    z-index: 999999;
}

.upload-progress-box {
    margin: 0 auto;
    margin-top: 150px;
}

.upload-progress-box progress {
    height: 20px;
}

.upload-progress-box .progress-percent {
    color: #000;
    display: block;
    position: absolute;
    text-align: center;
}

.upload-progress-box, .upload-progress-box progress, 
.upload-progress-box .progress-percent {
    width: 600px;
}

.warning-border {
    border-color: #a94442 !important;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075) !important;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075) !important;
}

.whitespace-prewrap {
    white-space:pre-wrap;
}

/*------------------ Register pages - Step Progress Bar ------------------*/
.step-bar-box {
    padding: 10px 0 20px 0; 
}

.step-bar li {
    float: left;
    list-style-type: none;
    position: relative;
    text-align: center;
    width: 20%;
}

.step-bar li:after {
    background-color: #6a7a8f;
    content: '';
    height: 2px;
    left: -35%;
    position: absolute;
    top: 25px;
    width: 70%;
    z-index: -1;
}

.step-bar li:first-child:after {
    content: none;
    display: none;
}

.step-bar li.active {
    color: #2e5379;
    font-weight: bold;
}

.step-bar li.active i {
    background-color: #fff;
    border: 3px solid #2e5379;
    color: #2e5379;
}

.step-bar li.done i {
    background-color: #fff;
    border: 2px solid #5e636a;
    color: #5e636a;
}

.step-bar li i {
    background-color: transparent;
    border: 2px solid transparent;
    border-radius: 50%;
    color: rgba(99,107,101,.6);
    height: 50px;
    line-height: 44px;
    margin: 0 auto;
    width: 50px;
}

/*------------------ Register Step 2 ------------------*/
.fb-url-info {
    font-size: 1.4rem;
    font-style: italic;
}

.form-step2 .row {
    margin: 15px 0;
}

.radio-label {
    cursor: pointer;
}

.radio-label input {
    height: 0;
    opacity: 0;
    width: 0;
}

/* On mouse-over, add a grey background color */
.radio-label:hover input ~ .radio-mask {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.radio-label input:checked ~ .radio-mask {
    background-color: #5288d0;
}

/* Show the indicator (dot/circle) when checked */
.radio-label input:checked ~ .radio-mask:after {
    opacity: 1;
}

/* Create a custom radio button */
.radio-mask {
    background-color: #eee;
    border-radius: 50%;
    float: left;
    height: 20px;
    margin-right: 5px;
    width: 20px;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radio-mask:after {
    background: #fff;
    border-radius: 50%;
    content: "";
    height: 10px;
    margin: 5px;
    opacity: 0;
    position: absolute;
    width: 10px;
}

.scroll-label {
    color: #000;
    margin-right: 10px;
}

.scroll-arrow {
    border-bottom: 3px #000 solid;
    border-left: none;
    border-right: 3px #000 solid;
    border-top: none;
    display: inline-block;
    height: 22px;
    transform: rotate(45deg);
    width: 22px;
}

.scroll-arrow:before {
    animation: scrollarrow 1.5s infinite;
    border-bottom: 2px #000 solid;
    border-left: none;
    border-right: 2px #000 solid;
    border-top: none;
    bottom: 10px;
    content: '';
    height: 16px;
    position: absolute;
    right: 10px;
    width: 16px;
}

.tnc-box {
    border-radius: 10px;
    box-shadow: 1px 3px 9px 2px #6d8a90;
    margin: 8px auto 15px auto;
    padding: 25px 0 25px 45px;
}

.tnc-desc {
    height: 53vh;
    overflow-x: auto;
    padding: 10px 45px 0 0;
    text-align: justify;
}

.tnc-desc p span {
    color: #3d3d3d !important;
}

/*------------------ Write Mind (Register Step 3 / Edit Mind Draft) ------------------*/
#imgManagerModal .modal-footer {
    padding: 0 15px;
}

.autosave-msg-box {
    min-height: 25px;
}

.btn-ease-category {
    background-color: transparent;
    outline: none;
}

.btn-blue-hollow {
    background-color: transparent;
    border: 1px solid #558ad2;
    border-radius: 25px;
    color: #558ad2;
    font-weight: 600;
    margin: 0 3px 10px 3px;
    padding: 5px 13px;
    text-transform: uppercase;
}

.btn-blue-hollow:focus {
    color: #558ad2;
}

.btn-blue-hollow:hover {
    background-color: #eff6ff;
    color: #558ad2;
}

.btn-blue-hollow i {
    margin-right: 5px;
}

.btn-writemind {
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 4px 1px 8px 1px rgba(60,64,67,.5);
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    height: 80px;
    margin-bottom: 30px;
    padding: 12px;
    width: 80px;
}

.btn-writemind:active {
    color: #000;
}

.btn-writemind:hover {
    background-color: #fbfbfb;
    box-shadow: 5px 2px 12px 3px rgba(60,64,67,.5);
    color: #000;
}

.btn-writemind img {
    width: 80%;
}

.btn-writemind-cover {
    background: transparent;
    bottom: 0;
    color: #fff;
    height: 57px;
    opacity: .8;
    position: absolute;
    right: 0;
    width: 66px;
    z-index: 1;
}

.btn-writemind-cover:hover {
    opacity: 1;
}

.filter-panel {
    background: url('../images/bg_curve.jpg') transparent top left repeat;
    background-size: 1000px;
    background-blend-mode: overlay;
    border: 0;
}

.img-datepicker {
    display: inline-block;
    margin-left: 2px;
    padding-right: 25px;
    width: 60%;
}

.img-datepicker-clear {
    margin-left: -29px;
    padding: 9px 5px;
    z-index: 1;
}

.mind-option-row .col-sm-2 {
    padding-right: 0;
}

.note-editing-area .note-editable img {
    cursor: pointer;
}

.pagination .page-link {
    border-radius: 50%;
    margin: 2px;
}

.photo-source-style {
    background-color: rgba(199, 199, 199, .8);
    border: none;
    color: #fff;
    font-size: 14px;
    margin-bottom: 0;
    margin-left: -140px;
    outline: 0;
    padding: 0px 15px;
    pointer-events: none;
    position: relative;
    text-transform: uppercase;
    vertical-align: bottom;
}

.reject-marks {
    color: #000;
    font-size: 1.8rem;
}

.reject-marks .get-marks {
    color: darkorange;
    font-size: 2.5rem;
}

.reject-marks-box {
    padding: 10px;
}

.reject-marks-box .with-border {
    border-right: 1px solid #bdbdbd;
}

.tag-info {
    color: #a94442;
    font-size: 1.3rem;
    font-style: italic;
}

.thumbnail {
    height: 110px;
    margin: auto;
    margin-bottom: 3px;
    position: relative;
    width: 110px;
}

.thumbnail-img {
    bottom: 0;
    height: auto;
    left: 0;
    margin: auto;
    max-height: 100%;
    max-width: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}

.title-category-span {
    background-color: #696868;
    border-radius: 4px;
    color: #fff;
    left: 20px;
    padding: 2px 0;
    position: absolute;
    top: 5px;
}

.upload-cover-outer {
    margin: 10px auto; 
    max-width: 700px;
    position: relative;
}

.upload-cover-outer .row {
    margin: 0;
}

.upload-cover-outer .row .col-xs-4 {
    padding: 0;
}

.uploaded-img-individual.col-xs-4 {
    padding: 0 5px;
}

/* change border-color of checkbox-mask when label on hover */
.uploaded-img-individual a.thumbnail.active, 
.uploaded-img-individual a.thumbnail:focus {
    border-color: #ddd;
}

.uploaded-img-individual a.thumbnail:hover,
.uploaded-img-individual .checkbox-label:hover a.thumbnail {
    border-color: #5288d0;
}

.uploaded-img-individual .checkbox-label{
    font-size: 13px;
    position: relative;
    width: 115px;
}

.uploaded-img-individual .checkbox-mask {
    height: 25px;
    right: 2px;
    top: 0;
    width: 25px;
}

/* right side of tick */
.uploaded-img-individual .checkbox-mask:after {
    left: 9px;
    top: 16px;
}

/* left side of tick */
.uploaded-img-individual .checkbox-mask:before {
    left: 5px;
    top: 10px;
}

.writemind-btn-box {
    bottom: 4%;
    position: fixed;
    right: 1%;
    z-index: 2;
}

.writemind-page .container-content {
    background: transparent;
}

.writemind-page .container-content.reject {
    box-shadow: 1px 2px 8px #888;
    margin-top: 35px;
    padding: 15px;
}

.writemind-page .title-page {
    margin-bottom: -20px;
}

/*------------------ Register Step 4 ------------------*/
.step4-logo-goodyearn, .step4-logo-goody {
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 2px 2px 8px 2px #6D8A8F;
    display: inline-block;
    margin: 35px auto 8px auto;
    padding: 25px;
    opacity: .95;
    -o-transition: .2s;
    -moz-transition: .2s;
    -webkit-transition: .2s;
    transition: .2s;
}

.step4-logo-goodyearn:hover, .step4-logo-goody:hover {
    background-color: #f3f8f9;
    box-shadow: 2px 2px 8px 2px #73888c, 4px 6px 10px 4px rgba(155, 177, 181,.5);
    opacity: 1;
}

.step4-desc {
    font-size: 1.7rem;
    padding: 20px 30px;
}

/*------------------ Minds ------------------*/
.badge.ea {
    margin-left: 5px;
}

.chart-container {
    margin-top: 15px;
}

.filter-datepicker-clear {
    float: right;
    margin-right: 6px;
    margin-top: -36px;
}

.filter-datepicker {
    padding-right: 25px;
}

.table-col-img-thumb {
    min-height: 110px;
}

.table-col-img-thumb img{
    border-radius: 5px;
}

.mind-draft.checkbox-label {
    position: relative;
    width: 20px; 
}

/*------------------ Home ------------------*/
.abtme-box {
    background-color: #bfbcf4;
    padding: 40px 5%;
}

.abtme-box .table-box {
    color: #525252; 
    font-size: 1.7rem;
    padding-top: 20px;
}

.best-performance-card{
    border-radius: 25px;
    background-color: #bfbcf4;
    color: #fff;
}

.best-performance-header{
    background-color: #6a65ea;
    border-radius: 0 0 25px 25px;
    font-size: small;
    padding-top: 10px;
    padding-bottom: 15px; 
}

.best-performance-img-container{
    width: 50%;
    margin: 0 auto;
}

.best-performance-padding{
    padding: 10px 15px;
}

.best-performance-title{
    background-color: #6a65ea;
    border-radius: 25px 25px 0 0;
    font-family: 'papayaSunrise', sans-serif;
    font-size: large;
    padding-top: 10px;
    padding-bottom: 10px;
    text-transform: uppercase;
}

.body-home {
    background-color: #fbfbfb;
    padding: 50px 0 57px 0;
    overflow-x: hidden;
}

.body-home .container-fluid {
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
}

.body-home .modal-content {
    background-image: linear-gradient(to bottom, #d1d0f6, #f9fffe);
}

.contest-countdown-table {
    font-family:'Expletus Sans', cursive;
    margin: auto;
    min-height: 88px;
}

.contest-countdown-table .num {
    width: 60px;
}

.contest-dateend-table, .contest-datestart-table {
    color: #1e2219;
}

.contest-dateend-table .title-xl, .contest-datestart-table .title-xl {
    font-weight: 400;
}

.contest-dateend-table {
    margin: 0 0 0 auto;
}

.contest-progress-box {
    margin: auto;
    padding: 20px 0 15px 0;
    width: 30%;
}

.contest-progress-box .progress {
    background: linear-gradient(to bottom, #474647, #7f7f7f) #656465;
    border-radius: 20px;
    height: 30px;
    margin-bottom: 0;
}

.contest-progress-box .progress-bar {
    background-color: #01bdff;
    border-radius: 20px;
    box-shadow: 0 0 9px 3px #78d1f1;
}

.contest-progress-box .progress-indicator {
    color: #fff;
    font-size: 17px;
    line-height: 30px;
}

.contest-progress-box .progress-indicator.inside {
    float: right;
    padding-right: 10px;
}

.contest-progress-box .progress-indicator.outside {
    float: left;
    padding-left: 8px;
}

.contest-spin-row .col-md-6:nth-child(2){
    height: 440px; 
    padding-top: 8%;
}

.contest-target-table {
    background-color: rgba(0,0,0,.6); 
    border-radius: 10px; 
    color: #fff; 
    display:inline-block; 
    padding: 15px 30px;
}

.dashboard-contest-row { 
    background: url('/images/dashboard_contest_bg_left.png') bottom left no-repeat, url('/images/dashboard_contest_bg_right.png') bottom right no-repeat, #fff; 
    background-size: 720px, 720px; 
    margin-left: -15px; 
    margin-right: -15px;
    padding: 20px;
}

.dashboard-main-row {
    display: flex;
    flex-wrap: wrap;
}

.dashboard-main-row .my-profile-col {
    background: linear-gradient(to bottom right, #9996ef, #c4ace3, #f7c6d5) #c4ace3;
}

.dashboard-main-row .satistics-col {
    padding: 20px 4%;
}

.dashboard-main-row .satistics-col .row {
    display: flex;
    flex-wrap: wrap;
}

.dashboard-main-row .satistics-col .img-bonus {
    background: #b870ec;
}

.dashboard-main-row .satistics-col .img-earnings {
    background: #4fd778;
}

.dashboard-main-row .satistics-col .img-elite {
    background: #ffb64a;
}

.dashboard-main-row .satistics-col .img-instant {
    background: #ff8080;
}

.dashboard-main-row .satistics-col .img-views {
    background: #50acf6;
}

.dashboard-main-row .satistics-col .img-withdraw {
    background: #8f7ee8;
}

.leaderboard-imhere {
    background-color: rgba(61,61,61,.6);
    border-radius: 15px; 
    color:#fff;
}

.leaderboard-imhere a {
    color: #efefef;
}

.leaderboard-nav li {
    display: inline-block;
    float: none;
}

.leaderboard-nav>li.active>a, .leaderboard-nav>li.active>a:focus, .leaderboard-nav>li.active>a:hover,
.contest-nav>li.active>a, .contest-nav>li.active>a:focus, .contest-nav>li.active>a:hover {
    background-color: #6a65ea;
    box-shadow: 0 1px 2px 0 rgba(60,64,67,0.302), 0 1px 3px 1px rgba(60,64,67,0.149);
}

.leaderboard-nav .btn-white, 
.contest-nav .btn-white {
    background-color: #fff;
    border-radius: 25px;
    box-shadow: 0 1px 2px 0 rgba(60,64,67,0.302), 0 1px 3px 1px rgba(60,64,67,0.149);
    color: #3d3d3d;
    font-weight: 600;
    margin: 10px 5px;
    padding: 6px 16px;
}

.leaderboard-nav .btn-white:hover, 
.contest-nav .btn-white:hover {
    box-shadow: 0 1px 3px 0 rgba(60,64,67,0.302), 0 4px 8px 3px rgba(60,64,67,0.149);
    color: #6a65ea;
}

.leaderboard-panel {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: -1px -2px 3px #909090;
    margin-bottom: 0;
}

.leaderboard-panel .tab-content img {
    height: 50px;
    margin: 5px; 
    width: 50px;
}

.leaderboard-advenger-tab .ea-individual-box { 
    margin: auto;
    width: 60%;
}

.leaderboard-advenger-tab .ea-individual-box,
.leaderboard-monthly-tab .monthly-individual-box,
.leaderboard-specialize-tab .specialize-individual-box {
    margin-bottom: 5px;
}

.leaderboard-monthly-tab .monthly-individual-box .left {
    padding-left: 0;
    padding-right: 5px;
    text-align: right;
}

.leaderboard-monthly-tab .monthly-individual-box .right {
    padding-left: 0;
    text-align: left;
}

.leaderboard-specialize-tab .col-xs-6 {
    padding: 0 5px;
}

.leaderboard-specialize-tab .specialize-individual-box .left {
    padding-left: 0;
    text-align: right;
}

.leaderboard-specialize-tab .specialize-individual-box .right {
    padding-left: 0;
    padding-right: 5px;
}

.leaderboard-word, .leaderboard-word a {
    color: #fff;
    font-family: 'papayaSunrise', sans-serif;
    font-size: 2.4rem;
    font-weight: 600;
    letter-spacing: 3px;
}

.marquee-box {
    background: url('/images/marquee_border.png') top left repeat-x, url('/images/marquee_border.png') bottom left repeat-x, 
                url('/images/marquee_heart.png') center left no-repeat, #fff; 
    background-size: 400px, 400px, 50px;
    line-height: 37px;
    margin: 13px 0;
    padding: 15px 85px 0 48px;
    position: relative;
}

.marquee-box .marquee-pen {
    position: absolute;
    right: 0;
    top: -20px;
    width: 86px;
}

.marquee-box .close {
    color: #941327;
    position: absolute;
    right: 5px;
    top: 22px;
}

.notice-box {
    background: url('/images/notice_frame_topleft.png') top left no-repeat,
                url('/images/notice_frame_topright.png') top right no-repeat,
                url('/images/notice_frame_bottomleft.png') bottom left no-repeat,
                url('/images/notice_frame_bottomright.png') bottom right no-repeat,
                url('/images/notice_frame_vertical.png') top left repeat-y,
                url('/images/notice_frame_vertical.png') top right repeat-y,
                url('/images/notice_frame_horizontal.png') top center repeat-x,
                url('/images/notice_frame_horizontal.png') bottom center repeat-x;
    background-color: #fff;
    background-size: 28px, 28px, 33px, 28px, 13px, 12px, 73px, 73px;
    border-radius: 22px;
    padding: 20px 25px;
    position: relative;
    word-break: break-word;
}

.notice-hello-td {
    vertical-align: bottom;
    width: 150px;
}

.notice-table {
    margin: 5px auto 10px auto;
    width: 85%; 
}

.preeditor-container {
    background: linear-gradient(to bottom right, #9996ef, #c4ace3, #f7c6d5) #c4ace3; 
    display: flex; 
    height: 89vh;
}

.preeditor-container .preeditor-card {
    background-color: rgba(243,249,255,.4);
    border-radius: 15px;
    margin: auto;
    padding: 5% 25px 5% 25px;
    width: 30%;
}

.summary-box {
    background-color: #fff;
    box-shadow: -3px -2px 6px #dcdcdc;
    display: flex;
    flex-direction: column;
    float: left;
    font-size: 1.6rem;
    justify-content: center;
    margin: 8px;
    min-height: 1px;
    padding: 0 20px;
    position: relative;
    -o-transition: .2s;
    -moz-transition: .2s;
    -webkit-transition: .2s;
    transition: .2s;
}

.summary-box.first {
    display: block;
    padding: 0;
    width: 30%;
}

.summary-box.first .col-xs-5 {
    padding: 0;
}

.summary-box.first .first-content-box {
    padding-top: 8%;
    text-align: center;
}

.summary-box.first .first-content-box .entitled {
    font-size: 1.4rem;
}

.summary-box.long {
    width: 50%;
}

.summary-box.long .elite-table td.title {
    width: 27%;
}

.summary-box.long .withdraw-table td.title {
    width: 38%;
}

.summary-box.short {
    width: 20%;
}

.summary-box .num {
    color: #000;
    font-size: 2rem;
}

.summary-box .num-lg {
    color: #000;
    font-size: 2.8rem;
    letter-spacing: 1.5px;
}

.view-target-title{
    background-color: #6a65ea;
    border-radius: 25px 25px 0 0;
    font-size: 2.4rem;
    padding-top: 10px;
    padding-bottom: 10px;
    text-transform: uppercase;
}

.view-target-content{
    font-size: 1.3em;
}

.view-target-header {
    background-color: #6a65ea;
    border-radius: 0 0 25px 25px;
    font-size: small;
    padding-top: 15px;
    padding-bottom: 9px;
}

.view-target-num {
    font-size: 1.3em;
    color: white;
}

/*------------------ Notifications ------------------*/
.noti-detail-box {
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 15px;
}

.noti-detail-box:nth-child(odd) {
    background-color: rgba(85,137,210,.2);
}

.noti-detail-box:nth-child(even) {
    background-color: rgba(255,255,255,.4);
}

/*------------------ Profile ------------------*/
.body-profile-male {
    background: linear-gradient(to bottom right, #3e8cc6, #70b4e3, #99d6fa) #70b4e3 fixed center;
}

.body-profile-male .btn-edit {
    background-color: #8ac7dd;
    background-image: linear-gradient(to right, #8db9f1, #8ac7dd, #84d1cc);
}

.body-profile-male .profile-follow-nav>li.active>a,
.body-profile-male .profile-follow-nav>li.active>a:focus,
.body-profile-male .profile-follow-nav>li.active>a:hover {
    border-bottom-color: #68adde;
}

.body-profile-female {
    background: linear-gradient(to bottom right, #f89eb8, #f9bccd, #fbd4e0) #f9bccd fixed center;
}

.body-profile-female .btn-edit {
    background-color: #efa1b9;
    background-image: linear-gradient(to right, #e0c2ae, #efa1b9, #f690bf);
}

.body-profile-female .pagination>.active>a {
    background-color: #f690bf;
    border-color: #f690bf;
    color: #fff;
}

.body-profile-female .profile-follow-nav>li.active>a,
.body-profile-female .profile-follow-nav>li.active>a:focus,
.body-profile-female .profile-follow-nav>li.active>a:hover {
    border-bottom-color: #f9bbcc;
}

.dot {
    background-color: rgba(255,255,255,.8);
    border-radius: 50%;
    display: inline-block;
    height: 18px;
    margin: 15px 23px;
    width: 18px;
}

.editpro-btn-upload-img {
    bottom: 0;
    color: rgba(255,255,255,.7);
    cursor: pointer;
    position: absolute;
    right: 10px;
}

.editpro-btn-upload-img:hover {
    color: #f3f3f3;
}

.editpro-editor-url-input {
    padding-left: 245px;
}

.editpro-editor-url-span {
    background-color: #696868;
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    left: 19px;
    padding: 2px 3px;
    position: absolute;
    top: 5px;
}

.editpro-error-msg-box {
    margin-bottom: 10px;
    margin-top: -10px;
}

.editpro-img-box {
    height: 150px;
    margin: 10px auto;
    position: relative;
    width: 150px;
}

.follow-box {
    margin: 5px 0 0 0;
    min-height: 350px;
}

.follow-box img {
    border: 1px solid #555;
}

.follow-box .col-xs-6 {
    min-height: 70px;
    padding: 0;
}

.follow-box .col-xs-6 .col-xs-6.col-sm-5.col-md-2 {
    padding: 5px;
}

.follow-box .col-xs-6 .col-xs-6.col-sm-7.col-md-10 {
    padding: 22px 12px 0 5px;
}

/*remove arrow in input type number*/
.inputnum-no-arrow::-webkit-outer-spin-button,
.inputnum-no-arrow::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/*remove arrow in input type number for firefox*/
.inputnum-no-arrow[type="number"] {
    -moz-appearance: textfield;
}

.label-radiobtn {
    font-weight: normal;
    margin-bottom: 10px;
    margin-right: 5px;
}

.profile-detail-col {
    background-color: #fff; 
    border-radius: 15px; 
    margin-bottom: 15px;
    padding: 20px 30px 12px 30px;
}

.profile-detail-col img {
    border: 1px solid #555;
}

.profile-detail-col table {
    margin-top: 15px;
    table-layout: fixed;
    width: 100%;
}

.profile-detail-col table tr td:first-child{
    width: 34%;
}

.profile-detail-col table input {
    border: 0;
    margin-bottom: 0;
    outline: 0;
    width: 81%;
}

.profile-follow-nav {
    border-bottom: 1px solid #fff;
}

.profile-follow-nav a, .follow-box a{
    color: #555;
}

.profile-follow-nav>li>a:hover {
    background: rgba(255,255,255,.5);
    border-color: #fff;
}

.profile-follow-nav>li.active>a, .profile-follow-nav>li.active>a:focus, .profile-follow-nav>li.active>a:hover {
    background-color: transparent;
    border: 1px solid #fff;
}

.profile-rank-bar {
    padding-top: 40px;
    position: relative;
}

.profile-rank-bar .rank-img-box {
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
    height: 200px;
    left: 42%;
    position: absolute;
    top: 0;
    width: 200px;
}

.profile-rank-bar .rank-img-box img {
    margin-top: 15px;
}

.profile-rank-desc {
    background-color: #fff; 
    border-radius: 12px; 
    padding: 12px 30px;
}

.profile-second-row {
    margin: 15px 0;
}

/*------------------ Groups ------------------*/
.body-groups {
    background: url('../images/groups_bg1.png') top left fixed no-repeat, url('../images/groups_bg2.png') bottom right fixed no-repeat, linear-gradient(to bottom right, #b9c9ec, #b5dff3, #f0eff8) #b5dff3 fixed center;
    background-size: contain, contain;
}

.body-groups .table>tbody>tr>td {
    border: 0;
    vertical-align: middle;
}

.body-groups .table>tbody>tr>th {
    border-bottom: 1px solid #b8babb;
    border-top: 1px solid #b8babb;
}

.groups-abtme-col img {
    border: 5px solid #b6c7ff;
    margin-bottom: 5px; 
    width: 155px; 
}

.groups-dot-box {
    display: inline-block; 
    position: absolute;
    right: -68%;
    top: 27px;
}

.groups-dot-box .dot {
    background-color: #b6c7ff;
    height: 22px;
    margin: 10px;
    width: 22px;
}

.groups-dot-box .dot:nth-child(2) {
    height: 30px;
    margin: 6px;
    width: 30px;
}

.groups-monthly-view {
    font-size: 3rem;
    letter-spacing: 3px;
}

.groups-pama-box {
    display: inline-block; 
    margin-top: 35px; 
    position: relative;
}

.groups-pama-box img {
    border: 5px solid #b6c7ff;
    height: 100px;
    width: 100px;
}

.groups-pama-col {
    text-align: right;
}

/*------------------ Fammatch ------------------*/
.fammatch-card {
    background-color: rgba(243,249,255,.4);
    border-radius: 15px;
    margin-bottom: 15px;
    padding: 8% 5%;
}

.fammatch-card-title {
    font-family: maxwellSans;
    font-size: 2.8rem;
}

.fammatch-card-title.wanted {
    font-size: 4.5rem;
    margin-bottom: -20px;
}

.fammatch-info-box {
    margin: 15px 0;
    color: #206bce;
}

.fammatch-random-container {
    background: transparent;
}

.fammatch-request-box {
    min-height: 150px;
}

/*------------------ Offers ------------------*/
#mdlOfferDetails .modal-body {
    max-height: 500px;
    overflow-y: auto;
}

.draft-offer-mindbox {
    position: relative;
}

.draft-offer-mindbox img {
    border-radius: 5px;
}

.draft-offer-mindtitle {
    background-color: rgba(232,232,232,.5);
    border-radius: 0 0 5px 5px;
    bottom: 0;
    color: #000;
    padding: 0 5px;
    position: absolute;
    width: 100%;
}

.draft-offer-reviewing {
    color: #3c763d;
    margin: 10px 0;
    text-transform: uppercase;
}

.offer-card {
    background-color: #dcdef2;
    background-image: linear-gradient(to bottom right, #c7cdf5, #efeeef);
    box-shadow: 1px 3px 5px #8c8c8c; 
    margin: auto;
    padding: 30px 15px;
    width: 85%;
}

.offer-card hr {
    margin-top: 5px;
}

.offer-card .daydate {
    font-size: 1.6rem;
}

.offer-card .row {
    margin: 10px -15px 15px -15px;
}

.offer-card .row .col-xs-6:first-child {
    border-right: 1px solid #f7f7f7;
}

.offer-card .title-box {
    color: #4c5052;
    height: 85px;
}

.offer-card .title-box .title-box-inner {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.offer-card-col {
    margin-bottom: 15px;
}

.offer-container.container-content {
    background: transparent;
}

.offer-ea-performance-box {
    padding: 10px;
    text-align: center;
}

.offer-ea-performance-box table {
    margin: 5px auto;
}

.offer-ea-performance-box table img {
    border-radius: 50%; 
    height: 90px;
    margin-right: 15px;
    width: 90px; 
}

.offer-ea-performance-box table img.earn {
    background-color: #4fd778; 
}

.offer-ea-performance-box table img.view {
    background-color: #50acf6; 
}

/*------------------ Reports ------------------*/
#mdlReportMindDetail .modal-body,
#mdlReportRecruitDetail .modal-body {
    padding-bottom: 0;
}

.contest-report-box {
    border-radius: 5px;
    height: 100%;
    padding: 15px;
}

.contest-report-box.box1 {
    background-color: #95d7ff;
}

.contest-report-box.box2 {
    background-color: #b5bdfb;
}

.contest-report-box.box3 {
    background-color: #94b8f7;
}

.contest-report-box.box4 {
    background-color: #99eaac;
}

.contest-report-box.box5 {
    background-color: #b3f7ec;
}

.contest-report-box .title-md {
    margin-bottom: 5px;
}

.contest-report-content .row {
    display: flex;
    flex-wrap: wrap;
}

.contest-report-content .row .col-sm-6 {
    margin: 15px 0;
}

.report-result {
    background-color: rgba(230, 246, 250, 0.7);;
    border-radius: 5px;
    margin-bottom: 5px;
    padding: 15px 20px;
}

.report-result.clickable:hover {
    background-color: rgb(230,246,250);
    box-shadow: 1px 1px 7px 2px rgba(60,64,67,0.302);
}

.report-daily-contest-color {
    color: #ea46c4;
}

.report-daily-ea-color {
    color: #573dda;
}

.report-daily-group-color {
    color: #80157f;
}

.report-daily-normal-color {
    color: #006eff;
}

/*------------------ Contact Us ------------------*/
.contactus-row {
    display: flex; 
    flex-wrap: wrap;
}

.contactus-row .container-content {
    height: 100%;
    padding: 25px 45px 0 45px;
}

.contactus-row .container-content.fbmsg-container {
    display: flex; 
    flex-direction: column; 
    justify-content: center;
}

.fb-messengermessageus {
    cursor: pointer;
    margin-top: 10px;
}

.fbmsg-container .title-xl {
    margin-top: -35px;
}

/*------------------ Report Problem ------------------*/
.report-problem-container {
    padding: 16% 25px 20% 25px;
}

/*------------------ Terms and Conditions ------------------*/
.policy-box {
    padding: 36px 45px;
    text-align: justify;
}

.tnc-container p span {
    color: #3d3d3d !important;
}

/*------------------ Help Center / Advenger Help Center ------------------*/
.answers-col .container-content {
    padding: 25px 45px;
    word-wrap: break-word;
}

.answers-col .container-content img {
    margin: auto;
}

.answers-col .container-content .penalty-ul {
    list-style-type: circle;
    padding-left: 25px;
}

.answers-col .container-content .popular-row {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
}

.answers-col .container-content .warning-color {
    color: red;
}

.answers-col .title-lg {
    font-weight: bold;
    margin-bottom: 10px;
}

.answers-col .title-md {
    font-weight: bold;
    margin-top: 22px;
}

.help-panel {
    background: none;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 0;
}

.help-popular-card {
    background-color: rgba(243,249,255,.4);
    border-radius: 15px;
    height: 100%;
/*    height: 92%;
    margin-bottom: 15px;*/
    padding: 8% 12%;
}

.popular-row .col-xs-6.col-sm-4 {
    margin-bottom: 15px;
}

/*------------------ 3 categories in create/edit mind ------------------*/
.jsMindCategories option:disabled {
    color: rgba(151, 160, 179, 0.9);
}

/****** 5 columns per row for Tablet onwards ******/
@media (min-width: 768px) {
    .col-sm-5ths {
        min-height: 1px;
        padding-right: 15px;
        padding-left: 15px;
        position: relative;
        width: 20%;
        float: left;
    }
}

/***************** For Tablets *****************/
@media only screen and (max-width:1023px) {
    /****** Global Use ******/
    body, .body-home {
        padding-bottom: 78px;
    }
    
    .footer {
        font-size: 1.4rem;
    }
    
    .navbar-icon-box {
        margin-right: 7px;
    }
    
    /****** Register pages ******/
    .iframe-responsive.add-fb-admin {
        margin-left: -40px;
    }
    
    /****** Write Mind ******/
    .btn-writemind {
        font-size: 1.1rem;
        height: 65px;
        margin-right: 5px;
        margin-bottom: 15px;
        padding: 6px;
        width: 65px;
    }
    
    .iframe-ig {
        height: 578px;
        width: 73%;
    }
    
    .imgmanager-btn-filter {
        margin-left: -22px;
    }
    
    .uploaded-img-individual .checkbox-mask {
        right: 0;
    }
    
    .writemind-btn-box {
        bottom: 12%;
        padding: 5px;
        right: 0;
    }
    
    /****** Home ******/
    .abtme-box img {
        height: 130px;
        margin: auto;
        width: 130px;
    }
    
    .abtme-box .table-box {
        font-size: 1.5rem;
        padding-right: 0;
    }
    
    .contest-progress-box {
        width: 70%;
    }
    
    .contest-spin-row .col-md-6 {
        text-align: center;
    }
    
    .contest-spin-row .col-md-6:nth-child(2) {
        height: 185px;
        padding-top: 0;
    }
    
    .leaderboard-panel .btn-white {
        margin: 7px 2px;
        padding: 4px 12px;
    }
    
    .leaderboard-advenger-tab .ea-individual-box { 
        width: 100%;
    }
    
    .leaderboard-monthly-tab .monthly-individual-box .left span,
    .leaderboard-monthly-tab .monthly-individual-box .right span {
        display: block;
    }
    
    .leaderboard-monthly-tab .monthly-individual-box .left,
    .leaderboard-monthly-tab .monthly-individual-box .right,
    .leaderboard-specialize-tab .specialize-individual-box .left,
    .leaderboard-specialize-tab .specialize-individual-box .right {
        padding: 0 5px;
        text-align: center;
    }
    
    .leaderboard-monthly-tab .monthly-individual-box .right,
    .leaderboard-specialize-tab .specialize-individual-box .right {
        margin-bottom: 8px;
    }
    
    .leaderboard-specialize-tab .specialize-individual-box .left img {
        margin: 0 5px;
    }
    
    .preeditor-container .preeditor-card {
        width: 60%;
    }
    
    .summary-box {
        font-size: 1.4rem;
        padding: 0 10px;
    }

    .summary-box.first {
        width: 38%;
    }
    
    .summary-box.first .first-content-box {
        padding: 7px 10px;
    }
    
    .summary-box.first .first-content-box .entitled {
        font-size: 1.2rem;
    }

    .summary-box.short {
        width: 26%;
    }
    
    .summary-box.long .elite-table td.title {
        width: 43%;
    }

    .summary-box.long .withdraw-table td.title {
        width: 56%;
    }
    
    .summary-box .num {
        font-size: 1.6rem;
    }
    
    .summary-box .num-lg {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    /****** Profile ******/
    .profile-rank-bar .rank-img-box {
        left: 36%;
    }
    
    /****** Groups ******/
    .groups-dot-box {
        right: -32%;
    }

    .groups-dot-box .dot {
        height: 15px;
        margin: 7px;
        width: 15px;
    }

    .groups-dot-box .dot:nth-child(2) {
        height: 22px;
        margin: 3px;
        width: 22px;
    }
    
    /****** Fammatch ******/
    .fammatch-card-title {
        font-size: 1.5rem;
    }
    
    .fammatch-card-title.wanted {
        font-size: 3rem;
        margin-bottom: -13px;
    }
    
    /****** Offer ******/
    .offer-card {
        width: 100%;
    }
    
}

/***************** For Mobile phone *****************/
@media only screen and (max-width:767px) {
    /****** Global Use ******/
    body, .body-home {
        padding-bottom: 77px;
    }
    
    iframe{
        width: 100%
    }
    
    .btn-backtotop {
        transform: scale(.9);
    }
    
    .btn-pink, .btn-blue {
        padding: 5px 12px;
    }
    
    .filter-btn {
        margin-top: 0;
    }
    
    .footer .list-inline>li {
        padding-left: 5px;
        padding-right: 5px;
    }
    
    .mobile-center {
        text-align: center;
    }
    
    .navbar-icon-box {
        margin-top: 11px;
    }
    
    .navbar-logo-box {
        margin-left: 0;
    }
    
    .navbar-side {
        transform: translateX(-500px);
        width: 100%;
    }

    .navbar-icon-box .navbar-icon {
        margin: 0 8px;
        width: 22px;
    }
    
    .notification-bubble {
        margin-top: 18px;
        width: 300px;
    }
    
    .notification-bubble:after {
        border-width: 12px;
        margin-right: 10px;
        margin-top: -12px;
    }
    
    .notification-unread-bubble {
        font-size: 1.1rem;
        height: 17px;
        margin-right: 0;
        top: -3px;
        width: 17px;
    }
    
    .product-bubble {
        margin-top: 18px;
    }
    
    .product-bubble:after {
        left: 107px;
    }
    
    .product-bubble img {
        margin: auto;
        width: 80%;
    }

    .upload-progress-box, .upload-progress-box progress, 
    .upload-progress-box .progress-percent {
        width: 300px;
    }

    /****** Register pages ******/
    .reject-marks-box .with-border {
        border: none;
    }
    
    .step-bar {
        margin-left: -40px;
    }
    
    .step-bar li:after {
        left: -28%;
        top: 20px;
        width: 55%;
    }
    
    .step-bar li i {
        height: 40px;
        line-height: 35px;
        width: 40px;
    }
    
    .tnc-box {
        padding: 15px 0 15px 17px;;
    }
    
    .tnc-desc {
        padding: 0 17px 0 0;
    }
    
    /****** Write Mind ******/
    .autosave-msg-box {
        min-height: 48px;
        text-align: center;
    }
    
    .btn-blue-hollow {
        margin: 0 2px 10px 2px;
        padding: 5px 6px;
    }
    
    .btn-writemind {
        display: inline;
        font-size: 1rem;
        height: 50px;
        margin-bottom: 0;
        padding: 1px;
        width: 50px;
    }
    
    .btn-writemind img {
        width: 56%;
    }
    
    .btn-writemind-cover {
        height: 45px;
        width: 58px;
    }
    
    .iframe-ig {
        height: 323px;
        width: 73%;
    }
    
    .img-datepicker#txtFilterDateEnd {
        margin-left: 11px;
    }
    
    .jsDivWordCount {
        text-align: center;
    }
    
    .mind-option-row .col-sm-2 {
        padding-right: 15px;
    }
    
    .thumbnail {
        height: 86px;
        width: 86px;
    }
    
    .uploaded-img-btn-box .col-xs-12 span {
        display: block;
    }
    
    .uploaded-img-individual .checkbox-label {
        width: 86px;
    }
    
    .writemind-page {
        margin-top: 55px;
    }
    
    .writemind-page .container-content {
        padding: 0;
    }
    
    .writemind-btn-box {
        background-color: rgba(151, 160, 179, 0.9);
        bottom: auto;
        top: 50px;
        width: 100%;
    }
    
    /****** Minds ******/
    .mindlist-nav li{
        letter-spacing: 0;
    }
    
    /****** Home ******/
    .abtme-box .table-box table {
        margin: auto;
    }
    
    .contest-dateend-table, .contest-datestart-table {
        margin: auto;
    }
    
    .contest-dateend-table img, .contest-datestart-table img {
        width: 70%;
    }
    
    .contest-progress-box {
        width: 90%;
    }
    
    .contest-spin-row .spin-canvas {
        height: 320px;
        width: 320px;
    }
    
    .dashboard-main-row {
        display: block;
    }
    
    .dashboard-main-row .my-profile-col {
        background-attachment: fixed;
    }
    
    .leaderboard-monthly-tab .monthly-individual-box .left span,
    .leaderboard-monthly-tab .monthly-individual-box .right span {
        display: inline;
    }
    
    .notice-box {
        background: url('/images/notice_frame_topleft.png') top left no-repeat,
            url('/images/notice_frame_topright.png') top right no-repeat,
            url('/images/notice_frame_bottomleft_mobile.png') bottom left no-repeat,
            url('/images/notice_frame_bottomright.png') bottom right no-repeat,
            url('/images/notice_frame_vertical.png') top left repeat-y,
            url('/images/notice_frame_vertical.png') top right repeat-y,
            url('/images/notice_frame_horizontal.png') top center repeat-x,
            url('/images/notice_frame_horizontal.png') bottom center repeat-x;
        background-color: #fff;
        background-size: 28px, 28px, 30px, 28px, 13px, 12px, 73px, 73px;
    }
    
    .notice-table {
        width: 100%;
    }
    
    .notice-table td {
        display: block;
    }
    
    .notice-hello-td {
        margin: auto;
        text-align: center;
    }
    
    .notice-hello-td img {
        width: 90px;
    }
    
    .preeditor-container .preeditor-card {
        width: 90%;
    }
    
    .summary-box {
        margin: 15px auto;
        padding: 15px 10px;
    }
    
    .summary-box.first {
        margin-bottom: 0;
        width: 75%;
    }
    
    .summary-box.long {
        width: 75%;
    }
    
    .summary-box.short {
        width: 40%;
    }
    
    .summary-box.first .first-content-box {
        padding: 9% 10px 0 10px;
    }
    
    /****** Profile ******/
    .dot {
        height: 8px;
        margin: 7px 10px;
        width: 8px;
    }
    
    .editpro-editor-url-input {
        padding-left: 115px;
    }
    
    .editpro-editor-url-span {
        width: 109px;
    }

    .profile-detail-col {
        padding: 16px 18px 6px 18px;
    }

    .profile-rank-bar {
        padding-top: 22px;
    }
    
    .profile-rank-bar .rank-img-box {
        height: 100px;
        width: 100px;
    }
    
    .profile-rank-bar .rank-img-box img {
        margin-top: 10px;
        width: 100px;
    }
    
    .profile-rank-desc {
        padding: 5px 12px;
    }
    
    .profile-rank-desc .title-xl {
        font-size: 1.6rem;
    }
    
    .profile-rank-desc .title-md {
        font-size: 1.2rem;
    }
    
    /****** Groups ******/
    .groups-pama-box {
        margin: 20px 0 15px 0;
    }
    
    .groups-pama-col {
        text-align: center;
    }
    
    /****** Offers ******/
    #mdlOfferDetails .modal-body {
        max-height: 345px;
    }
    
    /****** Reports ******/
    #mdlReportMindDetail .modal-body table,
    #mdlReportRecruitDetail .modal-body table {
        table-layout: fixed;
        word-wrap: break-word;
    }

    .contest-report-content .row {
        display: block;
    }

    .contest-report-content .row:nth-child(2) {
        margin-top: -15px;
    }

    /****** Contact Us ******/
    .contactus-row {
        display: block;
    }
    
    .contactus-row .container-content {
        padding-bottom: 10px;
    }

    .fb-messengermessageus {
        margin-bottom: 20px;
    }

    .fbmsg-container .title-xl {
        font-size: 2.8rem;
        margin-top: -5px;
    }
    
    /****** Help Center ******/
    .answers-col .container-content {
        padding: 25px;
    }
}

/***************** For Mobile Phone Landscape mode *****************/
@media screen and (orientation:landscape) { 
    .navbar-side {
        transform: translateX(-900px);
    }
}

/***************** Animations *****************/
.popup {
  animation: popup 5s;
  -o-animation: popup 5s;
  -moz-animation: popup 5s;
  -webkit-animation: popup 5s;
}

@keyframes popup {
  0% {
    opacity: 0;
    transform: translateX(200px);
  }
  20% {
    opacity: 1;
    transform: translateX(0px);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes scrollarrow {
    0% {
        opacity: 1;
    }
    30% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(10px, 10px);
    }
}
