/* ADMIN PAGES */
.auth-container {
    max-width: 450px;
    margin: 100px auto 0;
}
.auth-container .logo-container {
    background: #272727;
    text-align: center;
    border-radius: 10px 10px 0 0;
}
.auth-container .logo-container img {
    height: 75px;
    padding: 20px 0 15px;
}
.auth-container .auth-box {
    padding: 10px;
    border-radius: 0 0 10px 10px;
    border: 1px solid #d2d2d2;
    margin-bottom: 10px;
}
.auth-container .auth-box form {
    padding: 10px 20px
}
.auth-container .field {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 16px;
    font-size: 14px;
}
.auth-container .field label {
    font-weight: bold
}
.auth-container .field input {
    padding: 8px;
    border: 1px solid #30d100;
    border-radius: 4px;
    width: 100%;
}
.auth-container .field .g-recaptcha {
	margin: 0 auto;
}
.auth-container .actions input[type=submit] {
    background: #30d100;
    width: 100%;
}
.auth-container .actions {
    text-align: center;
}
.auth-container .error {
    font-size: 12px;
    color: red;
}
.auth-container .auth-success {
    padding: 20px;
    background: #e8ffe8;
    border-radius: 5px;
}
.auth-container .auth-error {
    padding: 20px;
    background: #ffe4e4;
    border-radius: 5px;
}
.auth-container .has-forgot-password-link {
    display: flex;
    justify-content: space-between
}
.auth-container .has-forgot-password-link a{
    color: #00aeef
}
.auth-container .password-field {
    position: relative;
}
.auth-container .show-password {
    position: absolute;
    right: 0;
    height: 100%;
    width: 35px;
    background: none;
    border: 0;
    color: #898989;
    cursor: pointer;
}
.auth-container .auth-success a,
.auth-container .auth-error a {
    color: #00aeef;
    text-decoration: underline
}
.auth-container .auth-success a:hover,
.auth-container .auth-error a:hover {
    text-decoration: none
}
.auth-container .after-box-actions {
    text-align: center;

}
.auth-container .after-box-actions a {
    color: #00aeef;
}
.auth-container .after-box-actions a:hover {
    text-decoration: none
}
.auth-container .instrux {
	font-size: 15px;
	color: #838282;
	text-wrap: balance;
	max-width: 420px;
	margin: 0 auto 32px auto;
	padding: 0 8px;
}
.auth-container .third-party-login .separator {
    margin-bottom: 10px;
    text-align: center;
}
.auth-container .providers {
    margin-bottom: 20px;
}
.auth-container .providers a {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    text-align: center;
    gap: 10px;
    padding: 8px;
    border: 1px solid #d2d2d2;
}
.auth-container .providers img {
    width: 28px;
}


/* WATCHLIST */

.watchlist-panel {
    max-width: 90%; 
    border-left: 1px solid #30d100;
    padding: 32px 16px 16px 16px;
    position: fixed;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-color: #f5fdf9;
    transition: transform 0.5s;
    overflow-x: visible;
    z-index: 5999999;
    box-shadow: -2px 0 5px rgba(48,209,0,0.5);
    border-left: 1px solid #30d100;
    transform: translateX(100%);
}
.watchlist-panel-content {
    display: flex;
    flex-direction: column;
    height: 100%;  /* Ensures this div takes full height of its parent */
}
.watchlist-panel h3 {
	text-align: left;
	font-family: "OpenSans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	padding-bottom: 16px;
	font-weight: 400;
	font-size: 20px;
}

.open-watchlist-btn {
    position: absolute;
    top: 50%;
    left: -61px;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center;
    background-color: #30d100;
    color: white;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10000;
    line-height: 1;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
/* safair hack */
@supports (-webkit-hyphens:none) { 
    .open-watchlist-btn {
        left: calc(-53px); 
    }
}
@media screen and (max-width: 1024px) {
	.watchlist-panel {
	    width: 60%;
	}
}
@media screen and (max-width: 768px) {
	.watchlist-panel {
	    width: 75%;
	}
}
@media screen and (max-width: 480px) {
	.watchlist-panel {
	    width: 90%;
	}
}
.watchlist-panel .watchlist-panel-header {
	display: flex;
	justify-content: space-between;
}
.watchlist-panel .close-panel {
	border: 2px solid #30d100;
	color: #30d100;
	background-color: #f5fdf9;
	font-weight: bold;
	align-self: center;
	padding: 6px;
	cursor: pointer;
}

.watchlist-panel .close-panel:hover {
	border: 2px solid #30d100;
	color: #fff;
	background-color: #30d100;
}
.watchlist-panel #watchlist-shows {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    column-gap: 8px;
    row-gap: 8px;
    margin: 0 0 16px 0;
    overflow-y: auto;  
    max-height: calc(100vh - 240px);
    border-bottom: 1px solid #dee1e3;
}
.watchlist-panel #watchlist-shows a {
	max-width: 180px;
}
@media screen and (max-width: 768px) {
	.watchlist-panel #watchlist-shows a {
		max-width: 140px;
	}
}
.watchlist-panel #watchlist-shows h5 {
	font-family: "OpenSans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	line-height: 1;
	font-size: 15px;
}
.watchlist-panel .basic-button {
	margin: 0;
    background-color: #30d100;
}

/* MODALE ON PROFILE PAGE */

#reg-instrux .personalize-modal-content {
	max-width: 420px;
}
#reg-instrux .personalize-modal-content h4 {
	text-wrap: balance;
	text-align: center;
	margin-top: 8px;
	border-bottom: 1px solid #30d100;
	padding-bottom: 16px;
}
#reg-instrux .personalize-modal-content ol li {
	margin: 8px 0;
}

