/** Start of exit popup **/
.modal_container.active{
    width: 100vw;
    height: 100vh;
    z-index: 999999;
    text-align: center;
    position: relative;
    background-color: rgb(0 0 0 / 68%);
}

.popup_container {
    overflow: hidden;
    position: fixed;
    top: 0px;
    bottom: 0px;
    right: 0px;
    left: 0px;
    background: rgba(0, 0, 0, .7);
    z-index: 1000;
}

.exit_modal {
    background: #bdcedd;
    width: 60%;
    height: 50%;
    top: 50%;
    left: 50%;
    position: absolute;
    z-index: 1050;
    margin: 0px auto;
    visibility: hidden;
    display: none;
    border: 5px solid red;
    border-radius: 10px;
    text-align: center;
}

.popup-body {
    width: 896px;
    height: 456px;
    text-align: center;
    background: #2f2f31;
    left: 2px;
    position: relative;
    top: 2px;
}

.exit_modal_show {
    visibility: visible;
    display: block;
    transform: translate(-50%, -50%);
}

.popup_btn {
    display: flex;
    text-align: center;
    justify-content: space-evenly;
    bottom: 30px;
    position: absolute;
    width: 100%;
    font-family: 'Poppins-Medium';
}


.popup_headline {
    font-size: 2rem;
    color: #000000;
    text-align: center;
    font-weight: normal;
    font-family: "Poppins-Regular";
}

.no_button {
    width: 20%;
    height: auto;
    text-align: center;
    font-size: 32px;
    border: none;
    padding: 8px 4px;
    color: #000000;
}

.yes_button {
    width: 20%;
    height: auto;
    text-align: center;
    font-size: 32px;
    border: none;
    padding: 8px 4px;
    color: #000000;
}

.popup_img {
    width: 900px;
    height: 460px;
    position: absolute;
    z-index: -1;
}

.popup_btn button:focus {
    background-color: #ff0000 !important;
    color: #ffffff !important;
}

.popup-logo img{
    width: 40%;
    height: auto;
    display: none;
    position: relative;
}
.popup-msg-box {
    width: 100%;
    height: 75%;
    position: relative;
    display: grid;
    place-items: center;
}

/** End of exit popup **/

/** Css for connection error popup **/
.retry_modal {
    background: #292929;
    width: 60%;
    height: 50%;
    top: 50%;
    left: 50%;
    position: absolute;
    z-index: 1050;
    margin: 0px auto;
    visibility: hidden;
    display: none;
    /* border: 4px solid #aa8047; */
    border-radius: 4px 4px;
}

.dialog_img {
    background: url("../images/dialog-error.png") no-repeat;
    width: 66px;
    height: 66px;
    display: table-cell;
    vertical-align: middle;
    background-size: contain;
    float: left;
}

.popup_header {
    font-size: 46px;
    padding-left: 60px;
    padding-right: 40px;
    margin-top: 83px;
    clear: both;
    display: block;
    float: left;
    width: 100%;
    line-height: 44px;
}

.dialog_txt {
    padding-left: 16px;
    color: #fff;
    display: block;
    vertical-align: middle;
    font-size: 36px;
    width: 85%;
    margin-top: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    float: left;
}

.popup_description {
    color: #fff;
    font-size: 32px;
    width: 100%;
}

.connection_btn {
    width: 20%;
    height: auto;
    text-align: center;
    font-size: 32px;
    border: none;
    padding: 8px 4px;
    color: #000000;
}

.connection_retry_btn {
    width: 20%;
    height: auto;
    text-align: center;
    font-size: 32px;
    border: none;
    padding: 8px 4px;
    color: #000000;
}

.popup_connection {
    width: 20%;
    top: 0px;
    left: 50%;
    position: absolute;
    z-index: 999999;
    margin: 0px auto;
    visibility: hidden;
    display: none;
    transform: translate(-50%, -50%);
}

.mod_bg_color {
    background-size: contain !important;
    background-repeat: no-repeat !Important;
}

.popup_new_box {
    visibility: visible;
    display: block;
    width: 60%;
    height: 50%;
    top: 50%;
    left: 50%;
    border: 1px solid red;
}

.zoom-in {
    transform: scale(.95);
}

/** End css for connection error popup **/

.alert_popup_modal {
    display: none;
    place-items: center;
    width: 100vw;
    height: 100vh;
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    font-family: 'Poppins-Regular';
}

.alert_popup_modal_box {
    width: 50%;
    height: 50%;
    position: relative;
    background: #CCC;
    padding: 12px;
    border: 4px solid red;
    border-radius: 1rem;
/*    transform: translate(50%, 50%);*/
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.alert_popup_modal_headng {
    text-align: center;
    color: #000;
    font-size: 2rem;
    font-weight: bolder;
    line-height: inherit;
    padding: 1rem;
    font-family: 'Poppins-Medium';
}

.alert_popup_modal_heading_text{
    text-decoration-line: underline;
    text-underline-offset: 5px;
    padding-bottom: 8px;
    text-decoration-color: #000;
}

.alert_popup_modal_message_text{
    position: relative;
    display: block;
}

.alert_popup_modal_message_box{
    text-align: center;
    color: #000;
    font-size: 2rem;
    font-weight: 500;
    line-height: inherit;
    padding: .4rem .8rem;
    font-family: 'Poppins-Regular';
    /* text-align: justify; */
    height: 45%;
    position: relative;
    display: grid;
    place-content: center;
}

.alert_popup_modal_message_box .popup_btn {
    display: flex;
    text-align: center;
    justify-content: space-evenly;
    position: relative;
    width: 100%;
    padding: 2rem;
}

.signin-modal-container .alert_popup_modal_message_box {
   padding: unset;
   height: unset;
}

.alert_popup_modal_box .ok_btn {
    width: 25%;
    height: auto;
    text-align: center;
    font-size: 32px;
    border: none;
    padding: 8px 4px;
    color: #000000;
}

.alert_popup_modal_box .ok_btn:focus{
    color: #ffffff;
    background: red;
}

.signin-heading{
    font-size: 1.8rem;
    padding-bottom: 6px;
}

.or-text{
    font-size: 1.6rem;
    font-weight: 600;
    padding-bottom: 6px;
}

.signup-heading{
    font-size: 1.8rem;
    text-decoration-line: underline;
    text-underline-offset: 8px;
    padding-bottom: 10px;
    text-decoration-color: #000;
}

.signup-message{
    font-size: 1.6rem;
}

.parental-control-model-container{
    width: 100vw;
    height: 100vh;
    z-index: 999;
    position: relative;
    display: none;
    color: #FFF;
}
.parental-control-model-container .modal-content{
    height: 100vh !important;
    background-color: #000 !important;
}

.modal-dialog.dialog-box{
    margin: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
}

.parental-keyboard-box{
    position: absolute;
    width: 100vw;
    bottom: 0;
}

.verification-logo{
    width: 14rem;
    height: auto;
    margin: 0 1rem;
}

.confirm-your-age-title{
    font-size: 2.5rem;
    color: #FFF;
}

.continue-your-age-title{
    font-size: 1.6rem;
    color: #FFF;
}

.number-keyboard{
    display: grid;
    place-items: center;
    text-align: center;
}

.number-btn{
    font-size: 2.2rem;
/*    padding: 1rem 3rem;*/
}

button.number-btn{
    width: 100%;
    background-color: none !important;
/*    border-color: #0d6efd;*/
    color: #FFFFFF;
}

.number_key{
    border-color: #0d6efd;
    border: 1px solid #0d6efd;
}

.number-zero-clear{
    padding: 0rem 0.2rem;
}

.start-watching-btn{
/*    background: red;*/
    padding: 1.3rem;
    font-size: 2.2rem;
    margin: 0rem 2.2rem;
}

.age-verification-box .focusable:focus{
  background-color: red;
  color: #FFFFFF;
}

/** Start of exit popup **/
.modal_container.active{
    position: fixed;      /* ensure overlay covers the viewport */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999999;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.68); /* darken background */
    display: block;
    visibility: visible;
    pointer-events: auto;
}

/** Start of exit popup **/
.modal_container.active{
    width: 100vw;
    height: 100vh;
    z-index: 999999;
    text-align: center;
    position: relative;
    background-color: rgb(0 0 0 / 68%);
}

.popup_container {
    overflow: hidden;
    position: fixed;
    top: 0px;
    bottom: 0px;
    right: 0px;
    left: 0px;
    background: rgba(0, 0, 0, .7);
    z-index: 1000;
}

.exit_modal {
    background: #bdcedd;
    width: 60%;
    height: 50%;
    top: 50%;
    left: 50%;
    position: absolute;
    z-index: 1050;
    margin: 0px auto;
    visibility: hidden;
    display: none;
    border: 5px solid red;
    border-radius: 10px;
    text-align: center;
}

.popup-body {
    width: 896px;
    height: 456px;
    text-align: center;
    background: #2f2f31;
    left: 2px;
    position: relative;
    top: 2px;
}

.exit_modal_show {
    visibility: visible;
    display: block;
    transform: translate(-50%, -50%);
}

.popup_btn {
    display: flex;
    text-align: center;
    justify-content: space-evenly;
    bottom: 30px;
    position: absolute;
    width: 100%;
    font-family: 'Poppins-Medium';
}


.popup_headline {
    font-size: 2rem;
    color: #000000;
    text-align: center;
    font-weight: normal;
    font-family: "Poppins-Regular";
}

.no_button {
    width: 20%;
    height: auto;
    text-align: center;
    font-size: 32px;
    border: none;
    padding: 8px 4px;
    color: #000000;
}

.yes_button {
    width: 20%;
    height: auto;
    text-align: center;
    font-size: 32px;
    border: none;
    padding: 8px 4px;
    color: #000000;
}

.popup_img {
    width: 900px;
    height: 460px;
    position: absolute;
    z-index: -1;
}

.popup_btn button:focus {
    background-color: #ff0000 !important;
    color: #ffffff !important;
}

.popup-logo img{
    width: 40%;
    height: auto;
    display: none;
    position: relative;
}
.popup-msg-box {
    width: 100%;
    height: 75%;
    position: relative;
    display: grid;
    place-items: center;
}

/** End of exit popup **/

/** Css for connection error popup **/
.retry_modal {
    background: #292929;
    width: 60%;
    height: 50%;
    top: 50%;
    left: 50%;
    position: absolute;
    z-index: 1050;
    margin: 0px auto;
    visibility: hidden;
    display: none;
    /* border: 4px solid #aa8047; */
    border-radius: 4px 4px;
}

.dialog_img {
    background: url("../images/dialog-error.png") no-repeat;
    width: 66px;
    height: 66px;
    display: table-cell;
    vertical-align: middle;
    background-size: contain;
    float: left;
}

.popup_header {
    font-size: 46px;
    padding-left: 60px;
    padding-right: 40px;
    margin-top: 83px;
    clear: both;
    display: block;
    float: left;
    width: 100%;
    line-height: 44px;
}

.dialog_txt {
    padding-left: 16px;
    color: #fff;
    display: block;
    vertical-align: middle;
    font-size: 36px;
    width: 85%;
    margin-top: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    float: left;
}

.popup_description {
    color: #fff;
    font-size: 32px;
    width: 100%;
}

.connection_btn {
    width: 20%;
    height: auto;
    text-align: center;
    font-size: 32px;
    border: none;
    padding: 8px 4px;
    color: #000000;
}

.connection_retry_btn {
    width: 20%;
    height: auto;
    text-align: center;
    font-size: 32px;
    border: none;
    padding: 8px 4px;
    color: #000000;
}

.popup_connection {
    width: 20%;
    top: 0px;
    left: 50%;
    position: absolute;
    z-index: 999999;
    margin: 0px auto;
    visibility: hidden;
    display: none;
    transform: translate(-50%, -50%);
}

.mod_bg_color {
    background-size: contain !important;
    background-repeat: no-repeat !Important;
}

.popup_new_box {
    visibility: visible;
    display: block;
    width: 60%;
    height: 50%;
    top: 50%;
    left: 50%;
    border: 1px solid red;
}

.zoom-in {
    transform: scale(.95);
}

/** End css for connection error popup **/

.alert_popup_modal {
    display: none;
    place-items: center;
    width: 100vw;
    height: 100vh;
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    font-family: 'Poppins-Regular';
}

.alert_popup_modal_box {
    width: 50%;
    height: 50%;
    position: relative;
    background: #CCC;
    padding: 12px;
    border: 4px solid red;
    border-radius: 1rem;
/*    transform: translate(50%, 50%);*/
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.alert_popup_modal_headng {
    text-align: center;
    color: #000;
    font-size: 2rem;
    font-weight: bolder;
    line-height: inherit;
    padding: 1rem;
    font-family: 'Poppins-Medium';
}

.alert_popup_modal_heading_text{
    text-decoration-line: underline;
    text-underline-offset: 5px;
    padding-bottom: 8px;
    text-decoration-color: #000;
}

.alert_popup_modal_message_text{
    position: relative;
    display: block;
}

.alert_popup_modal_message_box{
    text-align: center;
    color: #000;
    font-size: 2rem;
    font-weight: 500;
    line-height: inherit;
    padding: .4rem .8rem;
    font-family: 'Poppins-Regular';
    /* text-align: justify; */
    height: 45%;
    position: relative;
    display: grid;
    place-content: center;
}

.alert_popup_modal_message_box .popup_btn {
    display: flex;
    text-align: center;
    justify-content: space-evenly;
    position: relative;
    width: 100%;
    padding: 2rem;
}

.signin-modal-container .alert_popup_modal_message_box {
   padding: unset;
   height: unset;
}

.alert_popup_modal_box .ok_btn {
    width: 25%;
    height: auto;
    text-align: center;
    font-size: 32px;
    border: none;
    padding: 8px 4px;
    color: #000000;
}

.alert_popup_modal_box .ok_btn:focus{
    color: #ffffff;
    background: red;
}

.signin-heading{
    font-size: 1.8rem;
    padding-bottom: 6px;
}

.or-text{
    font-size: 1.6rem;
    font-weight: 600;
    padding-bottom: 6px;
}

.signup-heading{
    font-size: 1.8rem;
    text-decoration-line: underline;
    text-underline-offset: 8px;
    padding-bottom: 10px;
    text-decoration-color: #000;
}

.signup-message{
    font-size: 1.6rem;
}

.parental-control-model-container{
    width: 100vw;
    height: 100vh;
    z-index: 999;
    position: relative;
    display: none;
    color: #FFF;
}
.parental-control-model-container .modal-content{
    height: 100vh !important;
    background-color: #000 !important;
}

.modal-dialog.dialog-box{
    margin: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
}

.parental-keyboard-box{
    position: absolute;
    width: 100vw;
    bottom: 0;
}

.verification-logo{
    width: 14rem;
    height: auto;
    margin: 0 1rem;
}

.confirm-your-age-title{
    font-size: 2.5rem;
    color: #FFF;
}

.continue-your-age-title{
    font-size: 1.6rem;
    color: #FFF;
}

.number-keyboard{
    display: grid;
    place-items: center;
    text-align: center;
}

.number-btn{
    font-size: 2.2rem;
/*    padding: 1rem 3rem;*/
}

button.number-btn{
    width: 100%;
    background-color: none !important;
/*    border-color: #0d6efd;*/
    color: #FFFFFF;
}

.number_key{
    border-color: #0d6efd;
    border: 1px solid #0d6efd;
}

.number-zero-clear{
    padding: 0rem 0.2rem;
}

.start-watching-btn{
/*    background: red;*/
    padding: 1.3rem;
    font-size: 2.2rem;
    margin: 0rem 2.2rem;
}

.age-verification-box .focusable:focus{
  background-color: red;
  color: #FFFFFF;
}

/** Start of exit popup **/
.modal_container.active{
    position: fixed;      /* ensure overlay covers the viewport */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999999;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.68); /* darken background */
    display: block;
    visibility: visible;
    pointer-events: auto;
}

/* ---------------------------
   Post-churn centering fixes
   --------------------------- */

/* Honor the new .active state used by JS */
.modal-root.active {
  display: block !important;
  visibility: visible !important;
}

/* Exit modal: center when either legacy (_show) or new (.active) state is used */
.exit_modal.active,
.exit_modal_show {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  visibility: visible !important;
  display: block !important;
  z-index: 100000 !important;
}

/* Retry/connection modal: fix vertical centering; avoid top:0 + translate combo */
.popup_connection {
  top: 50% !important; /* center vertically */
}
.retry_modal.active {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  visibility: visible !important;
  display: block !important;
  z-index: 100000 !important;
}

/* Sign-in/alert modals: let the container center its box */
.alert_popup_modal.active {
  display: grid !important;
  place-items: center !important;
}