/********** Container  ***********/
.geek-container {
  padding: 20px;
  margin: 20px 20px;
  background-color: #2c3337;
  border-radius: 10px;
  color: #fff;
}
/********** Header  ***********/
.geek-header {
  padding: 10px;
  height: 60px;
  border-radius: 10px;
  position: relative;
  background-color: #102025;
  text-align: center;
  background: -webkit-linear-gradient(
    to left,
    #2c3337,
    #1d2327,
    #1d2327,
    #2c3337
  );
  background: linear-gradient(to left, #2c3337, #1d2327, #1d2327, #2c3337);
}
.geek-container select{
  background: #1d2327 !important;
  color:#f0f0e5 !important;
}
.geek-container select option:hover{
  background-color: #f0f0e5 !important;
  color:#1d2327 !important;
}
.geek-container select:hover{
  color:#f0f0e5 !important;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  outline-color: #F6E9E9 !important;
}
.geek-container select:focus{
  color:#f0f0e5 !important;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  outline-color: #F6E9E9 !important;
}
.geek-container input:focus{
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  outline-color: #F6E9E9 !important;
  border-color: #F6E9E9 !important;
}
.geek-container input:active{
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  outline-color: #F6E9E9 !important;
  border-color: #F6E9E9 !important;
}



.geek-header h1 {
  position: relative;
  top: -35px;
  font-size: 35px;
  font-weight: bold;
  color: #F6E9E9;
}

.geek-header span img {
  position: relative;
  top: 10px;
}

.geek-header-links {
  position: absolute;
  right: 30px;
  top: 40px;
  font-size: 20px;
  color: #F6E9E9 !important;
  width: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.geek-header-links a {
  color: #F6E9E9 !important;
  transition: all 0.3s ease;
}
.geek-header-links a:hover {
  color: #ffffff !important;
  outline: 0 !important;
  border: none !important;
  -moz-outline-style: none !important;
  box-shadow: none !important;
}
.geek-header-links a:active,
a:focus {
  outline: 0 !important;
  border: none !important;
  box-shadow: none !important;
  -moz-outline-style: none !important;
}
.geek-header-links a::-moz-focus-inner {
  border: 0 !important;
}

/********** Body Content  ***********/
.geek-body {
  padding: 20px;
}
.geek-body .form-control label {
  font-weight: bold !important;
  color: #F6E9E9;
}
.geek-body .form-table label {
  font-weight: bold !important;
  color: #F6E9E9;
}

.geek-body h1,
h2 {
  color: #F6E9E9 !important;
}

.geek-btn {
  border: 0 !important;
  border-radius: 5px;
  padding: 5px 10px !important;
  cursor: pointer;
  text-transform: none !important;
  text-decoration: none !important;
}
.geek-primary {
  background: #E16428 !important;
  color: #fff !important;
  border: 1px solid #fff !important;
}

.geek-disabled {
  background: #fefefe !important;
  color: #ccc !important;
}
.geek-secondary {
  background: #F6E9E9 !important;
  color: #2c3337 !important;
  font-weight: bold;
}

.geek-third {
  background: #2c3337 !important;
  color: #F6E9E9 !important;
  font-weight: bold;
  border: 1px solid #F6E9E9 !important;
  text-transform: none !important;
  text-decoration: none !important;
}
.geek-fourth {
  background: #cf1b2c !important;
  color: #F6E9E9 !important;
  font-weight: bold;
  border: 1px solid #F6E9E9 !important;
}

.geek-input-active {
  background-color: #1d2327 !important;
  border: 3px solid  #06fa2e !important;
  color: #06fa2e !important;
  font-weight: bold !important;
}
.geek-button {
  outline: 0 !important;
  border: 0 !important;
}
.geek-button:focus,
.geek-button:active {
  outline: 0 !important;
  border: 0 !important;
}

.geek-input {
  width: 400px;
  color:#F6E9E9 !important;
  background-color: #1d2327 !important;
}
.geek-input:focus,
.geek-input:active {
  outline-color: #F6E9E9 !important;
}

.geek-select {
  width: 400px;
  color: #2c3337;
}

/********** Rotate *************/
@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/************ Rotates ****************/
.geek-rotating {
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
}

/************ Spinner ****************/
.geek-spinner {
  height: 500px;
  width: 100%;
  position: relative;
}
.geek-spinner img {
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.geek-spinner .geek-rotating {
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

/*title item*/
.geekp-title-item {
  transition: all 300ms ease-out;
  position: relative;
  overflow: hidden;
  background: #E16428;
  margin-bottom: 20px;
  cursor: pointer;
  border: 5px solid #E16428;
}
.geekp-title-item:hover {
  transform: scale(1.1);
}
.geekp-title-item:hover .geekp-item-overlay {
  opacity: 0.8 !important;
}
.geekp-item-overlay {
  position: absolute;
  background: #E16428;
  z-index: 2;
  color: #fff;
  opacity: 0;
  margin: auto;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 10px;
  overflow: hidden;
  text-align: center;
  word-wrap: break-word;
}

/*Gallery*/
.geekp-gallery-item {
  transition: opacity 300ms ease-out;
  overflow: hidden;
  background: #1d2327;
  margin-bottom: 20px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  z-index: 1;
  padding: 0;
}
.geekp-gallery-item img {
  width: 100%;
  cursor: grab;
  margin-bottom: 10px;
}
.geekp-gallery-main {
  background-color: #2c3337 !important;
  border: 2px solid #F6E9E9 !important;
}
.geekp-gallery-item:hover {
  opacity: 0.8;
}
.geekp-focus-img button {
  cursor: pointer;
}

.fx-geekp-image-big {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(5, 10, 15, 0.8);
  overflow: hidden;
  height: 100vh;
  width: 100vw;
  z-index: 99999 !important;
  transition: all 0.3s ease;
}
.fx-geekp-image-big img {
  max-width: 400px;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 99999 !important;
  transform: translate(-50%, -50%);
}

.fx-geekp-image-active {
  display: block;
}

/*Geek List Items*/
.geekp-list-item {
  position: relative;
  margin: 0;
  padding: 0;
  transition: all 300ms ease-out;
}
.geekp-list-item:hover {
  transform: scale(1.03);
}
.geekp-list-item-header {
  position: relative;
  width: 230px !important;
  height: 340px !important;
  cursor: pointer;
  transition: all 300ms ease-out;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.geekp-list-item-header:hover {
  opacity: 0.7;
}
.geekp-list-item-body {
  background: #1d2327;
  height: 130px !important;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.geekp-list-item-body-title {
  padding: 10px 20px;
  text-align: center;
  color: #F6E9E9;
  font-size: 19px;
  font-weight: bold;
  line-height: 22px;
}
.geekp-button-area {
  padding: 10px 10px;
  position: absolute;
  bottom: 0;
  width: 210px !important;
  text-align: center;
}
.geekp-id-area {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  position: absolute;
  bottom: 47px;
  right: 0;
  left: 0;
}

/*Confirm messages*/
.geekp-confirm {
  background: #1d2327;
  width: 300px;
  height: 150px;
  padding: 20px;
  text-align: center;
  color: #ffffff;
}
.geekp-confirm h1 {
  color: #F6E9E9;
}

/*movie sub*/
.geekp-title-sub-titles {
  font-size: 18px;
  font-weight: bold;
  color: #cccccc;
  border-bottom: 2px solid #F6E9E9;
  padding: 10px 10px 10px 10px;
  text-transform: uppercase;
}

.geekp-title-sub-titles span {
  margin-right: 20px;
  cursor: pointer;
  padding-bottom: 5px;
  transition: all 300ms ease-out;
}
.geekp-title-sub-titles .active {
  border-bottom: 4px solid #F6E9E9;
  color: #F6E9E9;
  transition: all 300ms ease-out;
}



.geekp-crew {
  padding: 5px;
  background: #1d2327;
  width: 600px;
  display: grid;
  grid-template-columns: 1fr 5fr;
  margin-bottom: 20px;
  position: relative;
  cursor: grab;
}
.geekp-crew-photo img {
  width: 80px;
}
.geekp-crew-photo {
  padding: 5px;
}
.geekp-crew-name {
  font-size: 17px;
  line-height: 85px;
}
.geekp-crew-close {
  position: absolute;
  right: 5px;
  top: 5px;
  cursor: pointer;
}

/*Cast here*/
.geekp-cast {
  padding: 5px;
  background: #1d2327;
  width: 70%;
  display: grid;
  grid-template-columns: 100px 1fr;
  margin-bottom: 20px;
  position: relative;
  cursor: grab;
}
.geekp-cast-photo img {
  width: 80px;
}
.geekp-cast-photo {
  padding: 5px;
}
.geekp-cast-name {
  font-size: 17px;
  line-height: 85px;
}
.geekp-cast-close {
  position: absolute;
  right: 5px;
  top: 5px;
  cursor: pointer;
}

/*Searchbox*/
.geekp-textbox {
  box-sizing: border-box;
  display: inline-block;
  perspective: 300px;
  position: relative;
  text-align: left;
  z-index: 10000;
}

.geekp-textbox input {
  background-color: #fff;
  border: none;
  box-shadow: 0 8px 8px -10px rgba(0, 0, 0, 0.4);
  box-sizing: border-box;
  font-size: 1rem;
  outline: none;
  width: 280px;
}

.geekp-textbox input::placeholder {
  color: #ccc;
}

.geekp-textbox .autoComplete,
.autoCompletePerson,
.autoCompleteChar, .geekpAutoComplete {
  left: 0;
  position: absolute;
  top: calc(100% + 5px);
  width: 100%;
  margin-bottom: 10px;
}

.geekp-textbox .autoComplete,
.autoCompletePerson, .geekpAutoComplete,
.autoCompleteChar .geekp-textbox-item {
  animation: showItem 0.3s ease forwards;
  background-color: #fff;
  box-shadow: 0 8px 8px -10px rgba(0, 0, 0, 0.4);
  box-sizing: border-box;
  color: #7c8487;
  cursor: pointer;
  display: block;
  font-size: 0.8rem;
  opacity: 0;
  outline: none;
  z-index: 10000;
  padding: 10px;
  text-decoration: none;
  transform-origin: top;
  /* transform: rotateX(-90deg); */
  transform: translateX(10px);
}
.geekp-textbox-item:last-child {
  padding-bottom: 25px;
}

.geekp-textbox .autoComplete,
.autoCompletePerson, .geekpAutoComplete,
.autoCompleteChar .geekp-textbox-item:hover,
.geekp-textbox .autoComplete,
.autoCompletePerson,
.autoCompleteChar .geekp-textbox-item:focus {
  background-color: #fafafa;
  color: #d1822b;
}

@keyframes showItem {
  0% {
    opacity: 0;
    /* transform: rotateX(-90deg); */
    transform: translateX(10px);
  }

  100% {
    opacity: 1;
    /* transform: rotateX(0); */
    transform: translateX(0);
  }
}

.geekp-persona-item {
  transition: all 300ms ease-out;
  position: relative;
  overflow: hidden;
  background: #1d2327;
  height: 230px;
  margin-bottom: 20px;
  border-radius: 5px;
  padding: 0;
  box-shadow: 0 8px 8px -10px rgba(0, 0, 0, 0.4);
}
.geekp-persona-trash {
  opacity: 0;
  transition: all 300ms ease-out;
}
.geekp-persona-item:hover {
  transform: scale(1.01);
}
.geekp-persona-item:hover .geekp-persona-overlay {
  opacity: 0.9 !important;
}
.geekp-persona-item:hover .geekp-persona-trash {
  opacity: 1 !important;
}
.geekp-persona-item img {
  cursor: pointer;
}

.geekp-persona-overlay {
  position: absolute;
  background: #102025;
  z-index: 2;
  color: #fff;
  opacity: 0;
  margin: auto;
  top: 0;
  width: 230px;
  height: 230px;
  padding: 20px 10px 10px;
  overflow: hidden;
  text-align: center;
  word-wrap: break-word;
  transition: all 300ms ease-out;
}

.geekp-company-table tr td {
  padding:20px 0;
  border-top: 1px solid #1d2327;
}

.geekp-company-table tr td a{
  color: #fff;

}

.ck-editor__editable {
  min-height: 200px;
  color:#F6E9E9 !important;
  border:0 !important;
  background: #1d2327 !important;
  border-radius: 10px;
}
.ck-editor__editable h1, h2, h3, h4{
  color:#F6E9E9 !important;
}
.ck-editor__editable:focus{
  outline: #E16428 !important;
  border: #E16428 !important;
}
.ck-editor__editable:active{
  outline: #E16428 !important;
  border: #E16428 !important;
}
.ck-editor__editor{
  color:#F6E9E9 !important;
  background: #1d2327 !important;
}
.ck-editor__editor h1, h2, h3, h4{
  color:#F6E9E9 !important;
}


.geekp-searchbar{
  margin-bottom: 20px;
  width:30%;
  height: 50px;
  font-weight: bold;
  border: 2px solid #F6E9E9 !important;
  background-color: #1d2327;
  padding-right: 30px;
  color: #F6E9E9 !important;
}
.geekp-searchbar:focus{
  outline:#E16428 !important;
}