/* Minify_CSS_UriRewriter::$debugText

*/

/* modal-style.css */

/* 1   */ *,
/* 2   */ ::before,
/* 3   */ ::after {
/* 4   */   margin: 0;
/* 5   */   padding: 0;
/* 6   */   -webkit-box-sizing: border-box;
/* 7   */           box-sizing: border-box;
/* 8   */   scroll-behavior: smooth;
/* 9   */ }
/* 10  */
/* 11  */
/* 12  */ a {
/* 13  */   text-decoration: none;
/* 14  */ }
/* 15  */
/* 16  */ ul {
/* 17  */   list-style: none;
/* 18  */   margin: 0;
/* 19  */ }
/* 20  */ /*common css*/
/* 21  */
/* 22  */ .w-100{
/* 23  */   width: 100%;
/* 24  */ }
/* 25  */
/* 26  */
/* 27  */ /*common css*/
/* 28  */
/* 29  */
/* 30  */
/* 31  */
/* 32  */ .bwdmp-popup-btn-wrapper{
/* 33  */   display: flex;
/* 34  */   justify-content: center;
/* 35  */ }
/* 36  */
/* 37  */ /*modal button*/
/* 38  */ .bwdmp-popup-btn{
/* 39  */   display: inline-flex;
/* 40  */   align-self: center;
/* 41  */   appearance: none;
/* 42  */   background: transparent;
/* 43  */   border: 2px solid #3498db;
/* 44  */   border-radius: 0.6em;
/* 45  */   cursor: pointer;
/* 46  */   font-size: 1rem;
/* 47  */   font-weight: 400;
/* 48  */   line-height: 1;
/* 49  */   padding: 1.2em 2.8em;
/* 50  */   text-decoration: none;

/* modal-style.css */

/* 51  */   text-align: center;
/* 52  */   text-transform: uppercase;
/* 53  */   font-family: "Montserrat", sans-serif;
/* 54  */   font-weight: 700;
/* 55  */   box-shadow: 0 0 40px 40px #3498db inset, 0 0 0 0 #3498db;
/* 56  */   transition: all 150ms ease-in-out;
/* 57  */   color: #fff;
/* 58  */ }
/* 59  */
/* 60  */
/* 61  */ .bwdmp-popup-btn:hover {
/* 62  */   box-shadow: 0 0 10px 0 #3498db inset, 0 0 10px 4px #3498db;
/* 63  */   color: #228dd4;
/* 64  */ }
/* 65  */ /*modal button*/
/* 66  */
/* 67  */ /*modal box start*/
/* 68  */
/* 69  */
/* 70  */ .bwdmp-modal-wrapper .bwdmp-modal {
/* 71  */   display: flex;
/* 72  */   flex-direction: column;
/* 73  */   justify-content: space-between;
/* 74  */   position: fixed;
/* 75  */   background: yellowgreen;
/* 76  */   padding: 0;
/* 77  */   width: 700px;
/* 78  */   height: 500px;
/* 79  */   transform-origin: center;
/* 80  */   transform: translate(-50%, -50%);
/* 81  */   opacity: 0;
/* 82  */   visibility: hidden;
/* 83  */   top: 47%;
/* 84  */   left: 50%;
/* 85  */   z-index: 999;
/* 86  */   overflow-x: hidden;
/* 87  */   overflow-y: scroll;
/* 88  */ }
/* 89  */
/* 90  */ .bwdmp-modal-wrapper .bwdmp-modal.corner_box{
/* 91  */   top: 0;
/* 92  */   left: 0;
/* 93  */   transform: translate(0) !important;
/* 94  */ }
/* 95  */
/* 96  */ /* modal opening side */
/* 97  */ .bwdmp-modal-wrapper .bwdmp-modal.top_left{
/* 98  */   animation: popup-top-left .7s ease 0s 1;
/* 99  */ }
/* 100 */

/* modal-style.css */

/* 101 */ .bwdmp-modal-wrapper .bwdmp-modal.top_center{
/* 102 */   animation: popup-top-center .7s ease 0s 1;
/* 103 */ }
/* 104 */
/* 105 */ .bwdmp-modal-wrapper .bwdmp-modal.top_right{
/* 106 */   animation: popup-top-right .7s ease 0s 1;
/* 107 */ }
/* 108 */
/* 109 */ .bwdmp-modal-wrapper .bwdmp-modal.left{
/* 110 */   animation: popup-left .7s ease 0s 1;
/* 111 */ }
/* 112 */
/* 113 */ .bwdmp-modal-wrapper .bwdmp-modal.right{
/* 114 */   animation: popup-right .7s ease 0s 1;
/* 115 */ }
/* 116 */
/* 117 */ .bwdmp-modal-wrapper .bwdmp-modal.center{
/* 118 */   animation: popup-center .7s ease 0s 1;
/* 119 */ }
/* 120 */ .bwdmp-modal-wrapper .bwdmp-modal.bottom_left{
/* 121 */   animation: popup-bottom-left .7s ease 0s 1;
/* 122 */ }
/* 123 */ .bwdmp-modal-wrapper .bwdmp-modal.bottom_center{
/* 124 */   animation: popup-bottom-center .7s ease 0s 1;
/* 125 */ }
/* 126 */ .bwdmp-modal-wrapper .bwdmp-modal.bottom_right{
/* 127 */   animation: popup-bottom-right .7s ease 0s 1;
/* 128 */ }
/* 129 */
/* 130 */
/* 131 */
/* 132 */ @keyframes popup-top-left {
/* 133 */   0%{
/* 134 */     top: 0;
/* 135 */     left: 0;
/* 136 */   }
/* 137 */   100%{
/* 138 */     top: 47%;
/* 139 */     left: 50%;
/* 140 */   }
/* 141 */ }
/* 142 */ @keyframes popup-top-center {
/* 143 */   0%{
/* 144 */     top: 0;
/* 145 */     left: 50%;
/* 146 */   }
/* 147 */   100%{
/* 148 */     top: 47%;
/* 149 */     left: 50%;
/* 150 */   }

/* modal-style.css */

/* 151 */ }
/* 152 */ @keyframes popup-top-right {
/* 153 */   0%{
/* 154 */     top: 0;
/* 155 */     left: 100%;
/* 156 */   }
/* 157 */   100%{
/* 158 */     top: 47%;
/* 159 */     left: 50%;
/* 160 */   }
/* 161 */ }
/* 162 */ @keyframes popup-left {
/* 163 */   0%{
/* 164 */     top: 47%;
/* 165 */     left: 0;
/* 166 */   }
/* 167 */   100%{
/* 168 */     top: 47%;
/* 169 */     left: 50%;
/* 170 */   }
/* 171 */ }
/* 172 */ @keyframes popup-right {
/* 173 */   0%{
/* 174 */     top: 47%;
/* 175 */     left: 100%;
/* 176 */   }
/* 177 */   100%{
/* 178 */     top: 47%;
/* 179 */     left: 50%;
/* 180 */   }
/* 181 */ }
/* 182 */ @keyframes popup-center {
/* 183 */   0%{
/* 184 */     top: 47%;
/* 185 */     left: 50%;
/* 186 */     scale: 0;
/* 187 */   }
/* 188 */   100%{
/* 189 */     top: 47%;
/* 190 */     left: 50%;
/* 191 */     scale: 1;
/* 192 */   }
/* 193 */ }
/* 194 */ @keyframes popup-bottom-left {
/* 195 */   0%{
/* 196 */     top: 100%;
/* 197 */     left: 0%;
/* 198 */   }
/* 199 */   100%{
/* 200 */     top: 47%;

/* modal-style.css */

/* 201 */     left: 50%;
/* 202 */   }
/* 203 */ }
/* 204 */ @keyframes popup-bottom-center {
/* 205 */   0%{
/* 206 */     top: 100%;
/* 207 */     left: 50%;
/* 208 */   }
/* 209 */   100%{
/* 210 */     top: 47%;
/* 211 */     left: 50%;
/* 212 */   }
/* 213 */ }
/* 214 */ @keyframes popup-bottom-right {
/* 215 */   0%{
/* 216 */     top: 100%;
/* 217 */     left: 100%;
/* 218 */   }
/* 219 */   100%{
/* 220 */     top: 47%;
/* 221 */     left: 50%;
/* 222 */   }
/* 223 */ }
/* 224 */
/* 225 */ /*corner box animation*/
/* 226 */ .bwdmp-modal-wrapper .bwdmp-modal.corner_top_left{
/* 227 */   animation: corner-top-left .7s ease 0s 1;
/* 228 */ }
/* 229 */
/* 230 */ .bwdmp-modal-wrapper .bwdmp-modal.corner_top_right{
/* 231 */   animation: corner-top-right .7s ease 0s 1;
/* 232 */   left: auto;
/* 233 */   right: 0;
/* 234 */ }
/* 235 */
/* 236 */
/* 237 */
/* 238 */
/* 239 */ @keyframes corner-top-left {
/* 240 */   0%{
/* 241 */     top: -200px;
/* 242 */     left: -200px;
/* 243 */   }
/* 244 */   100%{
/* 245 */     top: 0;
/* 246 */     left: 0;
/* 247 */   }
/* 248 */ }
/* 249 */
/* 250 */ @keyframes corner-top-right {

/* modal-style.css */

/* 251 */   0%{
/* 252 */     top: -200px;
/* 253 */     right: -200px;
/* 254 */     left: auto;
/* 255 */   }
/* 256 */   100%{
/* 257 */     top: 0;
/* 258 */     right: 0;
/* 259 */     left: auto;
/* 260 */   }
/* 261 */ }
/* 262 */
/* 263 */
/* 264 */
/* 265 */
/* 266 */ /*corner box animation*/
/* 267 */ /* modal opening side */
/* 268 */
/* 269 */ /*modal popup after open*/
/* 270 */ .bwdmp-modal-wrapper .bwdmp-modal.bwdmp-active-modal{
/* 271 */   transform: translate(-50%, -50%);
/* 272 */   opacity: 1;
/* 273 */   visibility: visible;
/* 274 */ }
/* 275 */ /*modal popup after open*/
/* 276 */
/* 277 */
/* 278 */ @media only screen and (min-width: 576px) and (max-width: 767px) {
/* 279 */   .bwdmp-modal-wrapper .bwdmp-modal {
/* 280 */     max-width: 500px;
/* 281 */     flex-direction: column !important;
/* 282 */   }
/* 283 */ }
/* 284 */
/* 285 */ @media (max-width: 767px) {
/* 286 */   .bwdmp-modal-wrapper .bwdmp-modal {
/* 287 */     max-width: 330px;
/* 288 */     flex-direction: column !important;
/* 289 */   }
/* 290 */ }
/* 291 */
/* 292 */ @media (max-width: 350px) {
/* 293 */   .bwdmp-modal-wrapper .bwdmp-modal {
/* 294 */     max-width: 270px;
/* 295 */   }
/* 296 */ }
/* 297 */
/* 298 */ .bwdmp-modal-wrapper .bwdmp-modal .bwdmp-modal-header {
/* 299 */   padding: 15px 20px;
/* 300 */   width: 100%;

/* modal-style.css */

/* 301 */   background: #252525;
/* 302 */   line-height: 1.2;
/* 303 */   display: none;
/* 304 */ }
/* 305 */ .bwdmp-modal-wrapper .bwdmp-modal .bwdmp-modal-header.bwdmp-active-header{
/* 306 */   display: block;
/* 307 */ }
/* 308 */
/* 309 */ .bwdmp-modal-wrapper .bwdmp-modal .bwdmp-modal-header .bwdmp-header-modal-title {
/* 310 */   color: #fff;
/* 311 */   text-transform: capitalize;
/* 312 */   font-weight: 700;
/* 313 */   font-size: 27px;
/* 314 */ }
/* 315 */
/* 316 */ @media (max-width: 767px) {
/* 317 */   .bwdmp-modal-wrapper .bwdmp-modal .bwdmp-modal-header .bwdmp-header-modal-title {
/* 318 */     font-size: 25px;
/* 319 */   }
/* 320 */ }
/* 321 */
/* 322 */ .bwdmp-modal-wrapper .bwdmp-modal .bwdmp-modal-close-btn {
/* 323 */   position: absolute;
/* 324 */   inset-inline-end: 0;
/* 325 */   font-size: 25px;
/* 326 */   line-height: 1;
/* 327 */   border: 0;
/* 328 */   background: #b81313;
/* 329 */   color: white;
/* 330 */   height: 40px;
/* 331 */   width: 40px;
/* 332 */   line-height: 100%;
/* 333 */   border-radius: 50%;
/* 334 */   cursor: pointer;
/* 335 */   box-shadow: 8px 5px 30px #b81313ad, -8px -5px 30px #b81313ad;
/* 336 */   display: flex;
/* 337 */   justify-content: center;
/* 338 */   align-items: center;
/* 339 */   top: 0;
/* 340 */ }
/* 341 */
/* 342 */
/* 343 */ .bwdmp-modal-wrapper .bwdmp-modal .bwdmp-modal-body {
/* 344 */   display: flex;
/* 345 */   align-items: center;
/* 346 */   position: relative;
/* 347 */   padding: 30px;
/* 348 */   width: 100%;
/* 349 */ }
/* 350 */

/* modal-style.css */

/* 351 */ @media (max-width: 767px) {
/* 352 */   .bwdmp-modal-wrapper .bwdmp-modal .bwdmp-modal-body {
/* 353 */     flex-direction: column !important;
/* 354 */     padding: 15px;
/* 355 */   }
/* 356 */ }
/* 357 */
/* 358 */ .bwdmp-modal-wrapper .bwdmp-modal .bwdmp-modal-body .bwdmp-modal-img {
/* 359 */   overflow: hidden;
/* 360 */   border-radius: 5px;
/* 361 */   width: 50%;
/* 362 */   display: none;
/* 363 */ }
/* 364 */
/* 365 */ .bwdmp-modal-wrapper .bwdmp-modal .bwdmp-modal-body .bwdmp-modal-img.bwdmp-active-img{
/* 366 */   display: inline-block;
/* 367 */ }
/* 368 */
/* 369 */ .bwdmp-modal-wrapper .bwdmp-modal .bwdmp-modal-body .bwdmp-modal-img img {
/* 370 */   display: inline-block;
/* 371 */   object-fit: cover;
/* 372 */   max-width: 100%;
/* 373 */   width: auto;
/* 374 */
/* 375 */ }
/* 376 */
/* 377 */ .bwdmp-modal-wrapper .bwdmp-modal .bwdmp-modal-body .bwdmp-modal-content {
/* 378 */   margin-inline-start: 25px;
/* 379 */   width: 50%;
/* 380 */ }
/* 381 */
/* 382 */ .bwdmp-modal-wrapper .bwdmp-modal .bwdmp-modal-body .bwdmp-modal-content .bwdmp-modal-heading-title {
/* 383 */   font-size: 27px;
/* 384 */   text-transform: capitalize;
/* 385 */   font-weight: 700;
/* 386 */   line-height: 30px;
/* 387 */   margin: 20px 0;
/* 388 */   color: #393939;
/* 389 */ }
/* 390 */
/* 391 */ @media (max-width: 767px) {
/* 392 */   .bwdmp-modal-wrapper .bwdmp-modal .bwdmp-modal-body .bwdmp-modal-content .bwdmp-modal-heading-title {
/* 393 */     font-size: 25px;
/* 394 */     line-height: 1;
/* 395 */   }
/* 396 */ }
/* 397 */
/* 398 */ .bwdmp-modal-wrapper .bwdmp-modal .bwdmp-modal-body .bwdmp-modal-content .bwdmp-modal-desc {
/* 399 */   color: #393939;
/* 400 */ }

/* modal-style.css */

/* 401 */
/* 402 */ @media (max-width: 767px) {
/* 403 */   .bwdmp-modal-wrapper .bwdmp-modal .bwdmp-modal-body .bwdmp-modal-content .bwdmp-modal-desc {
/* 404 */     line-height: 24px;
/* 405 */   }
/* 406 */ }
/* 407 */
/* 408 */ @media (max-width: 767px) {
/* 409 */   .bwdmp-modal-wrapper .bwdmp-modal .bwdmp-modal-body .bwdmp-modal-content {
/* 410 */     margin-left: 0;
/* 411 */     width: 100%;
/* 412 */   }
/* 413 */ }
/* 414 */
/* 415 */ @media (max-width: 767px) {
/* 416 */   .bwdmp-modal-wrapper .bwdmp-modal .bwdmp-modal-body .bwdmp-modal-img {
/* 417 */     width: 100%;
/* 418 */   }
/* 419 */ }
/* 420 */
/* 421 */ .bwdmp-modal-wrapper .bwdmp-read-more-btn {
/* 422 */   display: inline-block;
/* 423 */   color: #fff;
/* 424 */   text-transform: capitalize;
/* 425 */   font-weight: 600;
/* 426 */   line-height: 1;
/* 427 */   padding: 12px 25px;
/* 428 */   background: #f76505;
/* 429 */   border-radius: 5px;
/* 430 */   transition: .2s;
/* 431 */   border: 0;
/* 432 */ }
/* 433 */
/* 434 */ .bwdmp-modal-wrapper .bwdmp-content-btn-wrapper{
/* 435 */   display: none;
/* 436 */ }
/* 437 */
/* 438 */ .bwdmp-modal-wrapper .bwdmp-content-btn-wrapper.active-modal-btn{
/* 439 */   display: block;
/* 440 */ }
/* 441 */
/* 442 */ .bwdmp-modal-wrapper .bwdmp-read-more-btn:hover{
/* 443 */   box-shadow: 0 5px 10px #f76505b8;
/* 444 */ }
/* 445 */
/* 446 */ .bwdmp-modal-wrapper .bwdmp-overlay{
/* 447 */   content: "";
/* 448 */   position: fixed;
/* 449 */   top: 0;
/* 450 */   left: 0;

/* modal-style.css */

/* 451 */   width: 100vw;
/* 452 */   height: 100vh;
/* 453 */   z-index: 99;
/* 454 */   background: rgba(0, 0, 0, 0.478);
/* 455 */   transform: scale(0);
/* 456 */   visibility: hidden;
/* 457 */   transition: .5s;
/* 458 */ }
/* 459 */
/* 460 */ .bwdmp-modal-wrapper.bwdmp-active-overlay .bwdmp-overlay{
/* 461 */   transform: scale(1);
/* 462 */   visibility: visible;
/* 463 */ }
/* 464 */
/* 465 */
/* 466 */ /*modal box end*/
/* 467 */ .bwdmp-shower-wrap{
/* 468 */   display: none !important;
/* 469 */ }
/* 470 */
/* 471 */ .bwdmp-popup-btn-wrapper .bwdmp-popup-icon {
/* 472 */   display: inline-flex;
/* 473 */   flex-direction: column;
/* 474 */   align-items: center;
/* 475 */   justify-content: space-between;
/* 476 */   height: 50px;
/* 477 */   width: 50px;
/* 478 */   padding: 15px 10px;
/* 479 */   background: #228dd4;
/* 480 */   color: #fff;
/* 481 */   border-radius: 50%;
/* 482 */   cursor: pointer;
/* 483 */ }
/* 484 */ .bwdmp-popup-btn-wrapper .bwdmp-popup-icon.bwdmp-popup-swr-custom {
/* 485 */   justify-content: center;
/* 486 */ }
/* 487 */
/* 488 */ .bwdmp-popup-btn-wrapper .bwdmp-popup-icon span {
/* 489 */   display: inline-block;
/* 490 */   height: 2px;
/* 491 */   width: 100%;
/* 492 */   background: #fff;
/* 493 */ }
/* 494 */
/* 495 */ .bwdmp-popup-btn-wrapper .bwdmp-popup-icon i {
/* 496 */  font-size: 22px;
/* 497 */ }
/* 498 */ /*modal slide animation start*/
/* 499 */
/* Minify_CSS_UriRewriter::$debugText

*/

/* style.css */

/* 1   */ .ctdb-topic {
/* 2   */   margin-bottom: 1.5em;
/* 3   */   overflow: hidden;
/* 4   */ }
/* 5   */ body.post-type-archive-discussion-topics
/* 6   */   article.discussion-topics
/* 7   */   .entry-footer {
/* 8   */   display: none;
/* 9   */ }
/* 10  */ /* Override Twenty Sixteen layout */
/* 11  */ @media screen and (min-width: 56.875em) {
/* 12  */   body.ctdb-twenty-sixteen.single-discussion-topics
/* 13  */     article.discussion-topics
/* 14  */     .entry-content,
/* 15  */   body.ctdb-twenty-sixteen.post-type-archive-discussion-topics
/* 16  */     article.discussion-topics
/* 17  */     .entry-content {
/* 18  */     float: none !important;
/* 19  */     margin-left: 0 !important;
/* 20  */     width: 100% !important;
/* 21  */   }
/* 22  */ }
/* 23  */ .et_divi_theme.single-discussion-topics ul.comment-list,
/* 24  */ .et_divi_theme.single-discussion-topics #left-area ul.comment-list,
/* 25  */ .single-discussion-topics ul.comment-list {
/* 26  */   list-style: none;
/* 27  */   padding-left: 0;
/* 28  */ }
/* 29  */ /*
/* 30  *| .ctdb-restricted-message,
/* 31  *| .ctdb-login-form-wrapper {
/* 32  *| 	display: none;
/* 33  *| }
/* 34  *| .ctdb-restricted-message:first-of-type,
/* 35  *| .ctdb-login-form-wrapper:nth-of-type(1) {
/* 36  *| 	display: block;
/* 37  *| }
/* 38  *| */
/* 39  */ .ctdb-restricted-message .ctdb-login-form-wrapper {
/* 40  */   display: block;
/* 41  */ }
/* 42  */ .ctdb-restricted-message ~ .ctdb-restricted-message,
/* 43  */ .ctdb-login-form-wrapper ~ .ctdb-login-form-wrapper {
/* 44  */   display: none;
/* 45  */ }
/* 46  */
/* 47  */ .ctdb-user-cannot-post .ctdb-new-topic-button {
/* 48  */   display: none;
/* 49  */ }
/* 50  */ .ctdb-admin-message {

/* style.css */

/* 51  */   border: 1px solid #ddd;
/* 52  */   background: #f1f1f1;
/* 53  */   padding: 1em;
/* 54  */   font-size: 80%;
/* 55  */ }
/* 56  */ .ctdb-information-bar {
/* 57  */   overflow: hidden;
/* 58  */   margin: 0 0 1.5em;
/* 59  */ }
/* 60  */ .ctdb-span-3 {
/* 61  */   float: left;
/* 62  */   box-sizing: border-box;
/* 63  */   padding: 0.25em 2% 0 0;
/* 64  */ }
/* 65  */ .ctdb-border-left {
/* 66  */   border-left: 1px solid #eee;
/* 67  */   padding-left: 2%;
/* 68  */ }
/* 69  */ .ctdb-span-3 .dashicons {
/* 70  */   margin: 2px 8px 0 0;
/* 71  */   vertical-align: inherit;
/* 72  */ }
/* 73  */ .ctdb-info-table .ctdb-information-bar {
/* 74  */   width: 100%;
/* 75  */   display: table;
/* 76  */   margin-bottom: 3em;
/* 77  */ }
/* 78  */ .ctdb-info-table .ctdb-info-bar-row {
/* 79  */   display: table-row;
/* 80  */ }
/* 81  */ .ctdb-info-table .ctdb-info-bar-row:nth-child(even) {
/* 82  */   background-color: #f9f9f9;
/* 83  */   border-top: 1px solid #f1f1f1;
/* 84  */ }
/* 85  */ .ctdb-info-table .ctdb-info-title,
/* 86  */ .ctdb-info-table .ctdb-info-meta-wrap {
/* 87  */   display: table-cell;
/* 88  */   vertical-align: middle;
/* 89  */   padding: 0.5em 1em;
/* 90  */ }
/* 91  */ .ctdb-info-table .ctdb-info-has-border:nth-of-type(2) .ctdb-info-title,
/* 92  */ .ctdb-info-table .ctdb-info-has-border:nth-of-type(2) .ctdb-info-meta-wrap {
/* 93  */   border-top: 1px solid #f1f1f1;
/* 94  */ }
/* 95  */ .ctdb-info-table .ctdb-info-has-border:nth-of-type(odd) .ctdb-info-title,
/* 96  */ .ctdb-info-table .ctdb-info-has-border:nth-of-type(odd) .ctdb-info-meta-wrap {
/* 97  */   border-top: 1px solid #f1f1f1;
/* 98  */   border-bottom: 1px solid #f1f1f1;
/* 99  */ }
/* 100 */ .ctdb-info-table .ctdb-info-has-border:last-child .ctdb-info-title,

/* style.css */

/* 101 */ .ctdb-info-table .ctdb-info-has-border:last-child .ctdb-info-meta-wrap {
/* 102 */   border-bottom: 1px solid #f1f1f1;
/* 103 */ }
/* 104 */ .ctdb-info-table .ctdb-info-has-border .ctdb-info-title {
/* 105 */   border-left: 1px solid #f1f1f1;
/* 106 */   border-right: 1px solid #f1f1f1;
/* 107 */ }
/* 108 */ .ctdb-info-table .ctdb-info-has-border .ctdb-info-meta-wrap {
/* 109 */   border-right: 1px solid #f1f1f1;
/* 110 */ }
/* 111 */ .ctdb-layout-standard .ctdb-info-avatar.ctdb-info-title {
/* 112 */   width: 10%;
/* 113 */   padding-right: 2%;
/* 114 */ }
/* 115 */ .ctdb-info-table .ctdb-info-meta-wrap .comment-metadata {
/* 116 */   margin-bottom: 0;
/* 117 */ }
/* 118 */ .ctdb-info-table .ctdb-follow-checkbox {
/* 119 */   margin-left: 1em;
/* 120 */ }
/* 121 */ .ctdb-info-author {
/* 122 */   font-weight: bold;
/* 123 */ }
/* 124 */ .ctdb-header {
/* 125 */   width: auto;
/* 126 */   float: left;
/* 127 */   clear: none;
/* 128 */   cursor: pointer;
/* 129 */   padding: 1em 2em;
/* 130 */   background-color: #f9f9f9;
/* 131 */   border: 1px solid #f9f9f9;
/* 132 */   border-bottom: none;
/* 133 */   color: #333;
/* 134 */   -webkit-transition: all 0.15s;
/* 135 */   -moz-transition: all 0.15s;
/* 136 */   transition: all 0.15s;
/* 137 */ }
/* 138 */ .ctdb-header:hover {
/* 139 */   background-color: #f1f1f1;
/* 140 */ }
/* 141 */ .ctdb-header.active-header {
/* 142 */   background-color: #fff;
/* 143 */   border: 1px solid #f1f1f1;
/* 144 */   border-bottom: none;
/* 145 */ }
/* 146 */ .ctdb-header h3.ctdb-h3 {
/* 147 */   margin: 0;
/* 148 */ }
/* 149 */ .ctdb-header .dashicons {
/* 150 */   vertical-align: inherit;

/* style.css */

/* 151 */   margin-right: 8px;
/* 152 */ }
/* 153 */ .ctdb-form-section {
/* 154 */   clear: left;
/* 155 */   display: none;
/* 156 */ }
/* 157 */ .no-js .ctdb-form-section {
/* 158 */   display: block;
/* 159 */ }
/* 160 */ .ctdb-form-section.active-section {
/* 161 */   display: block;
/* 162 */   padding: 1em 2em;
/* 163 */   border: 1px solid #f1f1f1;
/* 164 */ }
/* 165 */ .ctdb-form-section fieldset {
/* 166 */   border: 0;
/* 167 */ }
/* 168 */ .ctdb-form-section label {
/* 169 */   display: block;
/* 170 */ }
/* 171 */ .ctdb-form input.invalid {
/* 172 */   border: 1px solid red;
/* 173 */ }
/* 174 */ .ctdb-form input.valid {
/* 175 */   border: 1px solid green;
/* 176 */ }
/* 177 */ #new-topic input,
/* 178 */ #new-topic textarea {
/* 179 */   margin-bottom: 1.5em;
/* 180 */ }
/* 181 */ #new-topic input[type="text"],
/* 182 */ #new-topic textarea {
/* 183 */   width: 100%;
/* 184 */ }
/* 185 */ .ctdb-success,
/* 186 */ .ctdb-errors {
/* 187 */   padding: 1em;
/* 188 */   margin-bottom: 1.5em;
/* 189 */   background-color: #f9f9f9;
/* 190 */   border: 1px solid #f1f1f1;
/* 191 */ }
/* 192 */ ul.ctdb-pagination {
/* 193 */   list-style: none;
/* 194 */   margin: 1.5em 0;
/* 195 */ }
/* 196 */ body[class*="ctdb-divi"] #main-content .container ul.ctdb-pagination {
/* 197 */   list-style: none;
/* 198 */ }
/* 199 */ ul.ctdb-pagination li.prev {
/* 200 */   float: left;

/* style.css */

/* 201 */ }
/* 202 */ ul.ctdb-pagination li.next {
/* 203 */   float: right;
/* 204 */ }
/* 205 */ #topic_category,
/* 206 */ .ctdb_new_topic_select {
/* 207 */   margin-bottom: 1.5em;
/* 208 */ }
/* 209 */ ul.ctdb-categories {
/* 210 */   margin-bottom: 1.5em;
/* 211 */   list-style: none;
/* 212 */   clear: left;
/* 213 */ }
/* 214 */ ul.ctdb-categories li {
/* 215 */   float: left;
/* 216 */ }
/* 217 */ .ctdb-categories .dashicons,
/* 218 */ .ctdb-tags .dashicons {
/* 219 */   margin-right: 8px;
/* 220 */   vertical-align: inherit;
/* 221 */ }
/* 222 */ #ctdb-new-topic .wp-editor-container,
/* 223 */ .ctdb-comments-tinymce .wp-editor-container {
/* 224 */   border: 1px solid #ddd;
/* 225 */   margin-bottom: 1.5em;
/* 226 */ }
/* 227 */ #ctdb-new-topic .wp-editor-wrap button:hover {
/* 228 */   background: inherit;
/* 229 */ }
/* 230 */ #ctdb-new-topic .wp-editor-wrap button {
/* 231 */   text-transform: none;
/* 232 */ }
/* 233 */ ul.ctdb-categories:before,
/* 234 */ ul.ctdb-categories:after,
/* 235 */ .ctdb-profile-wrapper:before,
/* 236 */ .ctdb-profile-wrapper:after,
/* 237 */ ul.ctdb-widget-profile-list.with-gravatar li:before,
/* 238 */ ul.ctdb-widget-profile-list.with-gravatar li:after,
/* 239 */ .ctdb-pagination:before,
/* 240 */ .ctdb-pagination:after,
/* 241 */ .ctdb-comments-area li:before,
/* 242 */ .ctdb-comments-area li:after,
/* 243 */ .ctdb-comments-area article:before,
/* 244 */ .ctdb-comments-area article:after,
/* 245 */ .ctdb-comments-area li ul:before,
/* 246 */ .ctdb-comments-area li ul:after,
/* 247 */ .classic-topic-date:before,
/* 248 */ .classic-topic-date:after,
/* 249 */ .single-discussion-topics .entry-content:before,
/* 250 */ .single-discussion-topics .entry-content:after {

/* style.css */

/* 251 */   content: "";
/* 252 */   display: table;
/* 253 */ }
/* 254 */ .ctdb-profile-wrapper:after,
/* 255 */ ul.ctdb-categories:after,
/* 256 */ ul.ctdb-widget-profile-list.with-gravatar li:after,
/* 257 */ .ctdb-pagination:after,
/* 258 */ .ctdb-comments-area li:after,
/* 259 */ .ctdb-comments-area article:after,
/* 260 */ .ctdb-comments-area li ul:after,
/* 261 */ .classic-topic-date:after,
/* 262 */ .single-discussion-topics .entry-content:after {
/* 263 */   clear: both;
/* 264 */ }
/* 265 */
/* 266 */ ul.ctdb-topic-table-row {
/* 267 */   list-style: none;
/* 268 */   padding: 0;
/* 269 */   margin: 0;
/* 270 */   display: table-row;
/* 271 */ }
/* 272 */ .ctdb-topic-table-header,
/* 273 */ .ctdb-topic-table-body {
/* 274 */   display: table;
/* 275 */   width: 100%;
/* 276 */ }
/* 277 */ .ctdb-topic-table-header {
/* 278 */   font-weight: bold;
/* 279 */ }
/* 280 */ ul.ctdb-topic-table-row li {
/* 281 */   padding: 10px 0;
/* 282 */   display: table-cell;
/* 283 */   float: none;
/* 284 */   vertical-align: middle;
/* 285 */   border-bottom: 1px solid #f1f1f1;
/* 286 */ }
/* 287 */ ul.ctdb-topic-table-row li {
/* 288 */   vertical-align: baseline;
/* 289 */ }
/* 290 */ li.ctdb-topic-table-avatar {
/* 291 */   width: 10%;
/* 292 */ }
/* 293 */ li.ctdb-topic-table-title,
/* 294 */ li.ctdb-topic-table-topic,
/* 295 */ li.ctdb-topic-table-board {
/* 296 */   width: 45%;
/* 297 */ }
/* 298 */ .ctdb-topic-table-col-6 li.ctdb-topic-table-title,
/* 299 */ .ctdb-topic-table-col-6 li.ctdb-topic-table-topic,
/* 300 */ .ctdb-topic-table-col-7 li.ctdb-topic-table-title,

/* style.css */

/* 301 */ .ctdb-topic-table-col-7 li.ctdb-topic-table-topic,
/* 302 */ .ctdb-topic-table-col-6 li.ctdb-topic-table-board,
/* 303 */ .ctdb-topic-table-col-7 li.ctdb-topic-table-board {
/* 304 */   width: 40%;
/* 305 */ }
/* 306 */ li.ctdb-topic-table-title p,
/* 307 */ li.ctdb-topic-table-topic p,
/* 308 */ li.ctdb-topic-table-board p {
/* 309 */   margin-bottom: 3px;
/* 310 */ }
/* 311 */ li.ctdb-topic-table-title a,
/* 312 */ li.ctdb-topic-table-topic a,
/* 313 */ li.ctdb-topic-table-board a {
/* 314 */   text-decoration: none;
/* 315 */   box-shadow: none;
/* 316 */ }
/* 317 */ span.ctdb-topic-table-posted-by {
/* 318 */   font-size: 85%;
/* 319 */ }
/* 320 */ li.ctdb-topic-table-replies,
/* 321 */ li.ctdb-topic-table-date,
/* 322 */ li.ctdb-topic-table-started,
/* 323 */ li.ctdb-topic-table-freshness,
/* 324 */ li.ctdb-topic-table-voices,
/* 325 */ li.ctdb-topic-table-status li.ctdb-topic-table-freshness,
/* 326 */ li.ctdb-topic-table-topics {
/* 327 */   width: 15%;
/* 328 */   text-align: center;
/* 329 */ }
/* 330 */ .ctdb-topic-table-col-6 li.ctdb-topic-table-replies,
/* 331 */ .ctdb-topic-table-col-6 li.ctdb-topic-table-date,
/* 332 */ .ctdb-topic-table-col-6 li.ctdb-topic-table-started,
/* 333 */ .ctdb-topic-table-col-6 li.ctdb-topic-table-freshness,
/* 334 */ .ctdb-topic-table-col-6 li.ctdb-topic-table-voices,
/* 335 */ .ctdb-topic-table-col-6 li.ctdb-topic-table-status,
/* 336 */ .ctdb-topic-table-col-7 li.ctdb-topic-table-replies,
/* 337 */ .ctdb-topic-table-col-7 li.ctdb-topic-table-date,
/* 338 */ .ctdb-topic-table-col-7 li.ctdb-topic-table-started,
/* 339 */ .ctdb-topic-table-col-7 li.ctdb-topic-table-freshness,
/* 340 */ .ctdb-topic-table-col-7 li.ctdb-topic-table-voices,
/* 341 */ .ctdb-topic-table-col-7 li.ctdb-topic-table-status {
/* 342 */   width: 10%;
/* 343 */   padding: 10px;
/* 344 */ }
/* 345 */ .ctdb-topic-mobile-metafields {
/* 346 */   display: none;
/* 347 */ }
/* 348 */ /* Mobile layout for topics */
/* 349 */ @media screen and (max-width: 767px) {
/* 350 */   .ctdb-topic-mobile-metafields {

/* style.css */

/* 351 */     display: block;
/* 352 */     font-size: 85%;
/* 353 */     opacity: 0.7;
/* 354 */   }
/* 355 */   .ctdb-topic-mobile-metafields div {
/* 356 */     display: inline-block;
/* 357 */   }
/* 358 */   .ctdb-topic-mobile-metafields div:after {
/* 359 */     content: "|";
/* 360 */     margin: 0 4px;
/* 361 */   }
/* 362 */   .ctdb-topic-mobile-metafields div:last-child:after {
/* 363 */     content: "";
/* 364 */     margin: 0;
/* 365 */   }
/* 366 */   ul.ctdb-topic-table-row li.ctdb-topic-table-replies,
/* 367 */   ul.ctdb-topic-table-row li.ctdb-topic-table-date,
/* 368 */   ul.ctdb-topic-table-row li.ctdb-topic-table-started,
/* 369 */   ul.ctdb-topic-table-row li.ctdb-topic-table-freshness,
/* 370 */   ul.ctdb-topic-table-row li.ctdb-topic-table-voices,
/* 371 */   ul.ctdb-topic-table-row li.ctdb-topic-table-status {
/* 372 */     display: none;
/* 373 */   }
/* 374 */   .ctdb-horizontal-meta {
/* 375 */     display: block;
/* 376 */   }
/* 377 */   .ctdb-single-layout-classic div[class*="ctdb-field-cols-"] .ctdb-info-cell {
/* 378 */     width: 50%;
/* 379 */     order: 2;
/* 380 */   }
/* 381 */ }
/* 382 */ p.ctdb-optout-box {
/* 383 */   font-weight: bold;
/* 384 */ }
/* 385 */ .timeago {
/* 386 */   display: block;
/* 387 */ }
/* 388 */ .ctdb-topic-mobile-metafields .timeago {
/* 389 */   display: inline-block;
/* 390 */ }
/* 391 */ .timeago:first-letter {
/* 392 */   text-transform: uppercase;
/* 393 */ }
/* 394 */ /* Classic Forum Archive */
/* 395 */ .ctdb-single-layout-classic ul.ctdb-topic-table,
/* 396 */ .ctdb-archive-layout-classic ul.ctdb-topic-table {
/* 397 */   border: 1px solid #f1f1f1;
/* 398 */   margin: 0;
/* 399 */   padding: 0;
/* 400 */ }

/* style.css */

/* 401 */ .ctdb-single-layout-classic .ctdb-topic-table-header,
/* 402 */ .ctdb-archive-layout-classic .ctdb-topic-table-header {
/* 403 */   background: #f9f9f9;
/* 404 */ }
/* 405 */ .ctdb-single-layout-classic .ctdb-topic-table-avatar,
/* 406 */ .ctdb-archive-layout-classic .ctdb-topic-table-avatar {
/* 407 */   text-align: center;
/* 408 */ }
/* 409 */ .ctdb-topic-table-avatar img {
/* 410 */   width: 48px;
/* 411 */ }
/* 412 */ /* SKINS */
/* 413 */ .ctdb-comments-area .comment-list {
/* 414 */   list-style: none;
/* 415 */   margin: 0;
/* 416 */   padding: 0;
/* 417 */ }
/* 418 */ .ctdb-comments-area .comment-list article {
/* 419 */   border: none;
/* 420 */   padding: 0;
/* 421 */   margin-bottom: 3.5em;
/* 422 */ }
/* 423 */ .ctdb-comments-area .comment-header {
/* 424 */   padding: 1em;
/* 425 */   border: 1px solid #d1d1d1;
/* 426 */   margin-bottom: 1.5em;
/* 427 */   position: relative;
/* 428 */ }
/* 429 */ .ctdb-comments-area .comment-meta {
/* 430 */   width: 100px;
/* 431 */   float: left;
/* 432 */   text-align: center;
/* 433 */   margin-right: 20px;
/* 434 */ }
/* 435 */ .ctdb-comments-area .comment-metadata {
/* 436 */   font-size: 80%;
/* 437 */   margin: 0;
/* 438 */ }
/* 439 */ .ctdb-comments-area .comment-author .avatar {
/* 440 */   height: auto;
/* 441 */   position: relative;
/* 442 */   margin: 0.25em auto;
/* 443 */   width: 80px;
/* 444 */   left: 0;
/* 445 */   display: block;
/* 446 */   float: none;
/* 447 */ }
/* 448 */ .ctdb-comments-area .comment-author a.url {
/* 449 */   display: block;
/* 450 */   clear: left;

/* style.css */

/* 451 */ }
/* 452 */ .ctdb-comments-area .comment-content {
/* 453 */   width: 80%;
/* 454 */   width: calc(100% - 120px);
/* 455 */   float: right;
/* 456 */ }
/* 457 */ /*
/* 458 *| .ctdb-reply .comment-reply-link,
/* 459 *| .ctdb-edit-link {
/* 460 *|     border: 1px solid #d1d1d1;
/* 461 *|     border-radius: 2px;
/* 462 *|     display: inline-block;
/* 463 *|     font-size: 13px;
/* 464 *|     line-height: 1;
/* 465 *|     margin-top: 1.5em;
/* 466 *|     padding: 7px 7px 6px;
/* 467 *| 	font-family: inherit;
/* 468 *| }*/
/* 469 */ .ctdb-comments-area a.comment-reply-link,
/* 470 */ .ctdb-edit-link a.comment-edit-link {
/* 471 */   text-decoration: none;
/* 472 */   box-shadow: none;
/* 473 */ }
/* 474 */ .ctdb-single-layout-classic .ctdb-edit-link,
/* 475 */ .ctdb-archive-layout-classic .ctdb-edit-link {
/* 476 */   position: absolute;
/* 477 */   right: 1em;
/* 478 */   top: 50%;
/* 479 */   -webkit-transform: translateY(-50%);
/* 480 */   transform: translateY(-50%);
/* 481 */   font-size: 80%;
/* 482 */ }
/* 483 */ /* Topic meta */
/* 484 */ .ctdb-horizontal-meta {
/* 485 */   display: -webkit-flex;
/* 486 */   display: flex;
/* 487 */   -webkit-flex-wrap: wrap;
/* 488 */   flex-wrap: wrap;
/* 489 */   /*-webkit-align-items: center;
/* 490 *| 	align-items: center;*/
/* 491 */   text-align: center;
/* 492 */   margin-bottom: 2em;
/* 493 */   border: 1px solid #d1d1d1;
/* 494 */ }
/* 495 */ .ctdb-horizontal-meta.ctdb-author-data {
/* 496 */   border: none;
/* 497 */   background: transparent;
/* 498 */ }
/* 499 */ .ctdb-single-layout-classic .ctdb-horizontal-meta.ctdb-author-data,
/* 500 */ .ctdb-archive-layout-classic .ctdb-horizontal-meta.ctdb-author-data {

/* style.css */

/* 501 */   display: block;
/* 502 */   width: 100px;
/* 503 */   float: left;
/* 504 */ }
/* 505 */ .ctdb-info-cell {
/* 506 */   box-sizing: border-box;
/* 507 */   width: 50%;
/* 508 */   display: inline-block;
/* 509 */   text-align: left;
/* 510 */   overflow: hidden;
/* 511 */   font-weight: normal;
/* 512 */   background: #f9f9f9;
/* 513 */   padding: 0.5em 1em;
/* 514 */ }
/* 515 */ .ctdb-info-avatar {
/* 516 */   text-align: center;
/* 517 */ }
/* 518 */ .ctdb-single-layout-classic .ctdb-info-avatar.ctdb-info-cell,
/* 519 */ .ctdb-archive-layout-classic .ctdb-info-avatar.ctdb-info-cell {
/* 520 */   padding: 0;
/* 521 */   width: 80px;
/* 522 */   margin: 0 auto;
/* 523 */ }
/* 524 */ .ctdb-author-data .ctdb-info-cell {
/* 525 */   width: 100%;
/* 526 */   border: none !important;
/* 527 */ }
/* 528 */ .ctdb-horizontal-meta.ctdb-author-data .ctdb-info-cell,
/* 529 */ .ctdb-horizontal-meta.ctdb-author-data .ctdb-info-cell.ctdb-info-title {
/* 530 */   border: none;
/* 531 */   background: transparent;
/* 532 */ }
/* 533 */ .ctdb-info-author {
/* 534 */   word-wrap: normal;
/* 535 */ }
/* 536 */
/* 537 */ @supports (display: -webkit-flex) or (display: flex) {
/* 538 */   .ctdb-layout-table .ctdb-horizontal-meta.ctdb-author-data {
/* 539 */     -webkit-align-items: center;
/* 540 */     align-items: center;
/* 541 */   }
/* 542 */   .ctdb-info-cell {
/* 543 */     box-sizing: border-box;
/* 544 */     -webkit-flex-grow: 1;
/* 545 */     flex-grow: 1;
/* 546 */     width: 50%;
/* 547 */     float: none;
/* 548 */     text-align: center;
/* 549 */     border-top: 1px solid #f1f1f1;
/* 550 */     border-left: 1px solid #f1f1f1;

/* style.css */

/* 551 */   }
/* 552 */   .ctdb-layout-table .ctdb-info-cell {
/* 553 */     text-align: left;
/* 554 */     -webkit-flex-shrink: 1;
/* 555 */     flex-shrink: 1;
/* 556 */   }
/* 557 */   .ctdb-layout-table .ctdb-info-cell.ctdb-info-title {
/* 558 */     -webkit-flex-shrink: 0;
/* 559 */     flex-shrink: 0;
/* 560 */   }
/* 561 */   .ctdb-single-layout-classic .ctdb-field-cols-1 .ctdb-info-cell,
/* 562 */   .ctdb-archive-layout-classic .ctdb-field-cols-1 .ctdb-info-cell {
/* 563 */     width: 100%;
/* 564 */   }
/* 565 */   .ctdb-single-layout-classic .ctdb-field-cols-2 .ctdb-info-cell,
/* 566 */   .ctdb-archive-layout-classic .ctdb-field-cols-2 .ctdb-info-cell {
/* 567 */     width: 50%;
/* 568 */   }
/* 569 */   .ctdb-single-layout-classic .ctdb-field-cols-3 .ctdb-info-cell,
/* 570 */   .ctdb-archive-layout-classic .ctdb-field-cols-3 .ctdb-info-cell {
/* 571 */     width: 33.333333%;
/* 572 */   }
/* 573 */   .ctdb-single-layout-classic .ctdb-field-cols-4 .ctdb-info-cell,
/* 574 */   .ctdb-archive-layout-classic .ctdb-field-cols-4 .ctdb-info-cell {
/* 575 */     width: 25%;
/* 576 */   }
/* 577 */   .ctdb-single-layout-classic .ctdb-field-cols-5 .ctdb-info-cell,
/* 578 */   .ctdb-archive-layout-classic .ctdb-field-cols-5 .ctdb-info-cell {
/* 579 */     width: 20%;
/* 580 */   }
/* 581 */   .ctdb-single-layout-classic .ctdb-field-cols-6 .ctdb-info-cell,
/* 582 */   .ctdb-archive-layout-classic .ctdb-field-cols-6 .ctdb-info-cell {
/* 583 */     width: 16.666667%;
/* 584 */   }
/* 585 */   .ctdb-single-layout-classic .ctdb-info-cell.ctdb-info-title,
/* 586 */   .ctdb-archive-layout-classic .ctdb-info-cell.ctdb-info-title {
/* 587 */     border-top: none;
/* 588 */     background: transparent;
/* 589 */   }
/* 590 */   .ctdb-single-layout-classic .ctdb-info-cell:nth-child(-n + 2),
/* 591 */   .ctdb-archive-layout-classic .ctdb-info-cell:nth-child(-n + 2) {
/* 592 */     border-left: none !important;
/* 593 */   }
/* 594 */   .ctdb-single-layout-classic .ctdb-info-cell.ctdb-info-title,
/* 595 */   .ctdb-archive-layout-classic .ctdb-info-cell.ctdb-info-title {
/* 596 */     order: 1;
/* 597 */   }
/* 598 */   .ctdb-single-layout-classic .ctdb-info-cell,
/* 599 */   .ctdb-archive-layout-classic .ctdb-info-cell {
/* 600 */     order: 2;

/* style.css */

/* 601 */   }
/* 602 */   .ctdb-layout-table .ctdb-info-cell.ctdb-info-title {
/* 603 */     border-left: 1px solid #d1d1d1;
/* 604 */   }
/* 605 */   .ctdb-layout-table .ctdb-info-cell:nth-child(-n + 2) {
/* 606 */     border-top: none;
/* 607 */   }
/* 608 */   .ctdb-layout-table .ctdb-info-title:nth-child(even) {
/* 609 */     background: transparent;
/* 610 */   }
/* 611 */ }
/* 612 */ .ctdb-info-cell.ctdb-info-title {
/* 613 */   font-weight: bold;
/* 614 */ }
/* 615 */ .classic-topic-date {
/* 616 */   padding: 1em;
/* 617 */   border: 1px solid #d1d1d1;
/* 618 */   margin-bottom: 1.5em;
/* 619 */   font-size: 80%;
/* 620 */ }
/* 621 */ .ctdb-info-cell .dashicons {
/* 622 */   margin: 4px 8px 0 0;
/* 623 */ }
/* 624 */ .ctdb-info-meta.comment-metadata {
/* 625 */   margin: 0;
/* 626 */ }
/* 627 */ .ctdb-content-wrap {
/* 628 */   width: 80%;
/* 629 */   width: calc(100% - 120px);
/* 630 */   float: right;
/* 631 */ }
/* 632 */ @media screen and (min-width: 992px) {
/* 633 */   .ctdb-layout-table .ctdb-info-cell {
/* 634 */     -webkit-flex-basis: 80%;
/* 635 */     flex-basis: 80%;
/* 636 */   }
/* 637 */   .ctdb-layout-table .ctdb-info-cell.ctdb-info-title {
/* 638 */     -webkit-flex-basis: 20%;
/* 639 */     flex-basis: 20%;
/* 640 */   }
/* 641 */ }
/* 642 */
/* 643 */ .ctdb-single-layout-classic .ctdb-no-topics-message,
/* 644 */ .ctdb-archive-layout-classic .ctdb-no-topics-message {
/* 645 */   padding: 1em;
/* 646 */   border: 1px solid #f1f1f1;
/* 647 */   margin-bottom: 1.5em;
/* 648 */ }
/* 649 */ .ctdb-single-layout-classic .ctdb-no-topics-message.ctdb-board-no-topics,
/* 650 */ .ctdb-archive-layout-classic .ctdb-no-topics-message.ctdb-board-no-topics {

/* style.css */

/* 651 */   margin-bottom: 0;
/* 652 */ }
/* 653 */
/* 654 */ /* Simple Comment Editing */
/* 655 */ .sce-comment-text {
/* 656 */   width: 100%;
/* 657 */   margin: 1.5em 0;
/* 658 */ }
/* 659 */ .sce-comment-edit-buttons button {
/* 660 */   margin-right: 0.5em;
/* 661 */ }
/* 662 */ .sce-edit-button,
/* 663 */ .sce-timer {
/* 664 */   margin: 1.5em 0;
/* 665 */ }
/* 666 */
/* 667 */ ul.ctdb-topic-table li:before,
/* 668 */ ul.ctdb-pagination li:before {
/* 669 */   content: none;
/* 670 */ }
/* 671 */
/* 672 */ /* New topic form toggle content */
/* 673 */ .ctdb-toggle-header {
/* 674 */   display: block;
/* 675 */   margin-bottom: 1em;
/* 676 */ }
/* 677 */
