@font-face {
  font-family: "GothamHTF-Ultra";
  src: url("../../fonts/GothamHTF/GothamHTF-Ultra.otf") format("opentype");
}
.noWrap {
  white-space: nowrap;
}

.cms {
  width: 1600px;
  min-height: 100%;
  height: auto;
}
.cms .dvHeader {
  width: 100%;
  height: 60px;
}
.cms .dvHeader h2 {
  padding-left: 20px;
}
.cms .dvAddItem {
  display: flex;
  align-items: center;
  margin-top: 8px;
  width: 100%;
  height: 30px;
  text-align: left;
}
.cms .dvAddItem a {
  display: table-cell;
  vertical-align: middle;
  text-decoration: none;
  color: #000000;
  text-align: right;
}
.cms .dvAddItem a:hover {
  transform: scale(1.1);
  color: red;
  margin-left: 6px;
}
.cms .dvAddItem a:active {
  transform: scale(0.9);
}
.cms .dvSide {
  display: flex;
  position: relative;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 0.5);
  min-height: 100vh;
  height: auto;
  width: 20%;
  text-align: right;
  bottom: 0;
  font-family: "Gotham HTF Ultra";
}
.cms .dvSide #frmCMS {
  font-family: "Gotham HTF Ultra";
  width: auto;
  margin: 10% 4% 10% 4%;
  padding: 6px;
  text-align: left;
}
.cms .dvSide .spanInputBox {
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 10px;
}
.cms .dvSide .label {
  font-size: 18px;
  display: inline-block;
  width: 140px;
  text-align: left;
}
.cms .dvSide .input {
  width: 94%;
  font-size: 18px;
}
.cms .dvSide .dvRefresh {
  display: inline-block;
  position: relative;
  left: 95.5%;
  top: -18px;
}
.cms .dvContent {
  position: relative;
  background-color: rgba(235, 235, 235, 0.5);
  width: 75%;
  padding-left: 2.3%;
  min-height: 100vh;
  height: auto;
  bottom: 0;
}
.cms .dvContent .dvCommands {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 16px;
}
.cms .dvContent .dvCommands a {
  text-decoration: none;
  color: #ffffff;
  margin-left: 6px;
}
.cms .dvContent .dvCommands a:hover {
  transform: scale(1.2);
  color: red;
  font-size: 18px;
}
.cms .dvContent .dvItem {
  position: relative;
  box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.2), 0 8px 22px 0 rgba(0, 0, 0, 0.19);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, rgba(52, 104, 155, 0.5) 100%);
  width: 200px;
  margin: 10px;
  padding: 6px;
}
.cms .dvContent .dvItem .dvDelete {
  position: absolute;
  right: -15px;
  top: -15px;
  font-size: 26.4px;
  z-index: 99;
  color: #2c3e50;
}
.cms .dvContent .dvItem .dvDelete:hover {
  transform: scale(1.2);
  color: red;
  font-size: 29.7px;
}
.cms .dvContent .dvItem .btn {
  height: 100%;
}
.cms .dvContent .dvItem .btn .btnThumb {
  width: 76px;
}
.cms .dvContent .dvItem .btn .btnFile {
  width: 56px;
}
.cms .dvContent .dvItem .btn .btnSave {
  width: 56px;
}
.cms .dvContent .dvItem .btn:hover {
  background-color: white;
}
.cms .dvContent .dvImage {
  position: relative;
}
.cms .dvContent .dvImage .imgThumb {
  width: 100%;
}
.cms .dvContent .dvImage .spItemId {
  position: absolute;
  top: 5px;
  left: 5px;
}
.cms .dvContent .dvImage .video_thumb {
  position: absolute;
  opacity: 1;
  top: 15%;
  left: 30%;
  content: url("../../assets/app/video.png");
}
.cms .dvContent .dvImage .pdf_thumb {
  position: absolute;
  opacity: 1;
  width: 50px;
  bottom: 5%;
  right: 1%;
  content: url("../../assets/app/pdf.png");
}
.cms .dvContent .dvImage .uploading {
  position: absolute;
  width: 80px;
  opacity: 1;
  top: 15%;
  left: 30%;
  content: url("../../assets/app/rotate.gif");
}
.cms .dvContent .dvImage ._thumb {
  display: none;
}
.cms .dvContent .dvFile {
  position: relative;
  width: 100%;
}
.cms .dvContent .dvFile .dvCommands {
  position: relative;
  align-items: center;
  justify-content: flex-end;
  background-color: white;
}
.cms .dvContent .dvFile .dvInputArea {
  width: 97.5%;
}

/*----- Accordion -----*/
.accordion, .accordion * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.accordion {
  width: 94%;
  overflow: hidden;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
  border-radius: 3px;
}

/*----- Section Titles -----*/
.accordion-section-title {
  width: 100%;
  padding: 15px;
  display: inline-block;
  border-bottom: 2px solid rgba(51, 51, 51, 0.5);
  background-color: rgba(255, 255, 255, 0.15);
  transition: all linear 0.15s;
  /* Type */
  font-size: 1.2em;
  text-shadow: 0px 1px 0px #ebf3e5;
  color: #333;
}

.accordion-section-title.active, .accordion-section-title:hover {
  background: #63a3b6;
  /* Type */
  text-decoration: none;
  color: #fff;
  text-shadow: 0px 1px 0px #333;
}

.accordion-section:last-child .accordion-section-title {
  border-bottom: none;
}

/*----- Section Content -----*/
.accordion-section-content {
  padding: 15px;
  display: none;
}

/* Alternate way if we dont use formoptions */
/*
.FormGrid .EditTable .FormData
{
    float: left;
    width: 200px;
}*/
/* Give 50px width to all captions */
.edt_event_skin .FormGrid .EditTable .FormData .DataTD {
  padding: 0;
  margin: 0;
  width: 120px;
  /* background-color: #89d2ff; */
  /* background-color: #d3b57d; */
  background-color: #92C5E4;
  vertical-align: top;
}

.edt_event_skin .FormGrid .EditTable .FormData .CaptionTD {
  width: 120px;
  vertical-align: top;
  /*background-color: #FEF8F5;*/
  background-color: #e1f9fe;
  /*background-color: fuchsia;*/
}

/* give #closed width of 25px */
.edt_event_skin .FormGrid .EditTable .FormData .DataTD #client_id {
  width: 45px;
}

/*# sourceMappingURL=cms_edit.css.map */
