/**
 * Theme Name:     Beta Studium9
 * Author:         kien
 * Template:       generatepress
 * Text Domain:	   generatepress-child
 * Description:    beta theme
 */

/*bbpress text line height*/
#bbpress-forums {
    line-height: 1.4;
}
 /*bbpress forum image shadow*/
 .bbp-reply-content p img {
     border: thin solid gray;
 }
 
 /*bbpress closed topic link color*/
 #bbpress-forums ul.status-closed a {
     color: var(--accent);
 }
 
 /*bbpress sticky topic background color*/
 .bbp-forum-content ul.sticky, .bbp-topics ul.sticky, .bbp-topics ul.super-sticky, .bbp-topics-front ul.super-sticky {
	background-color: #fbfbfb;
}

/*generatepress footer to bottom fix*/
.site.grid-container.container {
    min-height: 80vh;
}

/*html form*/
.hf-form {
    max-width: 480px;
}

/*footer contact page*/
.inside-site-info {
    justify-content: start;
}
.copyright-bar {
    display: flex;
    gap: 10px;
}


/*hide posts meta*/
.entry-meta{
    display: none;
}


/*footer*/
.inside-site-info {
    margin-top: 10px;
}

.main-title a {
    color: #172243;
}

/*fix dashboard layout*/
/*https://generate.support/topic/tutorlms-dashboard-problem/*/
.site-content {
    display: contents;
}

/*same as above*/
/*.tutor-wrap-parent {*/
/*    width: 100%;*/
/*}*/
.tutor-wrap {
    margin-top: 20px;
}

/*fix mobile*/
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}