/* Dropdown Button */
.movie-corner {
	position: absolute;
                                                text-align: center;
                                                line-height: 20px;
                                                letter-spacing: 1px;
                                                color: #f0f0f0;
                                                top: 10px;
                                                right: -20px;
                                                left: auto;
                                                transform: rotate(45deg);
                                                -webkit-transform: rotate(45deg);
                                                font-weight: bold;
                                                box-shadow: 0 0 3px rgba(0,0,0,.3);
                                                text-shadow: 1px 1px 1px #222;
}
.dropbtn {
  background-color: #3498DB;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
  background-color: #2980B9;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}
div.skipBtn {
    display: block;
    padding: 7px 15px;
    background-color: #000000ab;
    font-family: sans-serif;
    cursor: pointer;
    position: absolute;
    z-index: 0;
    right: 0;
    top: 10%;
    color: white;
    min-width: 100px;
    border-radius: 4px;
}

div.skipBtn a {
    color: white;
    text-decoration: none;
}

div.regisBtn {
    padding: 15px 20px;
    background-color: #29bb2fcc;
    font-family: sans-serif;
    cursor: pointer;
    position: absolute;
    z-index: 0;
    right: 0;
    top: 19%;
    color: white;
    font-size: 20px;
    min-width: 120px;
    border-radius: 4px;
}

div.regisBtn a {
    color: white;
    text-decoration: none;
}

div.regisBtn.disabled {
    display: none!important;
}

div.skipBtn.disabled {
    display: none!important;
    background-color: #333;
    cursor: no-drop
}