/**
 * All of the CSS for your adlbn-specific functionality should be
 * included in this file.
 *
 */

[class*=dlb-], [class*=dlb-]:after, [class*=dlb-]:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

#dmimag-liveblog.postbox {
    background-color: transparent;
    border: 0;
    box-shadow: none;
}

#dmimag-liveblog.postbox .postbox-header {
    display: none;
}

.dlb-core {
    margin-top: -6px;
    margin-left: -12px;
    margin-bottom: -12px;
    margin-right: -12px;
}

.dlb-livebroadcast-preloader {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.dlb-livebroadcast-preloader svg {
    display: block;
    width: 48px;
    height: 48px;
    margin: 0 auto;
}

.dlb-livebroadcast-preloader svg path {
    fill: #2271b1;
}

.dlb-livebroadcast-item {
    margin-top: 20px;
    margin-left: -12px;
    margin-bottom: -12px;
    margin-right: -12px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    background-color: #ffffff;
    overflow: hidden;
}

.dlb-livebroadcast-item .dlb-metabox-text input[type=text] {
    width: 100%;
    font-size: 18px;
    line-height: 18px;
    padding: 5px 8px;
}

/* dlb */

.dlb-overflow-hidden {
    overflow: hidden;
}

/* Grid */

.dlb-wrap {
    width: 100%;
    margin: 0 auto;
}

.dlb-grid {
    margin: 0 auto;
}

.dlb-grid>.dlb-grid-row {
    margin: 0 auto;
}

/* Row */

.dlb-grid-row {
    display: flex;
    flex-wrap: wrap;
}

.dlb-row-reverse {
    flex-direction: row-reverse;
}

/* end Row */

/* Col */

.dlb-grid-col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
    width: 100%;
}

.dlb-grid-col-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
}

.dlb-grid-col-1 {
    flex: 0 0 6.25%;
    max-width: 6.25%;
}

.dlb-grid-col-2 {
    flex: 0 0 12.5%;
    max-width: 12.5%;
}

.dlb-grid-col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

#side-sortables .dlb-metabox-description, #side-sortables .dlb-metabox-field {
    flex: 0 0 100%;
    max-width: 100%;
}

.dlb-grid-col-sidebar {
    flex: 0 0 21%;
    max-width: 21%;
}

.dlb-grid-col-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.dlb-grid-col-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}

.dlb-grid-col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.dlb-grid-col-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.dlb-grid-col-9 {
    flex: 0 0 75%;
    max-width: 75%;
}

.dlb-grid-col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

/* end Col */

.dlb-justify-content-start {
    justify-content: flex-start;
}

.dlb-justify-content-end {
    justify-content: flex-end;
}

.dlb-justify-content-center {
    justify-content: center;
}

.dlb-justify-content-between {
    justify-content: space-between;
}

.dlb-justify-content-around {
    justify-content: space-around;
}

/* */

.dlb-align-items-start {
    align-items: flex-start;
}

.dlb-align-items-end {
    align-items: flex-end;
}

.dlb-align-items-center {
    align-items: center;
}

.dlb-align-items-baseline {
    align-items: baseline;
}

.dlb-align-items-stretch {
    align-items: stretch;
}

.dlb-border-top {
    border-top: 2px solid #135e96;
}

/** 
 * Metabox style
 * 
 */
.dlb-metabox:not(:last-child) {
    border-bottom: 1px solid #cccccc;
}

.dlb-metabox h5, .dlb-metabox h4, .dlb-metabox h3 {
    margin-top: 0;
    margin-bottom: 0;
}

.dlb-metabox-description {
    flex-direction: column;
    display: flex;
    background-color: #f9f9f9;
}

.dlb-metabox h4 {
    font-size: 16px;
}

.dlb-metabox-description span {
    font-size: 12px;
    font-style: italic;
}

.dlb-metabox-description {
    padding: 10px 20px;
}

.dlb-metabox-field, .dlb-grid-metabox .dlb-autocomplete-field {
    padding: 20px;
}

.dlb-metabox textarea {
    width: 100%;
    resize: none;
}

.dlb-metabox .dlbmag-faqs-button-remove {
    margin: 5px 0;
}

/**
 * Switch
 *
 */
.dlb-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    max-width: 60px;
    height: 30px;
}

/* Hide default HTML checkbox */
.dlb-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.dlb-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.dlb-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 6px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.dlb-slider {
    background-color: #007cba;
}

input:focus+.dlb-slider {
    box-shadow: 0 0 1px #007cba;
}

input:checked+.dlb-slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.dlb-slider.dlb-round {
    border-radius: 30px;
}

.dlb-slider.dlb-round:before {
    border-radius: 50%;
}

/**
 * Up & Down
 * 
 */
.dlb-grid-metabox-up, .dlb-grid-metabox-down {
    margin: 10px 5px;
    cursor: pointer;
    width: 20px;
    height: 20px;
    font: normal 20px/1 dashicons;
}

.dlb-grid-metabox-up:before {
    content: "\f343";
    color: inherit;
}

.dlb-grid-metabox-down:before {
    content: "\f347";
    color: inherit; 
}

/**
 * Copy to clipboard
 *
 */
.dlb-ctc-shortcode-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.dlb-ctc-shortcode-input {
    width: 300px;
    padding: 5px 8px !important;
    font-size: 14px;
}

.dlb-copy-to-clipboard {
    margin-left: 10px;
    width: 30px;
    height: 26px;
    position: relative;
    vertical-align: middle;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg fill='%23000000' height='800px' width='800px' version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 64 64' enable-background='new 0 0 64 64' xml:space='preserve'%3e%3cg id='Text-files'%3e%3cpath d='M53.9791489,9.1429005H50.010849c-0.0826988,0-0.1562004,0.0283995-0.2331009,0.0469999V5.0228 C49.7777481,2.253,47.4731483,0,44.6398468,0h-34.422596C7.3839517,0,5.0793519,2.253,5.0793519,5.0228v46.8432999 c0,2.7697983,2.3045998,5.0228004,5.1378999,5.0228004h6.0367002v2.2678986C16.253952,61.8274002,18.4702511,64,21.1954517,64 h32.783699c2.7252007,0,4.9414978-2.1725998,4.9414978-4.8432007V13.9861002 C58.9206467,11.3155003,56.7043495,9.1429005,53.9791489,9.1429005z M7.1110516,51.8661003V5.0228 c0-1.6487999,1.3938999-2.9909999,3.1062002-2.9909999h34.422596c1.7123032,0,3.1062012,1.3422,3.1062012,2.9909999v46.8432999 c0,1.6487999-1.393898,2.9911003-3.1062012,2.9911003h-34.422596C8.5049515,54.8572006,7.1110516,53.5149002,7.1110516,51.8661003z M56.8888474,59.1567993c0,1.550602-1.3055,2.8115005-2.9096985,2.8115005h-32.783699 c-1.6042004,0-2.9097996-1.2608986-2.9097996-2.8115005v-2.2678986h26.3541946 c2.8333015,0,5.1379013-2.2530022,5.1379013-5.0228004V11.1275997c0.0769005,0.0186005,0.1504021,0.0469999,0.2331009,0.0469999 h3.9682999c1.6041985,0,2.9096985,1.2609005,2.9096985,2.8115005V59.1567993z'/%3e%3cpath d='M38.6031494,13.2063999H16.253952c-0.5615005,0-1.0159006,0.4542999-1.0159006,1.0158005 c0,0.5615997,0.4544001,1.0158997,1.0159006,1.0158997h22.3491974c0.5615005,0,1.0158997-0.4542999,1.0158997-1.0158997 C39.6190491,13.6606998,39.16465,13.2063999,38.6031494,13.2063999z'/%3e%3cpath d='M38.6031494,21.3334007H16.253952c-0.5615005,0-1.0159006,0.4542999-1.0159006,1.0157986 c0,0.5615005,0.4544001,1.0159016,1.0159006,1.0159016h22.3491974c0.5615005,0,1.0158997-0.454401,1.0158997-1.0159016 C39.6190491,21.7877007,39.16465,21.3334007,38.6031494,21.3334007z'/%3e%3cpath d='M38.6031494,29.4603004H16.253952c-0.5615005,0-1.0159006,0.4543991-1.0159006,1.0158997 s0.4544001,1.0158997,1.0159006,1.0158997h22.3491974c0.5615005,0,1.0158997-0.4543991,1.0158997-1.0158997 S39.16465,29.4603004,38.6031494,29.4603004z'/%3e%3cpath d='M28.4444485,37.5872993H16.253952c-0.5615005,0-1.0159006,0.4543991-1.0159006,1.0158997 s0.4544001,1.0158997,1.0159006,1.0158997h12.1904964c0.5615025,0,1.0158005-0.4543991,1.0158005-1.0158997 S29.0059509,37.5872993,28.4444485,37.5872993z'/%3e%3c/g%3e%3c/svg%3e");
    cursor: pointer;
}