.openMod {
    cursor: pointer;
}

.modalsScroll {
    overflow: auto;
    position: fixed;
    z-index: -1;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    display: none
}

.modalsScroll.open{
    z-index: 55;
    display: block
}

.modals {
    height: 100vh;
    width: 100%;
}

.modals.table {
    display: table
}

.blockMod {
    position: relative;
    z-index: 6;
    display: none;
    margin: 0 auto;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.modals .in {
    margin: 0 auto;
}

.modals .closeModal {
    display: table;
    position: absolute;
    width: 33px;
    height: 33px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: #f4f4f4;
    z-index: 15;
    color: #999999;
    right: -20px;
    top: -20px;
    cursor: pointer;
    font-size: 24px;
    line-height: 33px;
    text-align: center;
    border: 1px solid #ccc;
}

.modals .closeModal:before, .modals .closeModal:after {
    position: absolute;
    top: 7px;
    left: 16px;
    content: ' ';
    height: 20px;
    width: 2px;
    background-color: #333;
}
.modals .closeModal:before {
    transform: rotate(45deg);
}
.modals .closeModal:after {
    transform: rotate(-45deg);
}

.modals.table {
  display: table; }
.modals.table.full {
  width: 100%; }
.modals.table .tBody {
  display: table-row-group; }
.modals.table .tRow {
  display: table-row; }
.modals.table .tHead {
  display: table-row; }
.modals.table .tCell {
  display: table-cell !important; }
.modals.table .tCell.middle {
  vertical-align: middle; }
.modals.table .tCell.top {
  vertical-align: top; }
.modals.table .tCell.bottom {
  vertical-align: bottom; }
.modals.table .tCell.right {
  text-align: right; }
.modals.table .tCell.left {
  text-align: left; }
.modals.table .tCell.center {
  text-align: center; }

.blockMod {
    max-width: 750px;
    background-color: #fff;
    border: 1px solid #ccc;
}
.blockMod .title {
    font-size: 18px;
    line-height: 17px;
    color: #666;
    font-weight: normal;
    letter-spacing: 0;
}

.modals .form{
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 710px;
    float: left;
    padding: 20px 0 20px 0;
}
.modals .form ul{
    position: relative;
    width: auto;
    font-size: 0;
    padding: 0;
    margin: 0 -10px;
    list-style-type: none;
    z-index: 1;
    text-align: center;
}
.modals .form ul li{
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    padding: 0 10px;
    margin: 0 0 25px 0;
    text-align: left;
}
.modals .form ul li:nth-child(1),
.modals .form ul li:nth-child(2){
    width: 50%;
}
.modals .form ul li:last-child {
    margin: 0;
}
.modals .form ul li textarea{
    min-height: 160px;
}
.modals .form ul li button{
    width: 190px;
    text-transform: capitalize;
}
.modals .form ul li:last-child .form-group {
    display: inline-block;
}
.modals .form ul li:last-child button {
    float: right;
}

.overlayModal {
    z-index: 1;
    position: fixed;
    background-color: #2c244a;
    opacity: 0.87;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    cursor: pointer;
    display: none;
}