'; print_r($compare); -echo ''; +echo ''; \ No newline at end of file diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..22d84ec --- /dev/null +++ b/composer.json @@ -0,0 +1,16 @@ +{ + "name": "nick/mautic-whitelabeler", + "authors": [ + { + "name": "Nick Thompson", + "email": "nick@nick.do" + } + ], + "require": { + "chrisjean/php-ico": "^1.0", + "components/font-awesome": "4.7.0" + }, + "config": { + "COMPOSER_ALLOW_SUPERUSER" : 1 + } +} \ No newline at end of file diff --git a/images/favicon.ico b/images/favicon.ico old mode 100755 new mode 100644 diff --git a/images/login_logo.png b/images/login.png similarity index 100% rename from images/login_logo.png rename to images/login.png diff --git a/images/logo.png b/images/sidebar.png similarity index 100% rename from images/logo.png rename to images/sidebar.png diff --git a/index.php b/index.php old mode 100755 new mode 100644 index e88f39d..e9ffc68 --- a/index.php +++ b/index.php @@ -4,74 +4,249 @@ $whitelabeler = new Whitelabeler; if (isset($_GET['q'])) { - /* - |-------------------------------------------------------------------------- - | Find Mautic version by path - |-------------------------------------------------------------------------- - */ - +/* +|-------------------------------------------------------------------------- +| Determine Mautic version by path +|-------------------------------------------------------------------------- +*/ if ( $_GET['q'] == 'version' ) { - if ( isset($_GET['path']) ) { - if ( substr($_GET['path'], -1) == '/' ) { - $path = substr($_GET['path'], 0, -1); - } else { - $path = $_GET['path']; - } - if (file_exists($path.'/app/version.txt')) { - $file = fopen($path.'/app/version.txt', 'r') or die('Unable to open file!'); - $version = trim(fread($file , filesize($path.'/app/version.txt'))); - if (strpos($version, '-dev') !== false) { - $version = explode('-', $version); - $version = $version[0]; - } - echo $whitelabeler->templateVersions($version); - } else { - echo 0; - } - exit(); - } + header('Content-Type: application/json'); - /* - |-------------------------------------------------------------------------- - | Find Mautic by URL (look for package.json to verify this is Mautic root) - |-------------------------------------------------------------------------- - */ + if ( isset($_GET['path']) && is_dir($_GET['path']) ) { - } elseif ( $_GET['q'] == 'url' && isset($_GET['url']) ) { - $url = urldecode($_GET['url']); - if ( substr($url, -1) == '/' ) { - $url = substr($url, 0, -1); - } + echo json_encode( + $whitelabeler->mauticVersion($_GET['path']) + ); - $curl = curl_init(); - curl_setopt_array($curl, array( - CURLOPT_URL => $url.'/LICENSE.txt', - CURLOPT_HEADER => true, - CURLOPT_RETURNTRANSFER => true, - CURLOPT_NOBODY => true - )); - $headers = explode(' ', curl_exec($curl)); - curl_close($curl); - - if ( $headers[1] != 200) { - echo 0; } else { - $license = substr(file_get_contents($url.'/LICENSE.txt'), 0, 6); - if ($license == 'Mautic') { - echo 1; - } else { - echo 0; - } + + echo json_encode(array( + 'status' => 0, + 'message' => 'Directory does not exist.' + )); + } + exit(); - /* - |-------------------------------------------------------------------------- - | Clear Cache - |-------------------------------------------------------------------------- - */ +/* +|-------------------------------------------------------------------------- +| Find Mautic by URL (look for LICENSE.txt to verify this is Mautic root) +|-------------------------------------------------------------------------- +*/ + } elseif ( $_GET['q'] == 'url' && isset($_GET['url']) ) { + header('Content-Type: application/json'); + + echo json_encode( + $whitelabeler->findMauticUrl($_GET['url']) + ); + + exit(); + + +/* +|-------------------------------------------------------------------------- +| Check for image in assets +|-------------------------------------------------------------------------- +*/ + } elseif ( $_GET['q'] == 'asset' && isset($_GET['url']) ) { + echo $whitelabeler->assetExists(urldecode($_GET['url'])); + exit(); + + +/* +|-------------------------------------------------------------------------- +| Save Images +|-------------------------------------------------------------------------- +*/ + } elseif ( $_GET['q'] == 'save-images' && $_SERVER['REQUEST_METHOD'] == 'POST' ) { + + require_once('vendor/chrisjean/php-ico/class-php-ico.php'); + + $errors = array(); + $result = array(); + + // sidebar logo + if ( isset($_FILES['sidebar_logo_file']) ) { + + if ( + $_FILES['sidebar_logo_file']['type'] == 'image/png' || + $_FILES['sidebar_logo_file']['type'] == 'image/jpg' || + $_FILES['sidebar_logo_file']['type'] == 'image/jpeg' || + $_FILES['sidebar_logo_file']['type'] == 'image/gif' + ) { + + $whitelabeler->imageResize( + $_POST['sidebar_logo_width'], + $_FILES['sidebar_logo_file']['tmp_name'], + __DIR__.'/assets/'.$_FILES['sidebar_logo_file']['name'] + ); + + if ( !file_exists(__DIR__.'/assets/'.$_FILES['sidebar_logo_file']['name']) ) { + $errors[] = 'Error uploading sidebar logo file '.$_FILES['sidebar_logo_file']['name']; + } else { + $result['images']['sidebar_logo'] = $_FILES['sidebar_logo_file']['name']; + } + + } else { + $errors[] = 'Invalid file type provided for sidebar logo.'; + } + + } + + // login logo + if ( isset($_FILES['login_logo_file']) ) { + + if ( + $_FILES['login_logo_file']['type'] == 'image/png' || + $_FILES['login_logo_file']['type'] == 'image/jpg' || + $_FILES['login_logo_file']['type'] == 'image/jpeg' || + $_FILES['login_logo_file']['type'] == 'image/gif' + ) { + + $whitelabeler->imageResize( + $_POST['login_logo_width'], + $_FILES['login_logo_file']['tmp_name'], + __DIR__.'/assets/'.$_FILES['login_logo_file']['name'] + ); + + if ( !file_exists(__DIR__.'/assets/'.$_FILES['login_logo_file']['name']) ) { + $errors[] = 'Error uploading login logo file '.$_FILES['login_logo_file']['name']; + } else { + $result['images']['login_logo'] = $_FILES['login_logo_file']['name']; + } + + // If favicon file is not set, we'll use the login logo + if ( !isset($_FILES['favicon_file']) ) { + + $logo_filename_explode = explode('.', $_FILES['login_logo_file']['name']); + $ico_lib = new PHP_ICO($_FILES['login_logo_file']['tmp_name'], array( array( 64, 64 ) ) ); + $ico_lib->save_ico(__DIR__.'/assets/favicon-'.$logo_filename_explode[0].'.ico'); + + if ( !file_exists(__DIR__.'/assets/favicon-'.$logo_filename_explode[0].'.ico') ) { + $errors[] = 'Error using login logo file for favicon.'; + } else { + $result['images']['favicon_files'] = 'favicon-'.$logo_filename_explode[0].'.ico'; + } + } + + } else { + $errors[] = 'Invalid file type provided for login logo.'; + } + + } + + // favicon + if ( isset($_FILES['favicon_file']) ) { + + if ( + $_FILES['favicon_file']['type'] == 'image/png' || + $_FILES['favicon_file']['type'] == 'image/x-icon' || + $_FILES['favicon_file']['type'] == 'image/vnd.microsoft.icon' || + $_FILES['favicon_file']['type'] == 'image/jpg' || + $_FILES['favicon_file']['type'] == 'image/jpeg' || + $_FILES['favicon_file']['type'] == 'image/gif' + ) { + + // If favicon is .ico, move/copy the file + if ($_FILES['favicon_file']['type'] == 'image/vnd.microsoft.icon' || $_FILES['favicon_file']['type'] == 'image/x-icon') { + + move_uploaded_file($_FILES['favicon_file']['tmp_name'], __DIR__.'/assets/'.$_FILES['favicon_file']['name']); + + if ( !file_exists(__DIR__.'/assets/'.$_FILES['favicon_file']['name']) ) { + $errors[] = 'Error using login logo file for favicon.'; + } else { + $result['images']['favicon'] = $_FILES['favicon_file']['name']; + } + + // convert to .ico and save. + } else { + + $logo_filename_explode = explode('.', $_FILES['favicon_file']['name']); + + $ico_lib = new PHP_ICO($_FILES['favicon_file']['tmp_name'], array( array( 64, 64 ) ) ); + $ico_lib->save_ico(__DIR__.'/assets/'.$logo_filename_explode[0].'.ico'); + + if ( !file_exists(__DIR__.'/assets/'.$logo_filename_explode[0].'.ico') ) { + $errors[] = 'Error using login logo file for favicon.'; + } else { + $result['images']['favicon'] = $logo_filename_explode[0].'.ico'; + } + + } + + } else { + $errors[] = 'Invalid file type provided for favicon.'; + } + + } + + header('Content-Type: application/json'); + if ( !empty($errors) ) { + echo json_encode( array('status' => 0, 'message' => $errors) ); + } else { + echo json_encode( array('status' => 1, 'message' => $result) ); + } + + exit(); + +/* +|-------------------------------------------------------------------------- +| Save values entered +|-------------------------------------------------------------------------- +*/ + } elseif ( $_GET['q'] == 'save' && $_SERVER['REQUEST_METHOD'] == 'POST' ) { + //Encode the array into a JSON string. + $encodedString = json_encode($_POST['config'], JSON_PRETTY_PRINT); + //Save to JSON file in assets. + if (file_put_contents(__DIR__.'/assets/config.json', $encodedString)) { + header('Content-Type: application/json'); + echo json_encode( array('status' => 1, 'message' => 'Config values saved.') ); + }; + exit(); + +/* +|-------------------------------------------------------------------------- +| Look for saved values and files to populate form automatically +|-------------------------------------------------------------------------- +*/ + } elseif ( $_GET['q'] == 'saved' ) { + + $config = $whitelabeler->loadJsonConfig(); + + if ( $config ) { + header('Content-Type: application/json'); + echo json_encode(array('status' => 1, 'message' => 'config.json file found.', 'data' => $config)); + } else { + header('Content-Type: application/json'); + echo json_encode(array('status' => 0, 'message' => 'config.json not found in assets folder.')); + } + + exit(); + + +/* +|-------------------------------------------------------------------------- +| Reset saved values +|-------------------------------------------------------------------------- +*/ + } elseif ( $_GET['q'] == 'reset' && $_SERVER['REQUEST_METHOD'] == 'POST' ) { + //Encode the array into a JSON string. + $encodedString = json_encode($_POST['config'], JSON_PRETTY_PRINT); + //Save to JSON file in assets. + if (file_put_contents(__DIR__.'/assets/config.json', $encodedString)) { + echo json_encode( array('status' => 1, 'message' => 'Config values saved.') ); + }; + exit(); + + +/* +|-------------------------------------------------------------------------- +| Regenerate Assets / Clear Cache +|-------------------------------------------------------------------------- +*/ } elseif ( $_GET['q'] == 'assets' && isset($_GET['assets']) && isset($_GET['path']) ) { if ( substr($_GET['path'], -1) == '/' ) { $path = substr($_GET['path'], 0, -1); @@ -79,20 +254,21 @@ if (isset($_GET['q'])) { $path = $_GET['path']; } if ( $_GET['assets'] == 'clear' ) { - echo $whitelabeler->clearMauticCache($path); + print_r($whitelabeler->clearMauticCache($path)); } else if ( $_GET['assets'] == 'regenerate' ) { - echo $whitelabeler->rebuildAssets($path); + print_r($whitelabeler->rebuildAssets($path)); } exit(); - /* - |-------------------------------------------------------------------------- - | POST Logos - |-------------------------------------------------------------------------- - */ - +/* +|-------------------------------------------------------------------------- +| POST Logos +|-------------------------------------------------------------------------- +*/ } elseif ( $_GET['q'] == 'logos' ) { + if ( isset($_POST['mautic_path']) && isset($_POST['mautic_url']) ) { + if ( substr($_POST['mautic_path'], -1) == '/' ) { $path = substr($_POST['mautic_path'], 0, -1); } else { @@ -103,60 +279,108 @@ if (isset($_GET['q'])) { } else { $url = $_POST['mautic_url']; } + $errors = array(); - if (!isset($_FILES['sidebar_logo'])) { $errors[] = 'Couldn\'t find file for the sidebar logo.'; } - if (!isset($_FILES['login_logo'])) { $errors[] = 'Couldn\'t find file for the login logo.'; } + + if ( !isset($_FILES['sidebar_logo_file']) && !isset($_POST['sidebar_logo_file']) ) { + $errors[] = 'Couldn\'t find file for the sidebar logo.'; + } + + if ( !isset($_FILES['login_logo_file']) && !isset($_POST['sidebar_logo_file']) ) { + $errors[] = 'Couldn\'t find file for the login logo.'; + } + if (empty($errors)) { - // Use login logo as favicon - if ( isset($_FILES['sidebar_logo']) && isset($_FILES['login_logo']) && !isset($_FILES['favicon']) ) { - $favicon = $_FILES['login_logo']; - // Separate favicon file - } elseif ( isset($_FILES['sidebar_logo']) && isset($_FILES['login_logo']) && isset($_FILES['favicon']) ) { - $favicon = $_FILES['favicon']; + + // Use saved sidebar logo + if ( !isset($_FILES['sidebar_logo_file']) && isset($_POST['sidebar_logo_file']) ) { + $sidebar_logo = __DIR__.'/assets/'.$_POST['sidebar_logo_file']; + // Use uploaded sidebar logo + } elseif ( isset($_FILES['sidebar_logo_file']) ) { + $sidebar_logo = $_FILES['sidebar_logo_file']['tmp_name']; } - $whitelabeler->replaceImages( + + // Use saved login logo + if ( !isset($_FILES['login_logo_file']) && isset($_POST['login_logo_file']) ) { + $login_logo = __DIR__.'/assets/'.$_POST['login_logo_file']; + // Use uploaded login logo + } elseif ( isset($_FILES['login_logo_file']) ) { + $login_logo = $_FILES['login_logo_file']['tmp_name']; + } + + // Use saved favicon + if ( !isset($_FILES['favicon_file']) && isset($_POST['favicon_file']) && $_POST['favicon_file'] != 'null' ) { + $favicon = __DIR__.'/assets/'.$_POST['favicon_file']; + // Use uploaded favicon + } elseif ( isset($_FILES['favicon_file']) ) { + $favicon = $_FILES['favicon_file']['tmp_name']; + // Nothing is set -- we'll use the login logo as the favicon + } else { + $favicon = false; + } + + $logos = $whitelabeler->replaceImages( $path, $url, $_POST['version'], - $_FILES['sidebar_logo'], + $sidebar_logo, $_POST['sidebar_logo_width'], array( - 'top' => $_POST['sidebar_margin_top'], - 'right' => $_POST['sidebar_margin_right'], - 'left' => $_POST['sidebar_margin_left'] + 'top' => $_POST['sidebar_logo_margin_top'], + 'right' => $_POST['sidebar_logo_margin_right'], + 'left' => $_POST['sidebar_logo_margin_left'] ), - $_FILES['login_logo'], + $login_logo, $_POST['login_logo_width'], array( - 'top' => $_POST['login_margin_top'], - 'bottom' => $_POST['login_margin_bottom'] + 'top' => $_POST['login_logo_margin_top'], + 'bottom' => $_POST['login_logo_margin_bottom'] ), $favicon ); + + header('Content-Type: application/json'); + echo json_encode($logos); + } else { - foreach($errors as $error) { - echo $error.PHP_EOL; - } + header('Content-Type: application/json'); + echo json_encode(array( + 'status' => 0, + 'message' => $errors + )); } exit(); } else { - echo 'Path or URL not set.'; + header('Content-Type: application/json'); + echo json_encode(array( + 'status' => 0, + 'message' => 'Path or URL not set.' + )); exit(); } - /* - |-------------------------------------------------------------------------- - | POST CSS Colors - |-------------------------------------------------------------------------- - */ - +/* +|-------------------------------------------------------------------------- +| POST CSS Colors +|-------------------------------------------------------------------------- +*/ } elseif ( $_GET['q'] == 'css' && $_SERVER['REQUEST_METHOD'] == 'POST' ) { + if ( - !empty($_POST['path']) && - !empty($_POST['version']) && - !empty($_POST['sidebar_background']) && - !empty($_POST['mautic_primary']) && - !empty($_POST['mautic_hover']) + isset($_POST['path']) && + isset($_POST['version']) && + isset($_POST['logo_bg']) && + isset($_POST['primary']) && + isset($_POST['hover']) && + isset($_POST['sidebar_bg']) && + isset($_POST['sidebar_submenu_bg']) && + isset($_POST['sidebar_link']) && + isset($_POST['sidebar_link_hover']) && + isset($_POST['active_icon']) && + isset($_POST['divider_left']) && + isset($_POST['sidebar_divider']) && + isset($_POST['submenu_bullet_bg']) && + isset($_POST['submenu_bullet_shadow']) ) { if ( substr($_POST['path'], -1) == '/' ) { $path = substr($_POST['path'], 0, -1); @@ -166,22 +390,34 @@ if (isset($_GET['q'])) { $colors = $whitelabeler->colors( $path, $_POST['version'], - $_POST['sidebar_background'], - $_POST['mautic_primary'], - $_POST['mautic_hover'] + $_POST['logo_bg'], + $_POST['primary'], + $_POST['hover'], + $_POST['sidebar_bg'], + $_POST['sidebar_submenu_bg'], + $_POST['sidebar_link'], + $_POST['sidebar_link_hover'], + $_POST['active_icon'], + $_POST['divider_left'], + $_POST['sidebar_divider'], + $_POST['submenu_bullet_bg'], + $_POST['submenu_bullet_shadow'] ); - echo $colors; + + header('Content-Type: application/json'); + echo json_encode($colors); + } else { - echo 'Missing CSS color field'; + header('Content-Type: application/json'); + echo array(0, 'Missing CSS color field values.'); } exit(); - /* - |-------------------------------------------------------------------------- - | POST Company Name - |-------------------------------------------------------------------------- - */ - +/* +|-------------------------------------------------------------------------- +| POST Company Name +|-------------------------------------------------------------------------- +*/ } elseif ( $_GET['q'] == 'companyname' && $_SERVER['REQUEST_METHOD'] == 'POST') { if ( substr($_POST['path'], -1) == '/' ) { $path = substr($_POST['path'], 0, -1); @@ -193,7 +429,8 @@ if (isset($_GET['q'])) { $_POST['version'], $_POST['company_name'] ); - echo $company_name; + header('Content-Type: application/json'); + echo json_encode($company_name); exit(); } } diff --git a/lib/ascii/title.txt b/lib/ascii/title.txt new file mode 100644 index 0000000..86c316d --- /dev/null +++ b/lib/ascii/title.txt @@ -0,0 +1,10 @@ + __ _ + ____ ___ ____ ___ __/ /_(_)____ + / __ `__ \/ __ `/ / / / __/ / ___/ + / / / / / / /_/ / /_/ / /_/ / /__ + /_/ /_/ /_/\__,_/\__,_/\__/_/\___/ + __ _ __ __ __ __ + _ __/ /_ (_) /____ / /___ _/ /_ ___ / /__ _____ +| | /| / / __ \/ / __/ _ \/ / __ `/ __ \/ _ \/ / _ \/ ___/ +| |/ |/ / / / / / /_/ __/ / /_/ / /_/ / __/ / __/ / +|__/|__/_/ /_/_/\__/\___/_/\__,_/_.___/\___/_/\___/_/ \ No newline at end of file diff --git a/lib/bootstrap.min.css b/lib/bootstrap.min.css index ed3905e..73bd8ae 100644 --- a/lib/bootstrap.min.css +++ b/lib/bootstrap.min.css @@ -3,4 +3,3 @@ * Copyright 2011-2016 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0;font-size:2em}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid silver}legend{padding:0;border:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,:after,:before{color:#000!important;text-shadow:none!important;background:0 0!important;-webkit-box-shadow:none!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-eur:before,.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before{content:"\e227"}.glyphicon-btc:before{content:"\e227"}.glyphicon-xbt:before{content:"\e227"}.glyphicon-yen:before{content:"\00a5"}.glyphicon-jpy:before{content:"\00a5"}.glyphicon-ruble:before{content:"\20bd"}.glyphicon-rub:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:focus,a:hover{color:#23527c;text-decoration:underline}a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{display:inline-block;max-width:100%;height:auto;padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}.small,small{font-size:85%}.mark,mark{padding:.2em;background-color:#fcf8e3}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:focus,a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:focus,a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:focus,a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:focus,a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ol,ul{margin-top:0;margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;margin-left:-5px;list-style:none}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:20px}dd,dt{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote .small:before,blockquote footer:before,blockquote small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:''}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{margin-right:-15px;margin-left:-15px}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*=col-]{position:static;display:table-column;float:none}table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none}.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=checkbox],input[type=radio]{margin:4px 0 0;margin-top:1px\9;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=file]:focus,input[type=checkbox]:focus,input[type=radio]:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{background-color:transparent;border:0}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=time].form-control,input[type=datetime-local].form-control,input[type=month].form-control{line-height:34px}.input-group-sm input[type=date],.input-group-sm input[type=time],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:30px}.input-group-lg input[type=date],.input-group-lg input[type=time],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-top:4px\9;margin-left:-20px}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline{cursor:not-allowed}.checkbox.disabled label,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .radio label{cursor:not-allowed}.form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success .form-control-feedback{color:#3c763d}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;opacity:.65}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.focus,.btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#255625}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:400;color:#337ab7;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid\9;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown,.dropup{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px dashed;border-bottom:4px solid\9}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-right:0;padding-left:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#337ab7}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1)}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;height:50px;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1)}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px}}@media (min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{color:#555;background-color:#e7e7e7}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{color:#fff;background-color:#080808}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{padding-right:15px;padding-left:15px;border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-right:60px;padding-left:60px}.jumbotron .h1,.jumbotron h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail a>img,.thumbnail>img{margin-right:auto;margin-left:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#337ab7}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{overflow:hidden;zoom:1}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{color:#777;cursor:not-allowed;background-color:#eee}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#c7ddef}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-right:15px;padding-left:15px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table-responsive:last-child>.table:last-child,.panel>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%)}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;filter:alpha(opacity=0);opacity:0;line-break:auto}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);line-break:auto}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{content:"";border-width:10px}.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right>.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner>.item.active.right,.carousel-inner>.item.next{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{left:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);background-color:rgba(0,0,0,0);filter:alpha(opacity=50);opacity:.5}.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);background-repeat:repeat-x}.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);background-repeat:repeat-x}.carousel-control:focus,.carousel-control:hover{color:#fff;text-decoration:none;filter:alpha(opacity=90);outline:0;opacity:.9}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;font-family:serif;line-height:1}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000\9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{display:table;content:" "}.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.modal-header:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-lg,.visible-md,.visible-sm,.visible-xs{display:none!important}.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}}@media (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}}@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}} -/*# sourceMappingURL=bootstrap.min.css.map */ \ No newline at end of file diff --git a/lib/spectrum/.gitignore b/lib/spectrum/.gitignore old mode 100755 new mode 100644 diff --git a/lib/spectrum/.travis.yml b/lib/spectrum/.travis.yml old mode 100755 new mode 100644 diff --git a/lib/spectrum/Gruntfile.js b/lib/spectrum/Gruntfile.js old mode 100755 new mode 100644 diff --git a/lib/spectrum/LICENSE b/lib/spectrum/LICENSE old mode 100755 new mode 100644 diff --git a/lib/spectrum/README.md b/lib/spectrum/README.md old mode 100755 new mode 100644 diff --git a/lib/spectrum/bower.json b/lib/spectrum/bower.json old mode 100755 new mode 100644 diff --git a/lib/spectrum/build/.gitignore b/lib/spectrum/build/.gitignore old mode 100755 new mode 100644 diff --git a/lib/spectrum/docs/bootstrap.css b/lib/spectrum/docs/bootstrap.css old mode 100755 new mode 100644 diff --git a/lib/spectrum/docs/docs.css b/lib/spectrum/docs/docs.css old mode 100755 new mode 100644 diff --git a/lib/spectrum/docs/docs.js b/lib/spectrum/docs/docs.js old mode 100755 new mode 100644 diff --git a/lib/spectrum/docs/jquery-1.9.1.js b/lib/spectrum/docs/jquery-1.9.1.js old mode 100755 new mode 100644 diff --git a/lib/spectrum/docs/jquery-2.1.0.js b/lib/spectrum/docs/jquery-2.1.0.js old mode 100755 new mode 100644 diff --git a/lib/spectrum/docs/prettify.js b/lib/spectrum/docs/prettify.js old mode 100755 new mode 100644 diff --git a/lib/spectrum/docs/toc.js b/lib/spectrum/docs/toc.js old mode 100755 new mode 100644 diff --git a/lib/spectrum/example/example.js b/lib/spectrum/example/example.js old mode 100755 new mode 100644 diff --git a/lib/spectrum/example/index.html b/lib/spectrum/example/index.html old mode 100755 new mode 100644 diff --git a/lib/spectrum/example/testcase.html b/lib/spectrum/example/testcase.html old mode 100755 new mode 100644 diff --git a/lib/spectrum/i18n/jquery.spectrum-ar.js b/lib/spectrum/i18n/jquery.spectrum-ar.js old mode 100755 new mode 100644 diff --git a/lib/spectrum/i18n/jquery.spectrum-de.js b/lib/spectrum/i18n/jquery.spectrum-de.js old mode 100755 new mode 100644 diff --git a/lib/spectrum/i18n/jquery.spectrum-dk.js b/lib/spectrum/i18n/jquery.spectrum-dk.js old mode 100755 new mode 100644 diff --git a/lib/spectrum/i18n/jquery.spectrum-es.js b/lib/spectrum/i18n/jquery.spectrum-es.js old mode 100755 new mode 100644 diff --git a/lib/spectrum/i18n/jquery.spectrum-fa.js b/lib/spectrum/i18n/jquery.spectrum-fa.js old mode 100755 new mode 100644 diff --git a/lib/spectrum/i18n/jquery.spectrum-fi.js b/lib/spectrum/i18n/jquery.spectrum-fi.js old mode 100755 new mode 100644 diff --git a/lib/spectrum/i18n/jquery.spectrum-fr.js b/lib/spectrum/i18n/jquery.spectrum-fr.js old mode 100755 new mode 100644 diff --git a/lib/spectrum/i18n/jquery.spectrum-gr.js b/lib/spectrum/i18n/jquery.spectrum-gr.js old mode 100755 new mode 100644 diff --git a/lib/spectrum/i18n/jquery.spectrum-he.js b/lib/spectrum/i18n/jquery.spectrum-he.js old mode 100755 new mode 100644 diff --git a/lib/spectrum/i18n/jquery.spectrum-hr.js b/lib/spectrum/i18n/jquery.spectrum-hr.js old mode 100755 new mode 100644 diff --git a/lib/spectrum/i18n/jquery.spectrum-id.js b/lib/spectrum/i18n/jquery.spectrum-id.js old mode 100755 new mode 100644 diff --git a/lib/spectrum/i18n/jquery.spectrum-it.js b/lib/spectrum/i18n/jquery.spectrum-it.js old mode 100755 new mode 100644 diff --git a/lib/spectrum/i18n/jquery.spectrum-ja.js b/lib/spectrum/i18n/jquery.spectrum-ja.js old mode 100755 new mode 100644 diff --git a/lib/spectrum/i18n/jquery.spectrum-lt.js b/lib/spectrum/i18n/jquery.spectrum-lt.js old mode 100755 new mode 100644 diff --git a/lib/spectrum/i18n/jquery.spectrum-nl.js b/lib/spectrum/i18n/jquery.spectrum-nl.js old mode 100755 new mode 100644 diff --git a/lib/spectrum/i18n/jquery.spectrum-pl.js b/lib/spectrum/i18n/jquery.spectrum-pl.js old mode 100755 new mode 100644 diff --git a/lib/spectrum/i18n/jquery.spectrum-pt-br.js b/lib/spectrum/i18n/jquery.spectrum-pt-br.js old mode 100755 new mode 100644 diff --git a/lib/spectrum/i18n/jquery.spectrum-ru.js b/lib/spectrum/i18n/jquery.spectrum-ru.js old mode 100755 new mode 100644 diff --git a/lib/spectrum/i18n/jquery.spectrum-sv.js b/lib/spectrum/i18n/jquery.spectrum-sv.js old mode 100755 new mode 100644 diff --git a/lib/spectrum/i18n/jquery.spectrum-tr.js b/lib/spectrum/i18n/jquery.spectrum-tr.js old mode 100755 new mode 100644 diff --git a/lib/spectrum/i18n/jquery.spectrum-zh-cn.js b/lib/spectrum/i18n/jquery.spectrum-zh-cn.js old mode 100755 new mode 100644 diff --git a/lib/spectrum/i18n/jquery.spectrum-zh-tw.js b/lib/spectrum/i18n/jquery.spectrum-zh-tw.js old mode 100755 new mode 100644 diff --git a/lib/spectrum/index.html b/lib/spectrum/index.html old mode 100755 new mode 100644 diff --git a/lib/spectrum/package.json b/lib/spectrum/package.json old mode 100755 new mode 100644 diff --git a/lib/spectrum/spectrum.css b/lib/spectrum/spectrum.css old mode 100755 new mode 100644 diff --git a/lib/spectrum/spectrum.js b/lib/spectrum/spectrum.js old mode 100755 new mode 100644 diff --git a/lib/spectrum/test/index.html b/lib/spectrum/test/index.html old mode 100755 new mode 100644 diff --git a/lib/spectrum/test/loaders.html b/lib/spectrum/test/loaders.html old mode 100755 new mode 100644 diff --git a/lib/spectrum/test/loaders.js b/lib/spectrum/test/loaders.js old mode 100755 new mode 100644 diff --git a/lib/spectrum/test/qunit.css b/lib/spectrum/test/qunit.css old mode 100755 new mode 100644 diff --git a/lib/spectrum/test/qunit.js b/lib/spectrum/test/qunit.js old mode 100755 new mode 100644 diff --git a/lib/spectrum/test/require.js b/lib/spectrum/test/require.js old mode 100755 new mode 100644 diff --git a/lib/spectrum/test/tests.js b/lib/spectrum/test/tests.js old mode 100755 new mode 100644 diff --git a/lib/spectrum/themes/index.html b/lib/spectrum/themes/index.html old mode 100755 new mode 100644 diff --git a/lib/spectrum/themes/sp-dark.css b/lib/spectrum/themes/sp-dark.css old mode 100755 new mode 100644 diff --git a/lib/style.css b/lib/style.css index afdfcec..5514fff 100644 --- a/lib/style.css +++ b/lib/style.css @@ -3,10 +3,157 @@ body { font-family:'Open Sans', Helvetica, Arial, sans-serif; } -div.whitelabeler { +.sidebar-container { + display: block; + width: 230px; +} + +.sidebar { + position: fixed; + top:60px; + bottom:0; + height:100%; + left:0; + width:230px; + background:#1d232b; + font-family: "Open Sans",Helvetica,Arial,sans-serif; + box-sizing: border-box; +} + +.sidebar a { + float:left; + position:relative; + width:100%; + background:#1d232b; + padding: 12px 20px; + box-sizing: border-box; + font-size:13px; + color: #9e9e9e; + text-decoration:none; +} + +.sidebar a .arrow::after { + content: "\f0d7"; +} + +.sidebar a .arrow { + transition: opacity 0.3s ease 0.1s, margin-left 0s ease 0.2s; + opacity: 1; + margin-left: 0; + font-family: 'FontAwesome'; + position: absolute; + top: 12px; + display: block; + right: 19px; +} + +.sidebar a:hover { + color: #fff; +} + +.sidebar a::after { + content: ''; + position: absolute; + right: 0; + left: 50px; + bottom: 0; + border-bottom: 1px solid #202830; +} + +.sidebar a .icon { + font-weight: normal; + font-size: 14px; + min-width: 26px; + display: block; +} + +.sidebar span.nav-item-name { + margin-left: 0; + position: relative; + top: -1px; + display: block; +} + +.nav-submenu { float:left; width:100%; - margin-top:100px; + background-color: #171c22; + position: relative; + padding: 5px 0 5px 50px; + margin:0; + list-style-type: none; + box-sizing: border-box; +} + +.nav-submenu li.nav-group { + float:left; + width:100%; + position: relative; +} + +.sidebar li .nav-submenu .nav-group:after { + content: ''; + position: absolute; + z-index: 2; + top: 10px; + left: -27px; + width: 7px; + height: 7px; + border-radius: 7px; + background-color: #222a32; + box-shadow: 0 0 0 2px #1a2026; +} + +.nav-submenu li a { + background:none; + padding: 5px 20px 5px 0px; +} + +.nav-submenu li a::after { + border:0; +} + +.nav-submenu:after { + content: ''; + position: absolute; + top: 0; + bottom: 0; + left: 26px; + z-index: 1; + width: 1px; +} + +.nav-submenu:after { + background-color: #212831; +} + +li.menu-item { + float:left; + width:100%; + padding:0; + margin:0; + list-style-type: none; +} + +li.group:after { + content: ''; + position: absolute; + right: 0; + left: 50px; + bottom: 0; +} + +.sidebar span.active-icon { + color: #fdb933; +} + +div.whitelabeler { + + float: left; + width: 1030px; + margin-top: 90px; + position: relative; + left: 230px; } div#header { @@ -80,6 +227,7 @@ div.container { label { margin:0; + line-height: 1.2; } small { color: #a2a2a2; @@ -93,6 +241,7 @@ div#options { border: 1px solid #ebedf0; -webkit-box-shadow: 0px 1px 1px #f3f3f3; box-shadow: 0px 1px 1px #f3f3f3; + padding-bottom: 100px; } div#console { @@ -240,7 +389,7 @@ button.btn-default { border-color:#4e5d9d; color:#fff; font-size:1.5em; - padding:0.5em 3em; + padding:0.5em 1.5em; } button.btn-default:hover { background-color: #3d497b; @@ -248,6 +397,7 @@ button.btn-default:hover { color:#fff; } small.path-fail, small.url-fail { + word-break: break-word; display: none; color:red; } @@ -304,8 +454,7 @@ small.path-success, small.url-success { } div#overlay { - display: none; - z-index: 999; + z-index: 9999; position: fixed; top:0; right:0; @@ -314,6 +463,26 @@ div#overlay { background:rgba(0, 0, 0, 0.75); } +div#overlay i { + color: #FFF; + font-size: 72px; + position: absolute; + top: 335px; + width: 100%; + text-align: center; +} + +div#overlay span { + width: 100%; + text-align: center; + color: #FFF; + position: absolute; + top: 420px; + font-size: 21px; + letter-spacing: 5px; + font-weight: 300; +} + small { color:#000; } @@ -324,7 +493,7 @@ div#basic { margin:10px 0; } -div#colors, div#sidebarlogo, div#loginlogo, div#favicon { +div#basic, div#colors, div#sidebarcolors, div#sidebarlogo, div#loginlogo, div#favicon { float:left; width:100%; padding:10px 20px; @@ -334,7 +503,6 @@ div#colors, div#sidebarlogo, div#loginlogo, div#favicon { border-radius: 4px; } - .col-md-3 { padding:0 5px; } @@ -402,3 +570,161 @@ a#forgot { } } } + +.affix { + position: fixed !important; + width: 100% !important; +} + +button.btn-default:hover, button#login_button:hover { + background: #3d497b; + border-color: #3d497b; +} + +.form-control:focus { + border-color: #ccc; + box-shadow: none; +} + +.input-group-addon { + min-width: 45px; +} + +li.support { + border: 1px solid #4e5d9d; + margin-top: 10px; + box-shadow: 0 0 30px inset #4e5d9d; + padding: 10px; + width: 90%; + margin-left: 11px; + position: absolute; + bottom: 72px; + display: none; + border-radius: 5px; +} + +.support h1 { + color: #fdb933; + margin: 15px; + font-size: 13px; + font-weight: bold; + margin-bottom:0; +} + +.support p { + color: #929dab; + margin: 15px; + margin-top:8px; + margin-bottom: 5px; + font-size: 12px; + line-height: 1.3; + +} + +.sidebar a.btn-support { + background-color: #4e5d9d; + border:0px !important; + color: #fff !important; + float: none !important; + font-weight:bold; + width: 90% !important; + margin:5px 10px 10px 10px !important; +} + +.sidebar a.btn-support::after { + border-bottom: 0px !important; +} + +.sidebar a.btn-support:hover { + background-color: #3d497b !important; + color: #fff; +} + +#actions .btn { + font-size: 15px !important; + margin: 0 5px; +} + +#notification { + display: block; + margin-top:20px; + text-align: center; +} + +#notification p { + display:none; +} + +#notification p.success { + color: #1db91d; +} + +#notification p.fail { + color: red; +} + +button#reload { + display: none; +} + +div#sidebar-logo-loaded { + position: relative; + display: none; +} + +div#login-logo-loaded { + position: relative; + display: none; +} + +div#favicon-loaded { + position: relative; + display: none; +} + +div#sidebar-logo-loaded p, div#login-logo-loaded p, div#favicon-loaded p { + display: block; + border: 1px solid #e2e1e4; + border-radius: 4px; + padding: 10px; +} + +div#sidebar-logo-loaded a, div#login-logo-loaded a, div#favicon-loaded a { + position: absolute; + right: 12px; + top: 6px; + color: red; + font-size: 20px; +} + +div#sidebar-logo-loaded span, div#login-logo-loaded span, div#favicon-loaded span { + padding-right: 30px; +} + +.sidebar-logo-error, .login-logo-error, .favicon-error { + color: red; + display: none; +} + +.field-container { + position: relative; +} + +#url-loading, #path-loading { + display: none; + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + background: #9c9c9c; + background: rgba(156, 156, 156, 0.7); +} + +#url-loading i, #path-loading i { + color: white; + font-size: 28px; + position: absolute; + top: 3px; + left: 45.5%; +} diff --git a/lib/whitelabeler.js b/lib/whitelabeler.js index 29bdcd7..f451981 100644 --- a/lib/whitelabeler.js +++ b/lib/whitelabeler.js @@ -1,291 +1,1028 @@ - -var validPath = false; -var validDomain = false; +if (window.location.href.substr(-1,1) == '/') { + var mautic_url = window.location.href.substr(0,window.location.href.length-1); +} else { + var mautic_url = window.location.href; +} +var wl = mautic_url.split('/')[mautic_url.split('/').length-1]; +var mautic_url = mautic_url.replace(wl, ''); +var company_name = 'Mautic'; +var mautic_primary = '#4e5d9d'; +var mautic_hover = '#3d497b'; +var logo_bg = '#4e5d9d'; +var sidebar_bg = '#1d232b'; +var sidebar_submenu_bg = '#171c22'; +var sidebar_link = '#9e9e9e'; +var sidebar_link_hover = '#ffffff'; +var active_icon = '#fdb933'; +var sidebar_divider = '#202830'; +var submenu_bullet_bg = '#222a32'; +var submenu_bullet_shadow = '#1a2026'; +var divider_left = 50; +var sidebar_logo = null; +var sidebar_logo_width = 130; +var sidebar_logo_margin_top = 10; +var sidebar_logo_margin_left = 0; +var sidebar_logo_margin_right = 0; +var sidebar_logo_margin_left = 0; +var login_logo_width = 150; +var login_logo_margin_top = 20; +var login_logo_margin_bottom = 20; +var login_logo = null; +var favicon = null; /* |-------------------------------------------------------------------------- -| Initialize color dropdowns +| Update Functions |-------------------------------------------------------------------------- */ -$("input.sidebar_background").spectrum({ - preferredFormat: "hex", - showInput: true, - color: sidebar_background, - showButtons: false -}); -$("input.mautic_primary").spectrum({ - preferredFormat: "hex", - showInput: true, - color: mautic_primary, - showButtons: false -}); - -$("input.mautic_hover").spectrum({ - preferredFormat: "hex", - showInput: true, - color: mautic_hover, - showButtons: false -}); - -/* -|-------------------------------------------------------------------------- -| Color dropdown events -|-------------------------------------------------------------------------- -*/ -$("input.sidebar_background").on('move.spectrum change.spectrum', function(e, tinycolor) { - $('div#logo').css('background', tinycolor.toHexString()); - sidebar_background = tinycolor.toHexString(); -}); - -$("input.mautic_primary").on('move.spectrum change.spectrum', function(e, tinycolor) { - $('.panel-heading, button.btn-default, button#login_button').css({ - 'background-color': tinycolor.toHexString(), - 'border-color': tinycolor.toHexString() +// mautic_primary +function updateMauticPrimary(color) { + mautic_primary = color; + $('.panel-heading, button.btn-default, button#login_button').css({ + 'background-color': mautic_primary, + 'border-color': mautic_primary }); - $('.panel-primary').css('border-color', tinycolor.toHexString()); - $('a.mautic-link, a#forgot').css('color', tinycolor.toHexString()); - mautic_primary = tinycolor.toHexString(); + $('style#primary').remove(); + $('body').append(''); + + $('li.support').css({'box-shadow' : '0 0 30px inset '+mautic_primary, 'border-color' : mautic_primary }); + $('.panel-primary').css('border-color', mautic_primary); + $('a.mautic-link, a#forgot').css('color', mautic_primary); + $("input#mautic-primary").spectrum("set", mautic_primary); +} + +// mautic_hover +function updateMauticHover(color) { + mautic_hover = color; + $('a.mautic-hover').css('color', mautic_hover); + $('style#button-hover').remove(); + $('body').append(''); + $("input#mautic-hover").spectrum("set", mautic_hover); +} + +// logo_bg +function updateLogoBg(color) { + logo_bg = color; + $('div#logo').css('background', logo_bg); + $("input#logo-bg").spectrum("set", logo_bg); +} + +// sidebar_bg +function updateSidebarBg(color) { + sidebar_bg = color; + $('div.sidebar, div.sidebar > li > a').css('background-color', color); + $("input#sidebar-bg").spectrum("set", sidebar_bg); +} + +// sidebar_submenu_bg +function updateSidebarSubmenuBg(color) { + sidebar_submenu_bg = color; + $('.nav-submenu').css('background-color', sidebar_submenu_bg); + $("input#sidebar-submenu-bg").spectrum("set", sidebar_submenu_bg); +} + +// sidebar_link +function updateSidebarLink(color) { + sidebar_link = color; + $('div.sidebar a, li.support p').css('color', color); + $("input#sidebar-link").spectrum("set", sidebar_link); +} + +// sidebar_link_hover +function updateSidebarLinkHover(color) { + sidebar_link_hover = color; + $('style#hover').remove(); + $('body').append(''); + $("input#sidebar-link-hover").spectrum("set", sidebar_link_hover); +} + +// active_icon +function updateActiveIcon(color) { + active_icon = color; + $('.sidebar span.active-icon, li.support h1').css('color', active_icon); + $("input#active-icon").spectrum("set", active_icon); +} + +// sidebar_divider_color +function updateSidebarDivider(color) { + sidebar_divider = color; + $('style#border').remove(); + $('body').append(''); + $("input#sidebar-divider").spectrum("set", sidebar_divider); +} + +// submenu_bullet_bg +function updateSubmenuBulletBg(color) { + submenu_bullet_bg = color; + $('style#bullet-bg').remove(); + $('body').append(''); + $("input#submenu-bullet-bg").spectrum("set", submenu_bullet_bg); +} + +// submenu_bullet_shadow +function updateSubmenuBulletShadow(color) { + submenu_bullet_shadow = color; + $('style#bullet-shadow').remove(); + $('body').append(''); + $("input#submenu-bullet-shadow").spectrum("set", submenu_bullet_shadow); +} + +function updateDivderLeft(left) { + divider_left = left; + $('input#divider-left').val(divider_left) + $('style#border-left').remove(); + $('body').append(''); +} + +function updateSidebarLogoWidth(width) { + sidebar_logo_width = width; + $('input#sidebar-logo-width').val(sidebar_logo_width); + $('img#mautic-logo').css('width', sidebar_logo_width+'px'); +} + +function updateSidebarLogoMarginTop(n) { + sidebar_logo_margin_top = n; + $('input#sidebar-logo-margin-top').val(sidebar_logo_margin_top); + $('img#mautic-logo').css('margin-top', sidebar_logo_margin_top+'px'); +} + +function updateSidebarLogoMarginLeft(n) { + sidebar_logo_margin_left = n; + $('input#sidebar-logo-margin-left').val(sidebar_logo_margin_left); + $('img#mautic-logo').css('margin-left', sidebar_logo_margin_left+'px'); +} + +function updateSidebarLogoMarginRight(n) { + sidebar_logo_margin_right = n; + $('input#sidebar-logo-margin-right').val(sidebar_logo_margin_right); + $('img#mautic-logo').css('margin-right', sidebar_logo_margin_right+'px'); +} + +function updateLoginLogoWidth(width) { + login_logo_width = width; + $('input#login-logo-width').val(login_logo_width); + $('#login_preview img#login-logo, div.mautic-logo').css('width', login_logo_width+'px'); +} + +function updateLoginLogoMarginTop(n) { + login_logo_margin_top = n; + $('input#login-logo-margin-top').val(login_logo_margin_top); + $('img#login-logo').css('margin-top', login_logo_margin_top+'px'); +} + +function updateLoginLogoMarginBottom(n) { + login_logo_margin_bottom = n; + $('input#login-logo-margin-bottom').val(login_logo_margin_bottom); + $('img#login-logo').css('margin-bottom', login_logo_margin_bottom+'px'); +} + + +// Load assets/config.json file +function loadJsonConfig() { + + // Look for config values in assets/config.json + $.get( window.location.href, { q: 'saved' }, function(data) { + + console.log(data); + + if ( data.status == 1 ) { + + if ( data.data.path && data.data.path != '' ) { + $('input#mautic-path').val(data.data.path); + updatePath(); + } else { + $('input#mautic-path').val(mautic_path); + updatePath(); + } + + // Look for URL + if ( data.data.url && data.data.url != '' ) { + $('input#mautic-url').val(data.data.url); + updateUrl(); + } else { + $('input#mautic-url').val(mautic_url); + updateUrl(); + } + + // Look for company name + if ( data.data.company && data.data.company != '' ) { + $('input#company-name').val(data.data.company); + } + + // Primary + if ( data.data.primary && data.data.primary != '' ) { + updateMauticPrimary(data.data.primary); + } + + // Hover + if ( data.data.hover && data.data.hover != '' ) { + updateMauticHover(data.data.hover); + } + + // Logo background + if ( data.data.logo_bg && data.data.logo_bg != '' ) { + updateLogoBg(data.data.logo_bg); + } + + // Sidebar background + if ( data.data.sidebar_bg && data.data.sidebar_bg != '') { + updateSidebarBg(data.data.sidebar_bg); + } + + // Submenu background + if ( data.data.sidebar_submenu_bg && data.data.sidebar_submenu_bg !='' ) { + updateSidebarSubmenuBg(data.data.sidebar_submenu_bg); + } + + // Sidebar links + if ( data.data.sidebar_link && data.data.sidebar_link != '' ) { + updateSidebarLink(data.data.sidebar_link); + } + + // Sidebar links hover + if ( data.data.sidebar_link_hover && data.data.sidebar_link_hover != '' ) { + updateSidebarLinkHover(data.data.sidebar_link_hover); + } + + // Active icon + if ( data.data.active_icon && data.data.active_icon != '' ) { + updateActiveIcon(data.data.active_icon); + } + + // Sidebar divider + if ( data.data.sidebar_divider && data.data.sidebar_divider != '' ) { + updateSidebarDivider(data.data.sidebar_divider); + } + + // Submenu bullet background + if ( data.data.submenu_bullet_bg && data.data.submenu_bullet_bg != '' ) { + updateSubmenuBulletBg(data.data.submenu_bullet_bg); + } + + // Submenu bullet shadow + if ( data.data.submenu_bullet_shadow && data.data.submenu_bullet_shadow != '' ) { + updateSubmenuBulletShadow(data.data.submenu_bullet_shadow); + } + + // Divider left position + if ( data.data.divider_left && data.data.divider_left != '' ) { + updateDivderLeft(data.data.divider_left); + } + + // Sidebar Logo Width + if ( data.data.sidebar_logo_width && data.data.sidebar_logo_width != '' ) { + updateSidebarLogoWidth(data.data.sidebar_logo_width); + } + + // Sidebar Logo Margin Top + if ( data.data.sidebar_logo_margin_top && data.data.sidebar_logo_margin_top != '' ) { + updateSidebarLogoMarginTop(data.data.sidebar_logo_margin_top); + } + + // Sidebar Logo Margin Left + if ( data.data.sidebar_logo_margin_left && data.data.sidebar_logo_margin_left != '' ) { + updateSidebarLogoMarginLeft(data.data.sidebar_logo_margin_left); + } + + // Sidebar Logo Margin Right + if ( data.data.sidebar_logo_margin_right && data.data.sidebar_logo_margin_right != '' ) { + updateSidebarLogoMarginRight(data.data.sidebar_logo_margin_right); + } + + // Login Logo Width + if ( data.data.login_logo_width && data.data.login_logo_width != '' ) { + updateLoginLogoWidth(data.data.login_logo_width); + } + + // Login Logo Margin Top + if ( data.data.login_logo_margin_top && data.data.login_logo_margin_top != '' ) { + updateLoginLogoMarginTop(data.data.login_logo_margin_top); + } + + // Login Logo Margin Bottom + if ( data.data.login_logo_margin_bottom && data.data.login_logo_margin_bottom != '' ) { + updateLoginLogoMarginBottom(data.data.login_logo_margin_bottom); + } + + + if( window.location.href.substr(window.location.href.length-1 ) === '/') { + var wl_url = window.location.href.substr(0, window.location.href.length - 1); + } else { + var wl_url = window.location.href; + } + + // Check for sidebar logo image + if (data.data.sidebar_logo) { + + // Check to see if the file is really there + $.get( window.location.href, {q:'asset', url:encodeURIComponent(wl_url+'/assets/'+data.data.sidebar_logo)}).done(function(d){ + + if ( d == 1 ) { + $('img#mautic-logo').attr('src', 'assets/'+data.data.sidebar_logo); + $('div#sidebar-logo-upload').hide(); + $('div#sidebar-logo-upload').val(null); + $('div#sidebar-logo-loaded span').text('assets/'+data.data.sidebar_logo); + $('div#sidebar-logo-loaded').show(); + $('input#sidebar-logo-file').val(''); + sidebar_logo = data.data.sidebar_logo; + } else { + sidebar_logo = null; + $('#sidebar-logo-file').val(null); + $('img#mautic-logo').attr('src', 'images/sidebar.png'); + $('div#sidebar-logo-loaded').hide(); + $('div#sidebar-logo-upload').fadeIn(); + $('span.sidebar-logo-error').text(data.data.sidebar_logo+' is defined in config.json, but was not found in the assets folder.').fadeIn(); + } + + }); + + } + + // Check for login logo image + if (data.data.login_logo) { + + + $.get( window.location.href, {q:'asset', url:encodeURIComponent(wl_url+'/assets/'+data.data.login_logo)}).done(function(d){ + + if ( d == 1 ) { + $('img#login-logo').attr('src', 'assets/'+data.data.login_logo); + $('div#login-logo-upload').hide(); + $('div#login-logo-loaded span').text('assets/'+data.data.login_logo); + $('div#login-logo-loaded').show(); + $('input#login-logo-file').val(''); + login_logo = data.data.login_logo; + } else { + login_logo = null; + $('#login-logo-file').val(null); + $('img#login-logo').attr('src', 'images/login.png'); + $('div#login-logo-loaded').hide(); + $('div#login-logo-upload').fadeIn(); + $('span.login-logo-error').text(data.data.login_logo+' is defined in config.json, but was not found in the assets folder.').fadeIn(); + } + + }); + + } + + // Check for favicon image + if (data.data.favicon) { + + $.get( window.location.href, {q:'asset', url:encodeURIComponent(wl_url+'/assets/'+data.data.favicon)}).done(function(d){ + + if (d == 1) { + $('img#favicon-preview').attr('src', 'assets/'+data.data.favicon); + $('link[rel="icon"]').attr('href', 'assets/'+data.data.favicon); + $('div#favicon-upload').hide(); + $('div#favicon-loaded span').text('assets/'+data.data.favicon); + $('div#favicon-loaded').show(); + $('input#favicon-file').val(''); + favicon = data.data.favicon; + } else { + favicon = null; + $('#favicon-file').val(null); + $('img#favicon-preview').attr('src', 'images/favicon.ico'); + $('div#favicon-loaded').hide(); + $('div#favicon-upload').fadeIn(); + $('span.favicon-error').text(data.data.favicon+' is defined in config.json, but was not found in the assets folder.').fadeIn(); + } + + }); + + } + + $('button#reload').show(); + $('div#overlay').fadeOut(); + + } else { + + // Set default values + $('input#mautic-path').val(mautic_path); + $('input#mautic-url').val(mautic_url); + $('input#mautic-primary').val(mautic_primary); + $('input#mautic-hover').val(mautic_hover); + $('input#logo-bg').val(logo_bg); + $('input#sidebar-bg').val(sidebar_bg); + $('input#sidebar-submenu-bg').val(sidebar_submenu_bg); + $('input#sidebar-link').val(sidebar_link); + $('input#sidebar-link-hover').val(sidebar_link_hover); + $('input#sidebar-divider').val(sidebar_divider); + $('input#active-icon').val(active_icon); + $('input#submenu-bullet-bg').val(submenu_bullet_bg); + $('input#submenu-bullet-shadow').val(submenu_bullet_shadow); + $('input#divider-left').val(divider_left); + $('input#sidebar-logo-width').val(sidebar_logo_width); + $('input#sidebar-margin-top').val(sidebar_logo_margin_top); + $('input#sidebar-margin-left').val(sidebar_logo_margin_left); + $('input#sidebar-margin-right').val(sidebar_logo_margin_right); + $('input#login-logo-width').val(login_logo_width); + $('input#login-logo-margin-top').val(login_logo_margin_top); + $('input#login-logo-margin-bottom').val(login_logo_margin_bottom); + + updatePath(); + updateUrl(); + + $('div#overlay').fadeOut(); + + } + }); +} + +/* +|-------------------------------------------------------------------------- +| Color Dropdown Events +|-------------------------------------------------------------------------- +*/ + +// mautic_primary +$("input#mautic-primary").on('move.spectrum change.spectrum', function(e, tinycolor) { + updateMauticPrimary(tinycolor.toHexString()); }); -$("input.mautic_hover").on('move.spectrum change.spectrum', function(e, tinycolor) { - $('a.mautic-hover').css('color', tinycolor.toHexString()); - mautic_hover = tinycolor.toHexString(); +// mautic_hover +$("input#mautic-hover").on('move.spectrum change.spectrum', function(e, tinycolor) { + updateMauticHover(tinycolor.toHexString()); }); +// logo_bg +$("input#logo-bg").on('move.spectrum change.spectrum', function(e, tinycolor) { + updateLogoBg(tinycolor.toHexString()); +}); + +// sidebar_bg +$("input#sidebar-bg").on('move.spectrum change.spectrum', function(e, tinycolor) { + updateSidebarBg(tinycolor.toHexString()); +}); + +// sidebar_submenu_bg +$("input#sidebar-submenu-bg").on('move.spectrum change.spectrum', function(e, tinycolor) { + updateSidebarSubmenuBg(tinycolor.toHexString()); +}); + +// sidebar_link +$("input#sidebar-link").on('move.spectrum change.spectrum', function(e, tinycolor) { + updateSidebarLink(tinycolor.toHexString()); +}); + +// sidebar_link_hover +$("input#sidebar-link-hover").on('move.spectrum change.spectrum', function(e, tinycolor) { + updateSidebarLinkHover(tinycolor.toHexString()); +}); + +// active_icon +$("input#active-icon").on('move.spectrum change.spectrum', function(e, tinycolor) { + updateActiveIcon(tinycolor.toHexString()); +}); + +// sidebar_divider +$("input#sidebar-divider").on('move.spectrum change.spectrum', function(e, tinycolor) { + updateSidebarDivider(tinycolor.toHexString()); +}); + +// submenu_bullet_bg +$("input#submenu-bullet-bg").on('move.spectrum change.spectrum', function(e, tinycolor) { + updateSubmenuBulletBg(tinycolor.toHexString()); +}); + +// submenu_bullet_shadow +$("input#submenu-bullet-shadow").on('move.spectrum change.spectrum', function(e, tinycolor) { + updateSubmenuBulletShadow(tinycolor.toHexString()); +}); + + /* |-------------------------------------------------------------------------- | Input change event to look for Mautic compatible version |-------------------------------------------------------------------------- */ -$('body').on('change', 'input#mautic-path', function() { - var element = $(this); - $('small.path-fail, small.path-success').hide(); - $.get( window.location.href, { q: 'version', path: $('input#mautic-path').val() }, function(data) { - if ( data == 0 ) { - validPath = false; - $(element).parent('div').children('small.path-fail').fadeIn(); + +var validPath = false; +function updatePath() { + $('small.path-fail, small.path-success, #path-loading').hide(); + $('input#mautic-path').prop( "disabled", true ); + $('#path-loading').show(); + $.get( window.location.href, { q: 'version', path: $('input#mautic-path').val() } ).done(function(data) { + + console.log(data); + $('input#mautic-path').prop( "disabled", false ); + $('#path-loading').hide(); + + if ( data.status == 1 ) { + + validPath = true; + $($('input#mautic-path')).parent('div').parent('div').children('small.path-success').text(data.message).fadeIn(); + } else { - $('span.version').text(data); - validPath = true; - $(element).parent('div').children('small.path-success').fadeIn(); + + validPath = false; + $($('input#mautic-path')).parent('div').parent('div').children('small.path-fail').text(data.message).fadeIn(); + } }); +} + +$('body').on('change', 'input#mautic-path', function() { + updatePath(); }); + /* |-------------------------------------------------------------------------- | Input change event to look for Mautic URL. |-------------------------------------------------------------------------- */ + +var validDomain = false; +function updateUrl() { + + $('small.url-fail, small.url-success, #url-loading').hide(); + $('input#mautic-url').prop( "disabled", true ); + $('#url-loading').show(); + + $.get( window.location.href, { q: 'url', url: encodeURIComponent($('input#mautic-url').val()) } ).done(function(data){ + + console.log(data); + $('input#mautic-url').prop( "disabled", false ); + $('#url-loading').hide(); + + if ( data.status == 1 ) { + + validDomain = true; + $($('input#mautic-url')).parent('div').parent('div').children('small.url-success').text(data.message).fadeIn(); + $('div#overlay').fadeOut(); + + } else { + + validDomain = false; + $($('input#mautic-url')).parent('div').parent('div').children('small.url-fail').text(data.message).fadeIn(function(){ + $('div#overlay').fadeOut(); + }); + + } + }); + +} $('body').on('change', 'input#mautic-url', function() { - var element = $(this); - $('small.url-fail, small.url-success').hide(); - $.get( window.location.href, { q: 'url', url: encodeURIComponent($('input#mautic-url').val()) }, function(data) { - if( data == 1 ) { - validDomain = true; - $(element).parent('div').children('small.url-success').fadeIn(); - } else { - validDomain = false; - $(element).parent('div').children('small.url-fail').fadeIn(); - } - }); + updateUrl(); }); -$(document).ready(function(){ - /* - |-------------------------------------------------------------------------- - | Check to see if parent folder is root of compatible Mautic version - |-------------------------------------------------------------------------- - */ - $('input#sidebar-background').val(sidebar_background); - $('input#mautic-primary').val(mautic_primary); - $('input#mautic-hover').val(mautic_hover); - $('#waiting-for-input span.dots').addClass('blink'); - $('input#mautic-url').val(window.location.href); - - $.get( window.location.href, { q: 'version', path: $('input#mautic-path').val() }, function(data) { - if (data == 0) { - $('input#mautic-path').parent('div').children('small.path-fail').fadeIn(); - validPath = false; - } else { - $('span.version').text(data); - validPath = true; - $('input#mautic-path').parent('div').children('small.path-success').fadeIn(); - } - }); - $.get( window.location.href, { q: 'url', url: encodeURIComponent($('input#mautic-url').val()) }, function(data) { - if (data == 1) { - validDomain = true; - $('input#mautic-url').parent('div').children('small.url-success').fadeIn(); - } else { - $('input#mautic-url').parent('div').children('small.url-fail').fadeIn(); - validDomain = false; - } - }); - - /* - |-------------------------------------------------------------------------- - | Affix console/login preview for large screens - |-------------------------------------------------------------------------- - */ - if (window.innerWidth >= 995) { - $('#right').affix({ - offset: { - top: 40, - } - }); - } - $('#waiting-for-input').fadeIn(); -}); /* |-------------------------------------------------------------------------- | Read image input |-------------------------------------------------------------------------- */ + function readImg(input) { + var element = input; + if (input.files && input.files[0]) { + var reader = new FileReader(); + reader.onload = function (e) { - if ( $(input).attr('id') == 'sidebar-logo-file' ) { - $('img#mautic-logo').attr('src', e.target.result); - $('img#mautic-logo').css('margin', 0); - } else if ( $(input).attr('id') == 'login-logo-file' ) { - $('img#login-logo').attr('src', e.target.result); - $('img#login-logo').css('margin', 0); - } else if ( $(input).attr('id') == 'favicon' ) { - $('img#favicon-preview').attr('src', e.target.result); - $('link[rel="icon"]').attr('href', e.target.result); - } + + if ( $(input).attr('id') == 'sidebar-logo-file' ) { + + $('img#mautic-logo').attr('src', e.target.result); + $('img#mautic-logo').css('margin', 0); + + } else if ( $(input).attr('id') == 'login-logo-file' ) { + + $('img#login-logo').attr('src', e.target.result); + $('img#login-logo').css('margin', 0); + + if ( $('#favicon-file')[0].files.length != 1 && favicon == null ) { + + $('img#favicon-preview').attr('src', e.target.result); + $('link[rel="icon"]').attr('href', e.target.result); + + } + + } else if ( $(input).attr('id') == 'favicon-file' ) { + + $('img#favicon-preview').attr('src', e.target.result); + $('link[rel="icon"]').attr('href', e.target.result); + + } + } + reader.readAsDataURL(input.files[0]); } } + /* |-------------------------------------------------------------------------- | Show live preview of image |-------------------------------------------------------------------------- */ -$("input#sidebar-logo-file, input#login-logo-file, input#favicon").change(function(){ + +$("input#sidebar-logo-file, input#login-logo-file, input#favicon-file").change(function(){ + readImg(this); + if ( $(this).attr('id') == 'sidebar-logo-file' ) { - $('#sidebar-margin-top').val(0); + + $('#sidebar-logo-margin-top').val(0); + $('.sidebar-logo-error').hide(); + } else if ( $(this).attr('id') == 'login-logo-file' ) { - $('#login-margin-top, #login-margin-bottom').val(0); - } + + $('#login-logo-margin-top, #login-logo-margin-bottom').val(0); + $('.login-logo-error').hide(); + + } else if ( $(this).attr('id') == 'favicon-file' ) { + + $('#favicon-preview').val(0); + $('.favicon-error').hide(); + } + }); + /* |-------------------------------------------------------------------------- | Event listener for sidebar logo width preview |-------------------------------------------------------------------------- */ -$('body').on('keyup change', 'input#logo-sidebar-width', function(){ + +$('body').on('keyup change', 'input#sidebar-logo-width', function(){ $('img#mautic-logo').css('width', $(this).val()+'px'); }); + /* |-------------------------------------------------------------------------- | Event listener for login logo width preview |-------------------------------------------------------------------------- */ -$('body').on('keyup change', 'input#logo-login-width', function(){ + +$('body').on('keyup change', 'input#login-logo-width', function(){ $('#login_preview img#login-logo, div.mautic-logo').css('width', $(this).val()+'px'); }); + +/* +|-------------------------------------------------------------------------- +| Event listener for logo margins +|-------------------------------------------------------------------------- +*/ + +// Sidebar logo top margin +$('body').on('keyup change', 'input#sidebar-logo-margin-top', function(){ + $('img#mautic-logo').css('margin-top', $(this).val()+'px'); +}); + +// Sidebar logo left margin +$('body').on('keyup change', 'input#sidebar-logo-margin-left', function(){ + $('img#mautic-logo').css('margin-left', $(this).val()+'px'); +}); + +// Sidebar logo right margin +$('body').on('keyup change', 'input#sidebar-logo-margin-right', function(){ + $('img#mautic-logo').css('margin-right', $(this).val()+'px'); +}); + +// Login logo top margin +$('body').on('keyup change', 'input#login-logo-margin-top', function(){ + $('img#login-logo').css('margin-top', $(this).val()+'px'); +}); + +// Login logo top margin +$('body').on('keyup change', 'input#login-logo-margin-bottom', function(){ + $('img#login-logo').css('margin-bottom', $(this).val()+'px'); +}); + /* |-------------------------------------------------------------------------- -| Event listener for logo margin previews +| Event listener for divider left position |-------------------------------------------------------------------------- */ -$('body').on('keyup change', 'input.margintop, input.marginright, input.marginbottom, input.marginleft', function(){ - if ($(this).attr('data-logo')=='sidebar') { - $('img#mautic-logo').css($(this).attr('data-margin'), $(this).val()+'px'); - } else if ($(this).attr('data-logo')=='login') { - $('img#login-logo, div.mautic-logo').css($(this).attr('data-margin'), $(this).val()+'px'); - } + +$('body').on('keyup change', 'input#divider-left', function(){ + updateDivderLeft($(this).val()); }); + +/* +|-------------------------------------------------------------------------- +| Build config object to upload as JSON file +|-------------------------------------------------------------------------- +*/ + +function buildConfig() { + var config = { + "path" : $('input#mautic-path').val(), + "url" : $('input#mautic-url').val(), + "company" : $('input#company-name').val(), + "primary" : $('input#mautic-primary').val(), + "hover" : $('input#mautic-hover').val(), + "logo_bg" : $('input#logo-bg').val(), + "sidebar_bg" : $('input#sidebar-bg').val(), + "sidebar_submenu_bg" : $('input#sidebar-submenu-bg').val(), + "sidebar_link" : $('input#sidebar-link').val(), + "sidebar_link_hover" : $('input#sidebar-link-hover').val(), + "active_icon" : $('input#active-icon').val(), + "sidebar_divider" : $('input#sidebar-divider').val(), + "divider_left" : $('input#divider-left').val(), + "submenu_bullet_bg" : $('input#submenu-bullet-bg').val(), + "submenu_bullet_shadow" : $('input#submenu-bullet-shadow').val(), + "sidebar_logo" : sidebar_logo, + "sidebar_logo_width" : $('input#sidebar-logo-width').val(), + "sidebar_logo_margin_top" : $('input#sidebar-logo-margin-top').val(), + "sidebar_logo_margin_right" : $('input#sidebar-logo-margin-right').val(), + "sidebar_logo_margin_left" : $('input#sidebar-logo-margin-left').val(), + "login_logo" : login_logo, + "login_logo_width" : $('input#login-logo-width').val(), + "login_logo_margin_top" : $('input#login-logo-margin-top').val(), + "login_logo_margin_bottom" : $('input#login-logo-margin-bottom').val(), + "favicon" : favicon + }; + return config; +} + + +/* +|-------------------------------------------------------------------------- +| Upload images and POST JSON file +|-------------------------------------------------------------------------- +*/ + +function saveConfigJson() { + + $('div#overlay').show(); + $('button i.fa-floppy-o').hide(); + $('#notification p').removeClass('success fail').hide(); + $('button i.save-loading').show(); + + // Save images + images = new FormData(); + + // Sidebar logo file is ready to upload + if ( $('#sidebar-logo-file')[0].files.length == 1 ) { + sidebar_logo = $('#sidebar-logo-file')[0].files[0].name; + images.append('sidebar_logo_file', $('#sidebar-logo-file')[0].files[0]); + images.append('sidebar_logo_width', $('#sidebar-logo-width').val()); + } + + // Login logo is ready to upload + if ( $('#login-logo-file')[0].files.length == 1 ) { + images.append('login_logo_file', $('#login-logo-file')[0].files[0]); + images.append('login_logo_width', $('#login-logo-width').val()); + login_logo = $('#login-logo-file')[0].files[0].name; + } + + // Favicon is ready to upload + if ( $('#favicon-file')[0].files.length == 1 ) { + + images.append('favicon_file', $('input#favicon-file')[0].files[0]); + + if ( $('#favicon-file')[0].files[0].name.split('.')[1].toLowerCase() == 'ico' ) { + favicon = $('#favicon-file')[0].files[0].name; + } else { + favicon = $('#favicon-file')[0].files[0].name.split('.')[0]+'.ico'; + } + + // Favicon is not set, check if login logo is ready to upload and use + } else { + if ( login_logo ) { + // Set favicon to use login logo (which will be converted to an .ico) + if ( $('#login-logo-file')[0].files.length == 1 ) { + favicon = 'favicon-'+$('#login-logo-file')[0].files[0].name.split('.')[0]+'.ico'; + } else { + favicon = 'favicon-'+login_logo.split('.')[0]+'.ico'; + } + } + } + + // There's an image form set, let's upload them. + if ( $('#sidebar-logo-file')[0].files.length > 0 || $('#login-logo-file')[0].files.length > 0 || $('#favicon-file')[0].files.length > 0 ) { + + $.ajax({ + url: window.location.href+'?q=save-images', + type: 'POST', + data: images, + cache: false, + contentType: false, + processData: false, + xhr: function() { + var myXhr = $.ajaxSettings.xhr(); + if (myXhr.upload) { + myXhr.upload.addEventListener('progress', function(e) { + if (e.lengthComputable) { + console.log(e.loaded / e.total); + } + }, false); + } + return myXhr; + }, + success: function(result) { + + if ( result.status == 1 ) { + + console.log(result); + + var config = buildConfig(); + + $.post(window.location.href+'?q=save', { + 'config' : config + }, function(data) { + if (data) { + $('button i.save-loading').hide(); + $('button i.fa-floppy-o').show(); + $('#notification p').addClass('success').fadeIn(); + $('button#reload').fadeIn(); + //$('div#overlay').fadeOut(); + loadJsonConfig(); + } else { + console.log('There was an error saving your data. Please review your server error log.') + } + + }); + + } else { + alert(result.message[0]); + console.log(result.message[0]); + } + + } + }); + + // We don't need to upload images + } else { + var config = buildConfig(); + + $.post(window.location.href+'?q=save', { + 'config' : config + }, function(data) { + if (data) { + $('button i.save-loading').hide(); + $('button i.fa-floppy-o').show(); + $('#notification p').addClass('success').fadeIn(); + $('button#reload').fadeIn(); + //$('div#overlay').fadeOut(); + loadJsonConfig(); + } else { + console.log('There was an error saving your data. Please review your server error log.') + } + + }); + } + +} + + +// Save button event listener +$('body').on('click', 'button#save', function(e){ + e.preventDefault(); + saveConfigJson(); +}); + +// Run save function when pressint ctrl/cmd + s +$(window).bind('keydown', function(e) { + if (e.ctrlKey || e.metaKey) { + switch (String.fromCharCode(e.which).toLowerCase()) { + case 's': + e.preventDefault(); + saveConfig(); + break; + } + } +}); + + /* |-------------------------------------------------------------------------- | Clear console |-------------------------------------------------------------------------- */ + function clearConsole() { $('div#console p').css('display', 'none'); } + /* |-------------------------------------------------------------------------- -| Run whitelabel functions +| Run whitelabeling process |-------------------------------------------------------------------------- */ + function whiteLabel() { + $('.spinner').fadeIn(); clearConsole(); var path = $('input#mautic-path').val(); + // Waiting for input $('#waiting-for-input').show(); $('#waiting-for-input span.dots').removeClass('blink'); $('#waiting-for-input-success').fadeIn(); + // Find Mautic installation $('#looking-for-installation').fadeIn(); - $.get( window.location.href, { q: 'version', path: path }, function(versionData){ + $.get( window.location.href, { q: 'version', path:path }, function(versionData){ + + console.log(versionData); + // version data success if (versionData != 0) { $("#console").animate({ scrollTop: $('#console').prop("scrollHeight")}, 500); $('#looking-for-installation-success').fadeIn(); + // css stuff $('#updating-css').fadeIn(); $('#updating-css span.dots').addClass('blink'); - console.log(versionData); + $.post(window.location.href+'?q=css', { path: path, - version: versionData, - sidebar_background: sidebar_background, - mautic_primary: mautic_primary, - mautic_hover: mautic_hover + version: versionData.version, + logo_bg: logo_bg, + primary: mautic_primary, + hover: mautic_hover, + sidebar_bg: sidebar_bg, + sidebar_submenu_bg: sidebar_submenu_bg, + sidebar_link: sidebar_link, + sidebar_link_hover: sidebar_link_hover, + active_icon: active_icon, + divider_left: divider_left, + sidebar_divider: sidebar_divider, + submenu_bullet_bg: submenu_bullet_bg, + submenu_bullet_shadow: submenu_bullet_shadow }, function(cssData) { - if(cssData) { + + console.log(cssData); + + if (cssData) { + // css data success - if(cssData=='CSS files updated with new colors.') { - console.log(cssData); + if(cssData.status==1) { + $("#console").animate({ scrollTop: $('#console').prop("scrollHeight")}, 500); $('#updating-css span.dots').removeClass('blink'); $('#updating-css-success').fadeIn(); + // update company name $('#updating-companyname').fadeIn(); $('#updating-companyname span.dots').addClass('blink'); + $.post(window.location.href+'?q=companyname', { path: path, - version:versionData, + version:versionData.version, company_name: $('input#company-name').val() }, function(companyNameData) { + + console.log(companyNameData); + // Success - if (companyNameData == 'Updated company name.') { + if (companyNameData.status == 1) { + $("#console").animate({ scrollTop: $('#console').prop("scrollHeight")}, 500); $('#updating-companyname span.dots').removeClass('blink'); $('#updating-companyname-success').fadeIn(); + // Update logos + $('#updating-images').fadeIn(); $('#updating-images span.dots').addClass('blink'); data = new FormData(); data.append('mautic_path', path); data.append('mautic_url', $('#mautic-url').val()); - data.append('version', versionData); - data.append('sidebar_logo', $('#sidebar-logo-file')[0].files[0]); - data.append('sidebar_logo_width', $('#logo-sidebar-width').val()); - data.append('sidebar_margin_top', $('#sidebar-margin-top').val()); - data.append('sidebar_margin_right', $('#sidebar-margin-right').val()); - data.append('sidebar_margin_left', $('#sidebar-margin-left').val()); - data.append('login_logo', $('#login-logo-file')[0].files[0]); - data.append('login_logo_width', $('#logo-login-width').val()); - data.append('login_margin_top', $('#login-margin-top').val()); - data.append('login_margin_bottom', $('#login-margin-bottom').val()); - data.append('favicon', $('input#favicon')[0].files[0]); + data.append('version', versionData.version); + + // Check for saved values + + if ( sidebar_logo == null ) { + data.append('sidebar_logo_file', $('#sidebar-logo-file')[0].files[0]); + } else { + data.append('sidebar_logo_file', sidebar_logo); + } + + if ( login_logo == null ) { + data.append('login_logo_file', $('#login-logo-file')[0].files[0]); + } else { + data.append('login_logo_file', login_logo); + } + + if ( favicon == null && $('#favicon-file')[0].files[0] ) { + + data.append('favicon_file', $('#favicon-file')[0].files[0]); + + } else { + data.append('favicon_file', favicon); + } + + data.append('sidebar_logo_width', $('#sidebar-logo-width').val()); + data.append('sidebar_logo_margin_top', $('#sidebar-logo-margin-top').val()); + data.append('sidebar_logo_margin_right', $('#sidebar-logo-margin-right').val()); + data.append('sidebar_logo_margin_left', $('#sidebar-logo-margin-left').val()); + data.append('login_logo_width', $('#login-logo-width').val()); + data.append('login_logo_margin_top', $('#login-logo-margin-top').val()); + data.append('login_logo_margin_bottom', $('#login-logo-margin-bottom').val()); + $.ajax({ url: window.location.href+'?q=logos', type: 'POST', @@ -305,28 +1042,46 @@ function whiteLabel() { return myXhr; }, success: function(imageData) { - $('#updating-images span.dots').removeClass('blink'); - $('#updating-images-success').fadeIn(); - $("#console").animate({ scrollTop: $('#console').prop("scrollHeight")}, 500); - console.log(imageData); + + console.log(imageData); + + if ( imageData.status == 1 ) { + + $('#updating-images span.dots').removeClass('blink'); + $('#updating-images-success').fadeIn(); + $("#console").animate({ scrollTop: $('#console').prop("scrollHeight")}, 500); + + } else { + + $('#updating-images-error span.error').append(': Could not update images. See console for errors.'); + $('#updating-images span.dots').removeClass('blink'); + $('#updating-images-error').fadeIn(); + $("#console").animate({ scrollTop: $('#console').prop("scrollHeight")}, 500); + } + // Regenerate Muatic Assets + $('#regenerating').fadeIn(); $('#regenerating span.dots').addClass('blink'); + $.get(window.location.href, { q: "assets", assets: "regenerate", path: path } ) - .done(function(assetsData) { - $('#regenerating span.dots').removeClass('blink'); - $('#regenerating-success').fadeIn(); - $("#console").animate({ scrollTop: $('#console').prop("scrollHeight")}, 500); - console.log(assetsData); + .done(function(assetsData) { + + $('#regenerating span.dots').removeClass('blink'); + $('#regenerating-success').fadeIn(); + $("#console").animate({ scrollTop: $('#console').prop("scrollHeight")}, 500); + // Clearing Cache $('#clearing span.dots').addClass('blink'); $('#clearing').fadeIn(); + $.get(window.location.href, { q: "assets", assets: "clear", path: path } ) - .done(function(assetsData) { + .done(function(assetsData) { + $('#clearing span.dots').removeClass('blink'); $('#clearing-success').fadeIn(); $("#console").animate({ scrollTop: $('#console').prop("scrollHeight")}, 500); - console.log(assetsData); + // Complete! $('#complete').fadeIn(); $("#console").animate({ scrollTop: $('#console').prop("scrollHeight")}, 500); @@ -337,15 +1092,14 @@ function whiteLabel() { }); // Error } else { - $('#updating-companyname-error').append(': '+companyNameData).fadeIn(); + $('#updating-companyname-error').append(': Could not update company name. See console for errors.').fadeIn(); $('.spinner').fadeOut(); } }); // post company name data // css data error - } else if ( cssData == 'Unable to find app.css in your Mautic installation.' || - cssData == 'Unable to find libraries.css in your Mautic installation.' ) { - $('#updating-css-error').append(': '+cssData).fadeIn(); + } else { + $('#updating-css-error').append(': '+cssData.message).fadeIn(); $('.spinner').fadeOut(); } // css data error @@ -363,9 +1117,8 @@ function whiteLabel() { }); // get version data } -// Event handler for "start whitelabeling" button -// Do some basic validation first -$('button').click(function(e){ +// Event handler for "start whitelabeling" button - Do some validation before running whiteLabel() +$('button#whitelabel-now').click(function(e){ e.preventDefault(); if (validPath != true) { alert('Couldn\'t find Mautic. Make sure your path is correct.') @@ -379,14 +1132,197 @@ $('button').click(function(e){ alert('Enter a company name.'); return false; } - if (!$('#sidebar-logo-file')[0].files[0]) { + if ( !sidebar_logo && $('input#sidebar-logo-file')[0].files.length == 0 ) { alert('You have to choose a sidebar logo image.'); return false; } - if (!$('#login-logo-file')[0].files[0]) { + if ( !login_logo && $('input#login-logo-file')[0].files.length == 0 ) { alert('You have to choose a login logo image.'); return false; } $('.spinner').fadeIn(); whiteLabel(); }); + +// Fix Window Affix +$(window).scroll(function () { + $('#right').width('100%'); +}); + +// Reset Colors to Deafults +$('button#reset').click(function(e){ + e.preventDefault(); + updateMauticPrimary('#4e5d9d'); + updateMauticHover('#3d497b'); + updateLogoBg('#4e5d9d'); + updateSidebarBg('#1d232b'); + updateSidebarSubmenuBg('#171c22'); + updateSidebarLink('#9e9e9e'); + updateSidebarLinkHover('#ffffff'); + updateActiveIcon('#fdb933'); + updateSidebarDivider('#202830'); + updateSubmenuBulletBg('#222a32'); + updateSubmenuBulletShadow('#1a2026'); + updateDivderLeft(50); + updateSidebarLogoWidth(130); + updateSidebarLogoMarginTop(10); + updateSidebarLogoMarginLeft(0); + updateSidebarLogoMarginRight(0); + updateLoginLogoWidth(150); + updateLoginLogoMarginTop(20); + updateLoginLogoMarginBottom(20); + $('input#company-name').val('Mautic'); + sidebar_logo = null; + $('#sidebar-logo-file').val(null); + $('img#mautic-logo').attr('src', 'images/sidebar.png'); + $('div#sidebar-logo-loaded').hide(); + $('div#sidebar-logo-upload').fadeIn(); + $('span.sidebar-logo-error').hide(); + login_logo = null; + $('#login-logo-file').val(null); + $('img#login-logo').attr('src', 'images/login.png'); + $('div#login-logo-loaded').hide(); + $('div#login-logo-upload').fadeIn(); + $('span.login-logo-error').hide(); + favicon = null; + $('#favicon-file').val(null); + $('img#favicon-preview').attr('src', 'images/favicon.ico'); + $('link[rel="icon"]').attr('href', 'images/favicon.ico'); + $('div#favicon-loaded').hide(); + $('div#favicon-upload').fadeIn(); + $('span.favicon-error').hide(); +}); + +// Reset Colors to Deafults +$('button#reload').click(function(e){ + e.preventDefault(); + loadJsonConfig(); +}); + +// Event listener for closing loaded logos +$('div#sidebar-logo-loaded a, div#login-logo-loaded a, div#favicon-loaded a').click(function(e){ + e.preventDefault(); + $(this).parent().parent().hide(); + $(this).parent().parent().prev('div').fadeIn(); + if ( $(this).parent().parent().attr('id') == 'sidebar-logo-loaded' ) { + sidebar_logo = null; + $('#sidebar-logo-file').val(''); + $('img#mautic-logo').attr('src', 'images/sidebar.png'); + } else if ( $(this).parent().parent().attr('id') == 'login-logo-loaded' ) { + login_logo = null; + $('#login-logo-file').val(''); + $('img#login-logo').attr('src', 'images/login.png'); + } else if ( $(this).parent().parent().attr('id') == 'favicon-loaded' ) { + favicon = null; + $('#favicon-file').val(''); + $('img#favicon-preview').attr('src', 'images/favicon.ico'); + $('link[rel="icon"]').attr('href', 'images/favicon.ico'); + } +}); + + +/* +|-------------------------------------------------------------------------- +| Document Loaded +|-------------------------------------------------------------------------- +*/ + +$(document).ready(function(){ + + // Start terminal message + $('#waiting-for-input').fadeIn(); + $('#waiting-for-input span.dots').addClass('blink'); + + // Show/hide support message based on window height + if (window.innerHeight > 750 ) { + $('li.support').fadeIn(2000); + } + $( window ).resize(function() { + if (window.innerHeight > 750 ) { + $('li.support').fadeIn(2000); + } else { + $('li.support').fadeOut(500); + } + }); + + // Initiate Color Dropdowns + $("input#mautic-primary").spectrum({ + preferredFormat: "hex", + showInput: true, + color: mautic_primary, + showButtons: false + }); + $("input#mautic-hover").spectrum({ + preferredFormat: "hex", + showInput: true, + color: mautic_hover, + showButtons: false + }); + $("input#logo-bg").spectrum({ + preferredFormat: "hex", + showInput: true, + color: logo_bg, + showButtons: false + }); + $("input#sidebar-bg").spectrum({ + preferredFormat: "hex", + showInput: true, + color: sidebar_bg, + showButtons: false + }); + $("input#sidebar-submenu-bg").spectrum({ + preferredFormat: "hex", + showInput: true, + color: sidebar_submenu_bg, + showButtons: false + }); + $("input#sidebar-link").spectrum({ + preferredFormat: "hex", + showInput: true, + color: sidebar_link, + showButtons: false + }); + $("input#sidebar-link-hover").spectrum({ + preferredFormat: "hex", + showInput: true, + color: sidebar_link_hover, + showButtons: false + }); + $("input#active-icon").spectrum({ + preferredFormat: "hex", + showInput: true, + color: active_icon, + showButtons: false + }); + $("input#sidebar-divider").spectrum({ + preferredFormat: "hex", + showInput: true, + color: sidebar_divider, + showButtons: false + }); + $("input#submenu-bullet-bg").spectrum({ + preferredFormat: "hex", + showInput: true, + color: submenu_bullet_bg, + showButtons: false + }); + $("input#submenu-bullet-shadow").spectrum({ + preferredFormat: "hex", + showInput: true, + color: submenu_bullet_shadow, + showButtons: false + }); + + // Affix console/login preview for large screens + if (window.innerWidth >= 995) { + $('#right').affix({ + offset: { + top: 40, + } + }); + } + + // Load data from assets/config.json + loadJsonConfig(); + +}); // $(document).ready diff --git a/preview-cli.png b/preview-cli.png new file mode 100644 index 0000000..ab51ba9 Binary files /dev/null and b/preview-cli.png differ diff --git a/preview.png b/preview.png index 968a6f0..7486421 100644 Binary files a/preview.png and b/preview.png differ diff --git a/templates/2.10.0/app/bundles/CoreBundle/Assets/css/app.css b/templates/2.10.0/app/bundles/CoreBundle/Assets/css/app.css deleted file mode 100644 index 4a5d981..0000000 --- a/templates/2.10.0/app/bundles/CoreBundle/Assets/css/app.css +++ /dev/null @@ -1,4753 +0,0 @@ -@import url(https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,400,300,600,700); -html, -body { - width: 100%; - height: 100%; -} -body { - overflow-y: scroll; -} -body > #app-wrapper { - overflow: hidden; - position: relative; - height: auto; - min-height: 100%; - width: 100%; -} -.sidebar-left-open { - overflow: hidden; -} -.sidebar-left-open body > section#app-wrapper { - overflow-x: hidden; -} -@media (min-width: 768px) { - body { - overflow-x: hidden; - } -} -@media (min-width: 970px) { - .modal { - overflow-y: auto; - } - .modal-open { - overflow: auto; - } -} -.csstransforms3d.sidebar-open-ltr #app-header.navbar { - -webkit-transform: translate3d(230px, 0, 0); - transform: translate3d(230px, 0, 0); -} -.no-csstransforms3d.sidebar-open-ltr #app-header.navbar { - left: 230px; -} -.csstransforms3d.sidebar-open-rtl #app-header.navbar { - -webkit-transform: translate3d(-230px, 0, 0); - transform: translate3d(-230px, 0, 0); -} -.no-csstransforms3d.sidebar-open-rtl #app-header.navbar { - left: -230px; - right: 230px; -} -#app-header.navbar { - -webkit-transition: all 0.3s ease; - -moz-transition: all 0.3s ease; - -ms-transition: all 0.3s ease; - -o-transition: all 0.3s ease; - transition: all 0.3s ease; - background-color: #ffffff; - float: left; - z-index: 1005; - min-height: 60px; - border-width: 0; - border-radius: 0; - margin-bottom: 0; - -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05); - box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05); -} -.header-fixed #app-header.navbar { - position: fixed; - right: 0; - left: 0; - top: 0; - box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.15), 0 1px 0 rgba(0, 0, 0, 0.03); -} -.header-fixed #app-header.navbar ~ #app-content > .content-body { - padding-top: 60px; -} -#app-header.navbar .navbar-nocollapse:before, -#app-header.navbar .navbar-nocollapse:after { - content: " "; - display: table; -} -#app-header.navbar .navbar-nocollapse:after { - clear: both; -} -#app-header.navbar .navbar-nocollapse .navbar-header { - height: 60px; -} -#app-header.navbar .navbar-nocollapse .navbar-header .navbar-toggle { - display: inline-block; - float: left; - margin: 0; - border-width: 0; - padding: 24px 15px; -} -#app-header.navbar .navbar-nocollapse .navbar-header .navbar-toggle .icon-bar { - margin-left: auto; - margin-right: auto; - background-color: rgba(0, 0, 0, 0.6); - height: 2px; - width: 18px; - border-radius: 0; -} -#app-header.navbar .navbar-nocollapse .navbar-header .navbar-toggle .icon-bar + .icon-bar { - margin-top: 3px; -} -#app-header.navbar .navbar-nocollapse .navbar-nav { - float: left; - margin: 0; -} -#app-header.navbar .navbar-nocollapse .navbar-nav > li { - float: left; -} -#app-header.navbar .navbar-nocollapse .navbar-nav > li > a { - color: rgba(0, 0, 0, 0.6); - line-height: 60px; - padding-top: 0; - padding-bottom: 0; -} -#app-header.navbar .navbar-nocollapse .navbar-nav > li > a:before, -#app-header.navbar .navbar-nocollapse .navbar-nav > li > a:after { - content: " "; - display: table; -} -#app-header.navbar .navbar-nocollapse .navbar-nav > li > a:after { - clear: both; -} -#app-header.navbar .navbar-nocollapse .navbar-nav > li > a .sli { - top: 1px; -} -#app-header.navbar .navbar-nocollapse .navbar-nav > li > a > img, -#app-header.navbar .navbar-nocollapse .navbar-nav > li > a > .img-wrapper { - display: inline-block; - width: 32px; - height: 32px; - margin-top: -11px; - margin-bottom: -11px; -} -#app-header.navbar .navbar-nocollapse .navbar-nav > li > a > .badge, -#app-header.navbar .navbar-nocollapse .navbar-nav > li > a > .label { - position: absolute; - z-index: 1; - top: 12px; - right: 8px; - font-size: 10px; - padding: 0 4px; - line-height: 16px; - height: 16px; - min-width: 16px; - border-radius: 16px; - -webkit-box-shadow: 0 0 0 2px #ffffff; - box-shadow: 0 0 0 2px #ffffff; -} -#app-header.navbar .navbar-nocollapse .navbar-nav > li > a > .badge.pull-right, -#app-header.navbar .navbar-nocollapse .navbar-nav > li > a > .label.pull-right { - left: auto; - right: 4px; -} -#app-header.navbar .navbar-nocollapse .navbar-nav > li > a > .bullet { - position: absolute; - z-index: 1; - top: 18px; - right: 15px; - -webkit-box-shadow: 0 0 0 2px #ffffff; - box-shadow: 0 0 0 2px #ffffff; -} -#app-header.navbar .navbar-nocollapse .navbar-nav > li > a > .bullet.pull-right { - left: auto; - right: 4px; -} -#app-header.navbar .navbar-nocollapse .navbar-nav > li > a:hover { - color: rgba(0, 0, 0, 0.7); - background-color: transparent; -} -#app-header.navbar .navbar-nocollapse .navbar-nav > li > a:active, -#app-header.navbar .navbar-nocollapse .navbar-nav > li > a:focus, -#app-header.navbar .navbar-nocollapse .navbar-nav > li > a.active { - color: rgba(0, 0, 0, 0.7); - background-color: #f5f5f5; - outline: 0; -} -#app-header.navbar .navbar-nocollapse .navbar-nav .dropdown-custom { - position: static; -} -#app-header.navbar .navbar-nocollapse .navbar-nav .dropdown-custom .dropdown-menu { - width: 320px; - overflow: hidden; -} -@media (max-width: 480px) { - #app-header.navbar .navbar-nocollapse .navbar-nav .dropdown-custom .dropdown-menu { - width: auto !important; - left: 15px !important; - right: 15px !important; - } -} -#app-header.navbar .navbar-nocollapse .navbar-nav .open .dropdown-menu { - position: absolute; - top: 100%; - margin-top: 5px; - left: 15px; - float: left; - background-color: #ffffff; - border: 1px solid #eeeeee; - border: 1px solid rgba(0, 0, 0, 0.06); - -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.06); - box-shadow: 0 3px 6px rgba(0, 0, 0, 0.06); -} -#app-header.navbar .navbar-nocollapse .navbar-nav .open > a { - color: rgba(0, 0, 0, 0.7); - background-color: #f5f5f5; -} -#app-header.navbar .navbar-nocollapse .navbar-nav .open > a:hover, -#app-header.navbar .navbar-nocollapse .navbar-nav .open > a:focus { - color: rgba(0, 0, 0, 0.7); - background-color: #f5f5f5; -} -#app-header.navbar .navbar-nocollapse .navbar-nav .open > a > .badge, -#app-header.navbar .navbar-nocollapse .navbar-nav .open > a > .bullet, -#app-header.navbar .navbar-nocollapse .navbar-nav .open > a > .label { - -webkit-box-shadow: 0 0 0 2px #f5f5f5; - box-shadow: 0 0 0 2px #f5f5f5; -} -#app-header.navbar .navbar-nocollapse .navbar-form { - background-color: #ffffff; - padding-top: 0; - padding-bottom: 0; - margin: 0; - position: absolute; - z-index: 1000; - top: -100%; - left: 0; - right: 0; - border-width: 0; - -webkit-box-shadow: none; - box-shadow: none; - -webkit-transition: top 0.3s ease; - -moz-transition: top 0.3s ease; - -ms-transition: top 0.3s ease; - -o-transition: top 0.3s ease; - transition: top 0.3s ease; -} -#app-header.navbar .navbar-nocollapse .navbar-form.open { - top: 0; - -webkit-transition: top 0.3s ease; - -moz-transition: top 0.3s ease; - -ms-transition: top 0.3s ease; - -o-transition: top 0.3s ease; - transition: top 0.3s ease; -} -#app-header.navbar .navbar-nocollapse .navbar-form .form-group, -#app-header.navbar .navbar-nocollapse .navbar-form .input-group { - margin-top: 14px; - margin-bottom: 14px; -} -#app-header.navbar .navbar-nocollapse .navbar-form .form-group .fa, -#app-header.navbar .navbar-nocollapse .navbar-form .input-group .fa { - color: rgba(0, 0, 0, 0.6); -} -#app-header.navbar .navbar-nocollapse .navbar-form .form-control { - background-color: rgba(0, 0, 0, 0.08); - border-color: transparent; -} -#app-header.navbar .navbar-nocollapse .navbar-form .form-control::-moz-placeholder { - color: rgba(0, 0, 0, 0.5); - opacity: 1; -} -#app-header.navbar .navbar-nocollapse .navbar-form .form-control:-ms-input-placeholder { - color: rgba(0, 0, 0, 0.5); -} -#app-header.navbar .navbar-nocollapse .navbar-form .form-control::-webkit-input-placeholder { - color: rgba(0, 0, 0, 0.5); -} -#app-header.navbar .navbar-nocollapse .navbar-left { - float: left !important; -} -#app-header.navbar .navbar-nocollapse .navbar-left .open .dropdown-menu { - left: 0; - right: auto; -} -#app-header.navbar .navbar-nocollapse .navbar-left .open.dropdown-custom .dropdown-menu { - left: 15px; - right: auto; -} -#app-header.navbar .navbar-nocollapse .navbar-right { - float: right !important; -} -#app-header.navbar .navbar-nocollapse .navbar-right .open > a:after { - z-index: 1003; - bottom: -7px; - margin-left: -8px; - border-width: 0 8px 8px; - border-color: transparent transparent #fff; - position: absolute; - content: ""; - left: 50%; - width: 0; - height: 0; - border-style: solid; -} -#app-header.navbar .navbar-nocollapse .navbar-right .open > a:before { - z-index: 1002; - bottom: -6px; - margin-left: -9px; - border-width: 0 9px 9px; - border-color: transparent transparent rgba(0, 0, 0, 0.06); - position: absolute; - content: ""; - left: 50%; - width: 0; - height: 0; - border-style: solid; -} -#app-header.navbar .navbar-nocollapse .navbar-right .open .dropdown-menu { - left: auto; - right: 0; -} -#app-header.navbar .navbar-nocollapse .navbar-right .open.dropdown-custom .dropdown-menu { - left: auto; - right: 15px; -} -@media (min-width: 768px) { - .header-fixed #app-header.navbar ~ .app-sidebar { - padding-top: 60px; - } - .sidebar-minimized #app-header.navbar { - left: 60px !important; - } - #app-header.navbar .navbar-nocollapse .navbar-form { - position: static; - float: left; - } -} -.csstransforms3d.sidebar-open-ltr .app-sidebar.sidebar-left { - -webkit-transform: translate3d(230px, 0, 0); - transform: translate3d(230px, 0, 0); -} -.no-csstransforms3d.sidebar-open-ltr .app-sidebar.sidebar-left { - left: 0; -} -.csstransforms3d.sidebar-open-rtl .app-sidebar.sidebar-right { - -webkit-transform: translate3d(-230px, 0, 0); - transform: translate3d(-230px, 0, 0); -} -.csstransforms3d.sidebar-open-rtl .app-sidebar.sidebar-left { - -webkit-transform: translate3d(-230px, 0, 0); - transform: translate3d(-230px, 0, 0); -} -.no-csstransforms3d.sidebar-open-rtl .app-sidebar.sidebar-right { - right: 0; -} -.no-csstransforms3d.sidebar-open-rtl .app-sidebar.sidebar-left { - left: -230px; -} -.app-sidebar { - position: fixed; - z-index: 990; - top: 0; - bottom: 0; -} -.app-sidebar.sidebar-left { - width: 230px; - left: -230px; - background-color: #1d232b; - box-shadow: inset -1px 0 0 0 rgba(0, 0, 0, 0.05); - color: rgba(255, 255, 255, 0.55); - -webkit-transition: all 0.3s ease; - -moz-transition: all 0.3s ease; - -ms-transition: all 0.3s ease; - -o-transition: all 0.3s ease; - transition: all 0.3s ease; -} -.app-sidebar.sidebar-left .sidebar-header, -.app-sidebar.sidebar-left .sidebar-footer { - -webkit-transition: width 0.3s ease; - -moz-transition: width 0.3s ease; - -ms-transition: width 0.3s ease; - -o-transition: width 0.3s ease; - transition: width 0.3s ease; - width: 230px; - background-color: {{sidebar_background}}; -} -.app-sidebar.sidebar-left .sidebar-header > .mautic-brand > .mautic-logo-text { - opacity: 1; - margin-left: 3px; - -webkit-transition: opacity 0.3s ease 0.1s, margin-left 0s ease 0.2s; - -moz-transition: opacity 0.3s ease 0.1s, margin-left 0s ease 0.2s; - -ms-transition: opacity 0.3s ease 0.1s, margin-left 0s ease 0.2s; - -o-transition: opacity 0.3s ease 0.1s, margin-left 0s ease 0.2s; - transition: opacity 0.3s ease 0.1s, margin-left 0s ease 0.2s; -} -.app-sidebar.sidebar-left .sidebar-header > .mautic-brand { - -webkit-transition: padding-left 0.3s ease; - -moz-transition: padding-left 0.3s ease; - -ms-transition: padding-left 0.3s ease; - -o-transition: padding-left 0.3s ease; - transition: padding-left 0.3s ease; -} -.app-sidebar.sidebar-left .sidebar-content { - padding-right: 1px; -} -.app-sidebar.sidebar-left .nav-sidebar > .nav > li.nav-group:after { - content: ''; - position: absolute; - right: 0; - left: 50px; - bottom: 0; - border-bottom: 1px solid #202830; -} -.app-sidebar.sidebar-left .nav-sidebar > .nav > li > a { - color: rgba(255, 255, 255, 0.5); -} -.app-sidebar.sidebar-left .nav-sidebar > .nav > li > a:hover, -.app-sidebar.sidebar-left .nav-sidebar > .nav > li > a:focus { - background-color: #1d232b; - color: rgba(255, 255, 255, 0.75); -} -.app-sidebar.sidebar-left .nav-sidebar > .nav > li.active > a, -.app-sidebar.sidebar-left .nav-sidebar > .nav > li.open > a { - background-color: #1d232b; - color: rgba(255, 255, 255, 0.75); -} -.app-sidebar.sidebar-left .nav-sidebar > .nav > li.active > .nav-submenu, -.app-sidebar.sidebar-left .nav-sidebar > .nav > li.open > .nav-submenu { - background-color: #171c22; -} -.app-sidebar.sidebar-left .nav-sidebar > .nav > li > .nav-submenu { - background-color: #1a2026; -} -.app-sidebar.sidebar-left .nav-sidebar > .nav > li > .nav-submenu:after { - background-color: #212831; -} -.app-sidebar.sidebar-left .nav-sidebar > .nav > li > .nav-submenu > li:after { - background-color: #222a32; - box-shadow: 0 0 0 2px #1a2026; -} -.app-sidebar.sidebar-left .nav-sidebar > .nav > li > .nav-submenu > li > a { - color: rgba(255, 255, 255, 0.5); -} -.app-sidebar.sidebar-left .nav-sidebar > .nav > li > .nav-submenu > li > a:hover, -.app-sidebar.sidebar-left .nav-sidebar > .nav > li > .nav-submenu > li > a:focus { - color: rgba(255, 255, 255, 0.8); -} -.app-sidebar.sidebar-left .nav-sidebar > .nav > li > .nav-submenu > li.active > a, -.app-sidebar.sidebar-left .nav-sidebar > .nav > li > .nav-submenu > li.open > a { - color: rgba(255, 255, 255, 0.8); -} -.app-sidebar.sidebar-left .nav-sidebar > .nav .nav-heading { - color: rgba(255, 255, 255, 0.25); -} -.app-sidebar.sidebar-left .nav-sidebar > .nav .nav-divider { - background-color: rgba(255, 255, 255, 0.06); -} -.app-sidebar.sidebar-left .nav.sidebar-left-dark, -.app-sidebar.sidebar-left .nav.sidebar-left-dark > li > a:hover { - background: #0c0f12; -} -.app-sidebar.sidebar-right { - width: 230px; - right: -230px; - background-color: #1d232b; - box-shadow: inset 1px 0 0 0 rgba(0, 0, 0, 0.05); - color: rgba(255, 255, 255, 0.55); - -webkit-transition: all 0.3s ease; - -moz-transition: all 0.3s ease; - -ms-transition: all 0.3s ease; - -o-transition: all 0.3s ease; - transition: all 0.3s ease; -} -.app-sidebar.sidebar-right .sidebar-header, -.app-sidebar.sidebar-right .sidebar-footer { - width: 230px; - background-color: #232b34; -} -.app-sidebar.sidebar-right .sidebar-content { - padding-left: 1px; - top: 60px; -} -.app-sidebar.sidebar-right .nav-sidebar > .nav > li.nav-group:after { - content: ''; - position: absolute; - right: 0; - left: 50px; - bottom: 0; - border-bottom: 1px solid #202830; -} -.app-sidebar.sidebar-right .nav-sidebar > .nav > li > a { - color: rgba(255, 255, 255, 0.5); -} -.app-sidebar.sidebar-right .nav-sidebar > .nav > li > a:hover, -.app-sidebar.sidebar-right .nav-sidebar > .nav > li > a:focus { - background-color: #1d232b; - color: rgba(255, 255, 255, 0.75); -} -.app-sidebar.sidebar-right .nav-sidebar > .nav > li.active > a, -.app-sidebar.sidebar-right .nav-sidebar > .nav > li.open > a { - background-color: #1d232b; - color: rgba(255, 255, 255, 0.75); -} -.app-sidebar.sidebar-right .nav-sidebar > .nav > li.active > .nav-submenu, -.app-sidebar.sidebar-right .nav-sidebar > .nav > li.open > .nav-submenu { - background-color: #171c22; -} -.app-sidebar.sidebar-right .nav-sidebar > .nav > li > .nav-submenu { - background-color: #1a2026; -} -.app-sidebar.sidebar-right .nav-sidebar > .nav > li > .nav-submenu:after { - background-color: #212831; -} -.app-sidebar.sidebar-right .nav-sidebar > .nav > li > .nav-submenu > li:after { - background-color: #222a32; - box-shadow: 0 0 0 2px #1a2026; -} -.app-sidebar.sidebar-right .nav-sidebar > .nav > li > .nav-submenu > li > a { - color: rgba(255, 255, 255, 0.5); -} -.app-sidebar.sidebar-right .nav-sidebar > .nav > li > .nav-submenu > li > a:hover, -.app-sidebar.sidebar-right .nav-sidebar > .nav > li > .nav-submenu > li > a:focus { - color: rgba(255, 255, 255, 0.8); -} -.app-sidebar.sidebar-right .nav-sidebar > .nav > li > .nav-submenu > li.active > a, -.app-sidebar.sidebar-right .nav-sidebar > .nav > li > .nav-submenu > li.open > a { - color: rgba(255, 255, 255, 0.8); -} -.app-sidebar.sidebar-right .nav-sidebar > .nav .nav-heading { - color: rgba(255, 255, 255, 0.25); -} -.app-sidebar.sidebar-right .nav-sidebar > .nav .nav-divider { - background-color: rgba(255, 255, 255, 0.06); -} -.app-sidebar .sidebar-header { - z-index: 100; - height: 60px; - padding-left: 15px; - padding-right: 15px; -} -.header-fixed .app-sidebar .sidebar-header { - position: absolute; - top: 0; - box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.06); -} -.app-sidebar .sidebar-header ~ .sidebar-content { - top: 60px; -} -.app-sidebar .sidebar-footer { - position: absolute; - bottom: 0; - z-index: 9; - height: 46px; - padding-left: 15px; - padding-right: 15px; - box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.07); -} -.app-sidebar .sidebar-footer .form-control { - color: #999999; -} -.app-sidebar .sidebar-footer ~ .sidebar-content { - bottom: 46px; -} -.app-sidebar .sidebar-content { - position: absolute; - top: 0; - bottom: 0; - width: 100%; -} -.app-sidebar .sidebar-content .nav.nav-tabs { - border-bottom: 1px solid #1b2128; - box-shadow: none; -} -.app-sidebar .sidebar-content .nav.nav-tabs > li { - margin-bottom: 0; -} -.app-sidebar .sidebar-content .nav.nav-tabs > li > a { - border-width: 0; - border-radius: 0; - margin-right: 0; - padding-top: 12px; - padding-bottom: 12px; - color: rgba(255, 255, 255, 0.45); - background-color: transparent; -} -.app-sidebar .sidebar-content .nav.nav-tabs > li > a:hover, -.app-sidebar .sidebar-content .nav.nav-tabs > li > a:focus { - color: rgba(255, 255, 255, 0.85); - background-color: transparent; -} -.app-sidebar .sidebar-content .nav.nav-tabs > li.active > a { - overflow: visible; -} -.app-sidebar .sidebar-content .nav.nav-tabs > li.active > a, -.app-sidebar .sidebar-content .nav.nav-tabs > li.active > a:hover, -.app-sidebar .sidebar-content .nav.nav-tabs > li.active > a:focus { - color: rgba(255, 255, 255, 0.85); - background-color: rgba(0, 0, 0, 0.06); -} -.app-sidebar .sidebar-content .nav.nav-tabs > li.active > a:after { - top: auto; - bottom: -1px; - height: 1px; -} -.app-sidebar .nav-sidebar > .nav > li > a { - overflow: hidden; - padding: 12px 20px; - -webkit-transition: all 0.15s ease; - -moz-transition: all 0.15s ease; - -ms-transition: all 0.15s ease; - -o-transition: all 0.15s ease; - transition: all 0.15s ease; -} -.app-sidebar .nav-sidebar > .nav > li > a .text { - -webkit-transition: opacity 0.3s ease 0.1s, margin-left 0s ease 0.2s; - -moz-transition: opacity 0.3s ease 0.1s, margin-left 0s ease 0.2s; - -ms-transition: opacity 0.3s ease 0.1s, margin-left 0s ease 0.2s; - -o-transition: opacity 0.3s ease 0.1s, margin-left 0s ease 0.2s; - transition: opacity 0.3s ease 0.1s, margin-left 0s ease 0.2s; - opacity: 1; - margin-left: 0; - position: relative; - top: -1px; - display: block; -} -.app-sidebar .nav-sidebar > .nav > li > a .icon { - font-weight: normal; - font-size: 14px; - min-width: 26px; - display: block; -} -.app-sidebar .nav-sidebar > .nav > li > a .arrow { - -webkit-transition: opacity 0.3s ease 0.1s, margin-left 0s ease 0.2s; - -moz-transition: opacity 0.3s ease 0.1s, margin-left 0s ease 0.2s; - -ms-transition: opacity 0.3s ease 0.1s, margin-left 0s ease 0.2s; - -o-transition: opacity 0.3s ease 0.1s, margin-left 0s ease 0.2s; - transition: opacity 0.3s ease 0.1s, margin-left 0s ease 0.2s; - opacity: 1; - margin-left: 0; - font-family: 'FontAwesome'; - position: relative; - top: 1px; - display: block; -} -.app-sidebar .nav-sidebar > .nav > li > a .arrow:after { - content: "\f0da"; -} -.app-sidebar .nav-sidebar > .nav > li.open > a .arrow:after, -.app-sidebar .nav-sidebar > .nav > li.active > a .arrow:after { - content: "\f0d7"; -} -.app-sidebar .nav-sidebar > .nav > li.open > a .icon, -.app-sidebar .nav-sidebar > .nav > li.active > a .icon { - color: #fdb933; -} -.app-sidebar .nav-sidebar > .nav > li > .nav-submenu { - position: relative; - padding-left: 50px; -} -.app-sidebar .nav-sidebar > .nav > li > .nav-submenu:after { - content: ''; - position: absolute; - top: 0; - bottom: 0; - left: 26px; - z-index: 1; - width: 1px; -} -.app-sidebar .nav-sidebar > .nav > li > .nav-submenu > li { - position: relative; - list-style: none; -} -.app-sidebar .nav-sidebar > .nav > li > .nav-submenu > li:after { - content: ''; - position: absolute; - z-index: 2; - top: 11px; - left: -27px; - width: 7px; - height: 7px; - border-radius: 7px; -} -.app-sidebar .nav-sidebar > .nav > li > .nav-submenu > li.active:after { - background-color: #fdb933 !important; -} -.app-sidebar .nav-sidebar > .nav > li > .nav-submenu > li > a { - display: block; - padding: 5px 20px 5px 0px; - -webkit-transition: all 0.15s ease; - -moz-transition: all 0.15s ease; - -ms-transition: all 0.15s ease; - -o-transition: all 0.15s ease; - transition: all 0.15s ease; -} -.app-sidebar .nav-sidebar > .nav .nav-heading { - text-transform: uppercase; - padding: 10px 18px; -} -.app-sidebar .nav-sidebar > .nav .nav-heading:first-child { - padding-top: 20px; -} -.app-sidebar .nav-sidebar .sidebar-minimizer > .direction:after { - font-family: 'FontAwesome'; - content: '\f053'; -} -.app-sidebar .nav-sidebar .sidebar-minimizer.active .direction:after { - content: '\f054'; -} -@media (min-width: 768px) { - .app-sidebar.sidebar-left { - left: 0; - } - .app-sidebar.sidebar-left ~ #app-header.navbar { - left: 230px; - } - .app-sidebar.sidebar-left ~ #app-content { - margin-left: 230px; - } - .sidebar-left-collapse .app-sidebar.sidebar-left ~ #app-content { - margin-left: 60px; - } - .app-sidebar.sidebar-left ~ #app-footer { - margin-left: 230px; - } - .sidebar-left-collapse .app-sidebar.sidebar-left ~ #app-footer { - margin-left: 60px; - } - .sidebar-minimized .app-sidebar.sidebar-left { - width: 60px; - } - .sidebar-minimized .app-sidebar.sidebar-left .nav-sidebar { - margin-top: 10px; - } - .sidebar-minimized .app-sidebar.sidebar-left .nav-sidebar > .nav > li > a { - padding-top: 12px; - padding-bottom: 12px; - } - .sidebar-minimized .app-sidebar.sidebar-left .nav-sidebar > .nav > li.nav-heading, - .sidebar-minimized .app-sidebar.sidebar-left .nav-sidebar > .nav > li > a .arrow, - .sidebar-minimized .app-sidebar.sidebar-left .nav-sidebar > .nav > li > a .badge, - .sidebar-minimized .app-sidebar.sidebar-left .nav-sidebar > .nav > li > a .text, - .sidebar-minimized .app-sidebar.sidebar-left .nav-sidebar > .nav > li > a .label { - /* override default margin-left transition as any delay throws Chrome off */ - -webkit-transition: none; - -moz-transition: none; - -ms-transition: none; - -o-transition: none; - transition: none; - /* hide everything but the icon; using margin and opacity since display can't be transitioned */ - margin-left: -500px; - opacity: 0; - } - .sidebar-minimized .app-sidebar.sidebar-left .nav-sidebar > .nav > li > a .icon { - min-width: 0; - width: 100%; - /* text-align: center; */ - } - .sidebar-minimized .app-sidebar.sidebar-left .nav-sidebar > .nav > li > .nav-submenu { - display: none; - height: auto !important; - position: absolute; - z-index: -1; - top: 0; - padding-top: 10px; - padding-bottom: 10px; - padding-left: 30px; - min-width: 180px; - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; - } - .sidebar-minimized .app-sidebar.sidebar-left .nav-sidebar > .nav > li > .nav-submenu:after { - left: 16px; - } - .sidebar-minimized .app-sidebar.sidebar-left .nav-sidebar > .nav > li > .nav-submenu > li:after { - left: -17px; - } - .sidebar-minimized .app-sidebar.sidebar-left .nav-sidebar > .nav > li.hover > .nav-submenu { - display: block; - left: 60px; - } - .sidebar-minimized .app-sidebar.sidebar-left .sidebar-content > .scroll-wrapper, - .sidebar-minimized .app-sidebar.sidebar-left .sidebar-content > .scroll-wrapper > .scroll-content { - overflow: visible !important; - } - .sidebar-minimized .app-sidebar.sidebar-left .sidebar-content > .scroll-wrapper > .scroll-bar { - display: none !important; - } - .sidebar-minimized .app-sidebar.sidebar-left .sidebar-header { - /* padding: 0; */ - width: 60px; - } - .sidebar-minimized .app-sidebar.sidebar-left .sidebar-header > .mautic-brand > .mautic-logo-text { - opacity: 0; - margin-left: -500px; - /* override default margin-left transition as any delay throws Chrome off */ - -webkit-transition: none; - -moz-transition: none; - -ms-transition: none; - -o-transition: none; - transition: none; - } - .sidebar-minimized .app-sidebar.sidebar-left .sidebar-header > .mautic-brand { - padding: 0; - } -} -.csstransforms3d.sidebar-open-ltr #app-content { - -webkit-transform: translate3d(230px, 0, 0); - transform: translate3d(230px, 0, 0); -} -.no-csstransforms3d.sidebar-open-ltr #app-content { - left: 230px; -} -.csstransforms3d.sidebar-open-rtl #app-content { - -webkit-transform: translate3d(-230px, 0, 0); - transform: translate3d(-230px, 0, 0); -} -.no-csstransforms3d.sidebar-open-rtl #app-content { - left: -230px; -} -#app-content { - position: relative; - -webkit-transition: all 0.3s ease; - -moz-transition: all 0.3s ease; - -ms-transition: all 0.3s ease; - -o-transition: all 0.3s ease; - transition: all 0.3s ease; -} -#app-content:before, -#app-content:after { - content: " "; - display: table; -} -#app-content:after { - clear: both; -} -#app-content > .content-body { - width: 100%; - float: left; -} -#app-content > .content-body .container-fluid.container-xs { - padding-left: 5px; - padding-right: 5px; -} -#app-content > .content-body .container-fluid.container-sm { - padding-left: 10px; - padding-right: 10px; -} -#app-content > .content-body .container-fluid.container-md { - padding-left: 15px; - padding-right: 15px; -} -#app-content > .content-body .container-fluid.container-lg { - padding-left: 20px; - padding-right: 20px; -} -#app-content.content-only { - width: 100%; -} -#app-content.content-only .page-header { - padding-top: 30px; - padding-left: 30px; - margin: -15px -15px 0 -15px; -} -#app-content.content-only.container { - padding-left: 0; - padding-right: 0; -} -@media (min-width: 768px) { - #app-content { - position: static; - } - .sidebar-minimized #app-content { - margin-left: 60px !important; - } -} -.csstransforms3d.sidebar-open-ltr #app-footer { - -webkit-transform: translate3d(230px, 0, 0); - transform: translate3d(230px, 0, 0); -} -.no-csstransforms3d.sidebar-open-ltr #app-footer { - left: 230px; -} -.csstransforms3d.sidebar-open-rtl #app-footer { - -webkit-transform: translate3d(-230px, 0, 0); - transform: translate3d(-230px, 0, 0); -} -.no-csstransforms3d.sidebar-open-rtl #app-footer { - left: -230px; - right: 230px; -} -#app-footer { - position: absolute; - left: 0; - right: 0; - bottom: 0; - z-index: 1000; - height: 46px; - line-height: 46px; - background-color: #fbfbfb; - -webkit-transition: all 0.3s ease; - -moz-transition: all 0.3s ease; - -ms-transition: all 0.3s ease; - -o-transition: all 0.3s ease; - transition: all 0.3s ease; -} -#app-footer ~ #app-content > .content-body { - padding-bottom: 46px; -} -#app-footer:after { - content: ""; - position: absolute; - z-index: -1; - left: 0; - right: 0; - top: -1px; - height: inherit; - border-top: 1px solid rgba(0, 0, 0, 0.05); -} -@media (min-width: 768px) { - .sidebar-minimized #app-footer { - margin-left: 60px !important; - } -} -hr, -.hr-expand { - margin-top: 15px; - margin-bottom: 15px; - border: 0; - border-top: 1px solid #ebedf0; -} -hr.hr-w-2, -.hr-expand.hr-w-2 { - border-width: 2px; -} -hr.hr-w-3, -.hr-expand.hr-w-3 { - border-width: 3px; -} -.hr-expand a.arrow { - display: inline-block; - position: relative; - top: -1px; - z-index: 1; - background-color: #f8f8f8; - padding: 0 15px; - margin: 0 15px; - border: 1px solid #ebedf0; - border-top-width: 0; - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.03); - font-size: 9px; - line-height: 22px; - text-transform: uppercase; -} -.hr-expand a.arrow > .caret { - margin-left: 0; - border-top: 0px; - border-bottom: 4px solid; -} -.hr-expand a.collapsed > .caret { - border-top: 4px solid; - border-bottom: 0px; -} -.hr-expand.hr-w-2 a.arrow { - top: -2px; -} -.hr-expand.hr-w-3 a.arrow { - top: -3px; -} -a:hover { - cursor: pointer; -} -a:hover, -a:focus { - text-decoration: none; -} -h1, -h2, -h3, -h4, -h5, -h6, -.h1, -.h2, -.h3, -.h4, -.h5, -.h6 { - margin-top: 0; - margin-bottom: 0; - color: inherit; -} -.ellipsis { - display: block; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} -.fs-base { - font-size: 13px; -} -.fs-2 { - font-size: 2px !important; -} -.fs-4 { - font-size: 4px !important; -} -.fs-6 { - font-size: 6px !important; -} -.fs-8 { - font-size: 8px !important; -} -.fs-10 { - font-size: 10px !important; -} -.fs-11 { - font-size: 11px !important; -} -.fs-12 { - font-size: 12px !important; -} -.fs-14 { - font-size: 14px !important; -} -.fs-16 { - font-size: 16px !important; -} -.fs-18 { - font-size: 18px !important; -} -.fs-20 { - font-size: 20px !important; -} -.fs-22 { - font-size: 22px !important; -} -.fs-24 { - font-size: 24px !important; -} -.fs-26 { - font-size: 26px !important; -} -.fs-28 { - font-size: 28px !important; -} -.fs-30 { - font-size: 30px !important; -} -.fs-32 { - font-size: 32px !important; -} -.fs-34 { - font-size: 34px !important; -} -.fs-36 { - font-size: 36px !important; -} -.fs-38 { - font-size: 38px !important; -} -.fs-40 { - font-size: 40px !important; -} -.fs-42 { - font-size: 42px !important; -} -.fs-44 { - font-size: 44px !important; -} -.fs-46 { - font-size: 46px !important; -} -.fs-48 { - font-size: 48px !important; -} -.fs-50 { - font-size: 50px !important; -} -.fs-52 { - font-size: 52px !important; -} -.fs-54 { - font-size: 54px !important; -} -.fs-56 { - font-size: 56px !important; -} -.page-header { - background-color: #fbfbfb; - padding: 15px; - margin: 0; - border-bottom: 0; - border-bottom: 1px solid #fff; - box-shadow: inset 0 -1px 0 0 #e5e8eb; -} -.page-header .breadcrumb { - padding: 5px 0; - background-color: inherit; - border-radius: 0; -} -.container .page-header { - margin: -15px -15px 15px -15px; -} -.container.container-xs .page-header { - margin: -5px -5px 5px -5px; -} -.container.container-sm .page-header { - margin: -10px -10px 10px -10px; -} -.container.container-md .page-header { - margin: -15px -15px 15px -15px; -} -.container.container-lg .page-header { - margin: -20px -20px 20px -20px; -} -.fw-b { - font-weight: 700; -} -.fw-sb { - font-weight: 600; -} -.fw-n { - font-weight: 400; -} -.fw-t { - font-weight: 300; -} -.tt-u { - text-transform: uppercase; -} -.text-muted { - color: #8393a2; -} -a.text-muted:hover { - color: #68798a; -} -.text-white { - color: #ffffff; -} -a.text-white:hover { - color: #e6e6e6; -} -.text-white.light-xs { - color: #ffffff; -} -a.text-white.light-xs:hover { - color: #ffffff; -} -.text-white.dark-xs { - color: #d9d9d9; -} -a.text-white.dark-xs:hover { - color: #cccccc; -} -.text-white.dark-sm { - color: #b3b3b3; -} -a.text-white.dark-sm:hover { - color: #a6a6a6; -} -.text-white.dark-md { - color: #8c8c8c; -} -a.text-white.dark-md:hover { - color: #808080; -} -.text-white.dark-lg { - color: #666666; -} -a.text-white.dark-lg:hover { - color: #595959; -} -.text-primary { - color: {{mautic_primary}}; -} -a.text-primary:hover { - color: {{mautic_primary}}; -} -.text-success { - color: #00b49c; -} -a.text-success:hover { - color: #008170; -} -.text-success.light-xs { - color: #01ffdd; -} -a.text-success.light-xs:hover { - color: #00e7c8; -} -.text-success.dark-xs { - color: #00685a; -} -a.text-success.dark-xs:hover { - color: #004e44; -} -.text-success.dark-sm { - color: #001b17; -} -a.text-success.dark-sm:hover { - color: #000201; -} -.text-success.dark-md { - color: #000000; -} -a.text-success.dark-md:hover { - color: #000000; -} -.text-success.dark-lg { - color: #000000; -} -a.text-success.dark-lg:hover { - color: #000000; -} -.text-warning { - color: #fdb933; -} -a.text-warning:hover { - color: #fba702; -} -.text-danger { - color: #f86b4f; -} -a.text-danger:hover { - color: #f6421e; -} -.text-info { - color: #35b4b9; -} -a.text-info:hover { - color: #2a8d91; -} -.text-twitter { - color: #55acee; -} -a.text-twitter:hover { - color: #2795e9; -} -.text-facebook { - color: #3b5998; -} -a.text-facebook:hover { - color: #2d4373; -} -.text-google { - color: #dd4b39; -} -a.text-google:hover { - color: #c23321; -} -blockquote { - padding-left: 40px; - border-width: 0px; -} -blockquote > p { - position: relative; - font-style: italic; - font-size: 18px !important; -} -blockquote > p:before { - position: absolute; - top: -1px; - margin-left: -25px; - font-family: "FontAwesome"; - font-size: 18px; - content: "\f10d"; - color: #ebedf0; -} -blockquote > p:after { - position: absolute; - bottom: -1px; - margin-left: 5px; - font-family: "FontAwesome"; - font-size: 18px; - content: "\f10e"; - color: #ebedf0; -} -.blockquote-reverse { - padding-left: 20px; - padding-right: 40px; - border-width: 0px; -} -.touch .scroll-content { - height: 100%; - overflow-y: scroll; - -ms-overflow-style: -ms-autohiding-scrollbar; - -webkit-overflow-scrolling: touch; -} -.no-touch .scroll-wrapper, -.no-touch .scroll-wrapper > .scroll-content { - height: 100%; -} -.no-touch .scroll-wrapper > .scroll-rail { - display: none !important; -} -.no-touch .scroll-wrapper > .scroll-bar { - background-color: gray !important; - right: 3px !important; -} -.btn, -.btn:active, -.btn.active { - outline: 0; -} -.btn .fa { - min-width: 13px; -} -.btn > .caret { - margin-top: -1px; -} -.btn.btn-rounded { - border-radius: 32px; - padding-left: 16px; - padding-right: 16px; -} -.btn.btn-circle { - width: 32px; - padding-left: 0; - padding-right: 0; - border-radius: 50%; -} -.btn.btn-circle.btn-lg { - width: 43px; -} -.btn.btn-circle.btn-sm { - width: 27px; -} -.btn.btn-circle.btn-xs { - width: 19px; -} -.btn.btn-outline { - background-color: transparent; - border-width: 1px; -} -.btn.btn-outline.btn-primary { - color: {{mautic_primary}}; -} -.btn.btn-outline.btn-success { - color: #00b49c; -} -.btn.btn-outline.btn-warning { - color: #fdb933; -} -.btn.btn-outline.btn-danger { - color: #f86b4f; -} -.btn.btn-outline.btn-info { - color: #35b4b9; -} -.btn-link { - font-weight: 600; -} -.btn-link:hover, -.btn-link:focus { - text-decoration: none; -} -.btn-group .btn ~ .btn, -.btn-group .btn ~ .btn-group, -.btn-group .btn-group ~ .btn, -.btn-group .btn-group ~ .btn-group { - margin-left: -1px; -} -.alert-dismissible .close, -.alert-dismissible .close { - top: -1px; -} -.alert-primary { - background: #aeb6d7; -} -.alert-secondary { - background: #feedcb; -} -.alert-tertiary { - background: #a3e2e4; -} -.alert-growl { - background: rgba(0, 0, 0, 0.8); - color: #FFFFFF; - border: 1px solid #000; -} -.alert-growl-container { - position: absolute; - top: 20px; - right: 20px; - z-index: 100000; -} -.alert-growl-container .alert-growl { - margin-bottom: 5px; -} -.alert-growl .close { - font-size: 13px; - color: #fff; - margin-left: 10px; -} -.alert .close { - font-size: 13px; - margin-left: 10px; -} -.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default, -.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current, -.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current { - background: #4e5e9e; - box-shadow: #495894 0px 1px 3px 0px inset; -} -.xdsoft_datetimepicker .xdsoft_calendar td:hover, -.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover { - background: #fdb933 !important; -} -.content-body .cke_chrome { - background: #f8f8f8; - border: 1px solid #f0f0f0; -} -.content-body .cke_bottom, -.content-body .cke_top { - background: #f8f8f8; -} -a.media { - display: block; -} -.media > a { - display: block; -} -.media.read { - opacity: .8; -} -.media.read a { - color: #52606d; -} -.media.new { - background-color: #f6f7f8; -} -.media-body { - display: block; -} -.media-heading { - display: block; -} -.media-heading > .bullet { - margin-top: -1px; -} -.media-list.media-list-feed { - position: relative; -} -.media-list.media-list-feed .media { - overflow: visible; -} -.media-list.media-list-feed .media > .media-object { - position: relative; - width: 28px; - text-align: center; -} -.media-list.media-list-feed .media > .media-object:before { - content: ''; - position: absolute; - top: -200%; - bottom: -200%; - width: 1px; - left: 50%; - background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9InJnYigyNTUsIDI1NSwgMjU1KSIgc3RvcC1vcGFjaXR5PSIwIi8+PHN0b3Agb2Zmc2V0PSIxMCUiIHN0b3AtY29sb3I9IiNlNWU1ZTUiIHN0b3Atb3BhY2l0eT0iMSIvPjxzdG9wIG9mZnNldD0iOTAlIiBzdG9wLWNvbG9yPSIjZTVlNWU1IiBzdG9wLW9wYWNpdHk9IjEiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9InJnYigyMjksIDIyOSwgMjI5KSIgc3RvcC1vcGFjaXR5PSIwIi8+PC9saW5lYXJHcmFkaWVudD48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2xlc3NoYXQtZ2VuZXJhdGVkKSIgLz48L3N2Zz4=); - background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #e5e5e5 10%, #e5e5e5 90%, rgba(229, 229, 229, 0) 100%); - background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #e5e5e5 10%, #e5e5e5 90%, rgba(229, 229, 229, 0) 100%); - background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #e5e5e5 10%, #e5e5e5 90%, rgba(229, 229, 229, 0) 100%); - background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #e5e5e5 10%, #e5e5e5 90%, rgba(229, 229, 229, 0) 100%); -} -.media-list.media-list-feed .media > .media-object > .figure { - position: relative; - z-index: 5; - display: inline-block; - width: 14px; - height: 14px; - text-align: center; - font-size: 12px; - border-radius: 50%; - background-color: #dce0e5; -} -.media-list.media-list-feed .media > .media-object > .figure.featured { - width: 20px; - height: 20px; - line-height: 19px; -} -.media-list.media-list-feed .media:first-child > .media-object:before { - top: 0; -} -.media-list.media-list-contact > .media-heading { - padding: 15px 15px 5px; - font-weight: 600; - font-size: 12px; - margin-bottom: 0; -} -.media-list.media-list-contact > .media { - margin: 0; - border-bottom: 1px solid rgba(0, 0, 0, 0.05); -} -.media-list.media-list-contact > .media a { - padding: 10px 15px; -} -.media-list.media-list-contact > .media a:hover, -.media-list.media-list-contact > .media a:focus { - background-color: transparent; -} -.media-list.media-list-bubble > .media { - padding: 15px; -} -.media-list.media-list-bubble > .media:after { - display: none; -} -.media-list.media-list-bubble > .media .media-object { - position: relative; - float: left; - margin-right: 15px; -} -.media-list.media-list-bubble > .media .media-object:after { - content: ""; - position: absolute; - top: 7px; - right: -18px; - width: 0px; - height: 0px; - border-style: solid; - border-width: 10px 10px 10px 0; - border-color: transparent #f3f3f3 transparent transparent; -} -.media-list.media-list-bubble > .media .media-body .media-text { - display: inline-block; - padding: 8px; - color: #52606d; - background-color: #f3f3f3; - border-radius: 3px; -} -.media-list.media-list-bubble > .media.media-right .media-object { - float: right; - margin-left: 15px; - margin-right: 0px; -} -.media-list.media-list-bubble > .media.media-right .media-object:after { - left: -18px; - right: auto; - border-width: 10px 0 10px 10px; - border-color: transparent transparent transparent {{mautic_primary}}; -} -.media-list.media-list-bubble > .media.media-right .media-body { - text-align: right; -} -.media-list.media-list-bubble > .media.media-right .media-body .media-text { - color: #f2f2f2; - background-color: {{mautic_primary}}; -} -.extra-menu { - height: 60px; - padding-top: 20px; - position: absolute; - right: 15px; -} -.extra-menu a { - font-size: 1.1em; - color: rgba(255, 255, 255, 0.55); -} -.extra-menu a:hover { - color: #fff; -} -.list-group-item > a { - position: relative; - z-index: 1; - display: block; -} -a.list-group-item:hover, -a.list-group-item:focus { - z-index: 2; -} -label.list-group-item { - color: #555555; -} -label.list-group-item .list-group-item-heading { - color: #333333; -} -label.list-group-item:hover, -label.list-group-item:focus { - text-decoration: none; - color: #555555; - background-color: #f5f5f5; -} -.caret { - margin-top: -1px; -} -.dropdown-menu { - -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.06); - box-shadow: 0 3px 6px rgba(0, 0, 0, 0.06); -} -.dropdown-menu .divider { - margin: 5px 0; -} -.dropdown-menu .panel { - -webkit-box-shadow: none; - box-shadow: none; - border-radius: 0; - border-width: 0; - margin-bottom: 0; - margin-top: -5px; - margin-bottom: -5px; -} -.dropdown-menu .panel .panel-heading { - border-radius: 0; -} -.dropdown-menu > li > a { - position: relative; - z-index: 1; - margin-top: -1px; - padding: 5px 20px; - border-top: 1px solid transparent; - border-bottom: 1px solid transparent; -} -.dropdown-menu > li > a .fa { - min-width: 15px; -} -.dropdown-menu > li > a:hover, -.dropdown-menu > li > a:focus { - z-index: 2; - border-color: #f3f3f3; -} -.dropdown-menu > .active > a, -.dropdown-menu > .active > a:hover, -.dropdown-menu > .active > a:focus { - color: #596776; - background-color: #f0f0f0; -} -.scrollable-menu { - height: auto; - max-height: 200px; - overflow-x: hidden; -} -ul.dropdown-menu-form { - padding: 0 5px 0 30px; - max-height: 300px; - overflow-y: auto; -} -.nav > li > a { - font-weight: normal; -} -.nav > li > a .text, -.nav > li > a .icon, -.nav > li > a .arrow { - line-height: 18px; -} -.nav .open > a, -.nav .open > a:hover, -.nav .open > a:focus { - background-color: transparent; -} -.nav .nav-divider { - background-color: rgba(0, 0, 0, 0.05); -} -.nav .nav-heading { - font-size: 12px; - font-weight: 600; - padding: 10px 18px; - padding-bottom: 5px; - color: #a0acb8; -} -.nav-tabs { - border-top-right-radius: 3px; - border-top-left-radius: 3px; - -webkit-box-shadow: inset 0 -3px 8px -3px rgba(0, 0, 0, 0.05); - box-shadow: inset 0 -3px 8px -3px rgba(0, 0, 0, 0.05); -} -.nav-tabs > li > a { - line-height: 20px; -} -.nav-tabs > li.active > a { - overflow: hidden; - border-top-color: transparent; -} -.nav-tabs > li.active > a:after { - content: ''; - position: absolute; - top: 0; - left: 0; - right: 0; - height: 2px; - background-color: {{mautic_primary}}; -} -/* -.tab-content { - > .tab-pane { - border: 1px solid @nav-tabs-active-link-hover-border-color; - border-top-width: 0; - border-bottom-right-radius: @nav-pills-border-radius; - border-bottom-left-radius: @nav-pills-border-radius; - } -} -*/ -.nav-pills > li + li { - margin-left: 5px; -} -.notes { - overflow: hidden; - height: auto; - position: relative; - padding: 0px; - list-style-type: none; -} -.notes li > .panel > .panel-body { - display: table !important; - width: 100%; - table-layout: fixed; - border-spacing: 0; -} -.notes li > .panel > .panel-body [class*=" icon"], -.notes li > .panel > .panel-body [class^="icon"] { - position: static; - padding: 0; -} -.notes li > .panel > .panel-body [class*=" icon"].height-auto:before, -.notes li > .panel > .panel-body [class^="icon"].height-auto:before { - content: ""; - position: absolute; - width: inherit; - top: 0; - bottom: 0; - z-index: -1; - background-color: inherit; - border: inherit; -} -.notes li > .panel > .panel-body [class*=" icon"].bdr-l.height-auto:before, -.notes li > .panel > .panel-body [class^="icon"].bdr-l.height-auto:before { - margin-left: -1px; -} -.notes li > .panel > .panel-body [class*=" icon"].bdr-r.height-auto:before, -.notes li > .panel > .panel-body [class^="icon"].bdr-r.height-auto:before { - margin-right: -1px; -} -.notes li > .panel > .panel-body > .col-xs-1 { - vertical-align: middle; -} -.notes li > .panel > .panel-body > .col-xs-2, -.notes li > .panel > .panel-body > .col-xs-3, -.notes li > .panel > .panel-body > .col-xs-4, -.notes li > .panel > .panel-body > .col-xs-5, -.notes li > .panel > .panel-body > .col-xs-6, -.notes li > .panel > .panel-body > .col-xs-7, -.notes li > .panel > .panel-body > .col-xs-8, -.notes li > .panel > .panel-body > .col-xs-9, -.notes li > .panel > .panel-body > .col-xs-10, -.notes li > .panel > .panel-body > .col-xs-11, -.notes li > .panel > .panel-body > .cell { - display: table-cell; - vertical-align: top; - height: 100%; - float: none; -} -.notes li > .panel > .panel-body > .cell { - width: 100%; -} -@media (min-width: 768px) { - .notes li > .panel > .panel-body > .col-sm-1, - .notes li > .panel > .panel-body > .col-sm-2, - .notes li > .panel > .panel-body > .col-sm-3, - .notes li > .panel > .panel-body > .col-sm-4, - .notes li > .panel > .panel-body > .col-sm-5, - .notes li > .panel > .panel-body > .col-sm-6, - .notes li > .panel > .panel-body > .col-sm-7, - .notes li > .panel > .panel-body > .col-sm-8, - .notes li > .panel > .panel-body > .col-sm-9, - .notes li > .panel > .panel-body > .col-sm-10, - .notes li > .panel > .panel-body > .col-sm-11 { - display: table-cell; - vertical-align: top; - height: 100%; - float: none; - } -} -@media (min-width: 992px) { - .notes li > .panel > .panel-body > .col-md-1, - .notes li > .panel > .panel-body > .col-md-2, - .notes li > .panel > .panel-body > .col-md-3, - .notes li > .panel > .panel-body > .col-md-4, - .notes li > .panel > .panel-body > .col-md-5, - .notes li > .panel > .panel-body > .col-md-6, - .notes li > .panel > .panel-body > .col-md-7, - .notes li > .panel > .panel-body > .col-md-8, - .notes li > .panel > .panel-body > .col-md-9, - .notes li > .panel > .panel-body > .col-md-10, - .notes li > .panel > .panel-body > .col-md-11 { - display: table-cell; - vertical-align: top; - height: 100%; - float: none; - } -} -@media (min-width: 1200px) { - .notes li > .panel > .panel-body > .col-lg-1, - .notes li > .panel > .panel-body > .col-lg-2, - .notes li > .panel > .panel-body > .col-lg-3, - .notes li > .panel > .panel-body > .col-lg-4, - .notes li > .panel > .panel-body > .col-lg-5, - .notes li > .panel > .panel-body > .col-lg-6, - .notes li > .panel > .panel-body > .col-lg-7, - .notes li > .panel > .panel-body > .col-lg-8, - .notes li > .panel > .panel-body > .col-lg-9, - .notes li > .panel > .panel-body > .col-lg-10, - .notes li > .panel > .panel-body > .col-lg-11 { - display: table-cell; - vertical-align: top; - height: 100%; - float: none; - } -} -.bullet { - display: inline-block; - vertical-align: middle; - width: 6px; - height: 6px; - border-radius: 50%; - background-color: #a0acb8; -} -.bullet.bullet-primary { - background-color: {{mautic_primary}}; -} -.bullet.bullet-success { - background-color: #00b49c; -} -.bullet.bullet-info { - background-color: #35b4b9; -} -.bullet.bullet-warning { - background-color: #fdb933; -} -.bullet.bullet-danger { - background-color: #f86b4f; -} -.label { - display: inline-block; - line-height: 1.5; - padding: 0.25em 0.6em 0.15em 0.6em; - border-radius: 2px; - text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1); -} -.badge { - padding-top: 0px; - padding-bottom: 0px; - font-size: 10px; - text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1); -} -.mautic-brand { - display: block; - height: 60px; - padding-left: 35px; - padding-right: 32px; - width: 100%; - overflow: hidden; -} -.mautic-brand.pull-left { - width: 75%; -} -.mautic-brand > svg.mautic-logo-figure { - width: 32px; - height: 60px; -} -.mautic-brand > svg.mautic-logo-figure .circle { - fill: #ffffff; -} -.mautic-brand > svg.mautic-logo-figure .m, -.mautic-brand > svg.mautic-logo-figure .m-arrow { - fill: #fdb933; -} -.mautic-brand > svg.mautic-logo-text { - height: 60px; - width: 98px; -} -.mautic-brand > svg.mautic-logo-text .m, -.mautic-brand > svg.mautic-logo-text .a, -.mautic-brand > svg.mautic-logo-text .u, -.mautic-brand > svg.mautic-logo-text .t, -.mautic-brand > svg.mautic-logo-text .i, -.mautic-brand > svg.mautic-logo-text .c { - fill: #ffffff; -} -label { - font-weight: 600; -} -.control-label.text-left { - text-align: left; -} -.form-control { - -webkit-box-shadow: none; - box-shadow: none; - -webkit-transition: border-color ease-in-out .15s; - -moz-transition: border-color ease-in-out .15s; - -ms-transition: border-color ease-in-out .15s; - -o-transition: border-color ease-in-out .15s; - transition: border-color ease-in-out .15s; -} -.form-control.form-control-rounded { - border-radius: 32px; -} -.form-stack .form-control { - position: relative; - border-radius: 0; -} -.form-stack .form-control:focus { - z-index: 1; -} -.form-stack .form-control + .form-control { - margin-top: -1px; -} -.form-stack .form-control:first-child { - border-radius: 3px 3px 0 0; -} -.form-stack .form-control:last-child { - border-radius: 0 0 3px 3px; -} -.form-stack .form-control.input-lg:first-child { - border-radius: 4px 4px 0 0; -} -.form-stack .form-control.input-lg:last-child { - border-radius: 0 0 4px 4px; -} -.form-stack .form-control.input-sm:first-child { - border-radius: 2px 2px 0 0; -} -.form-stack .form-control.input-sm:last-child { - border-radius: 0 0 2px 2px; -} -.form-stack .form-control-icon:first-child > .form-control { - border-radius: 3px 3px 0 0; -} -.form-stack .form-control-icon:first-child > .form-control.input-lg { - border-radius: 4px 4px 0 0; -} -.form-stack .form-control-icon:first-child > .form-control.input-sm { - border-radius: 2px 2px 0 0; -} -.form-stack .form-control-icon:last-child > .form-control { - border-radius: 0 0 3px 3px; -} -.form-stack .form-control-icon:last-child > .form-control.input-lg { - border-radius: 0 0 4px 4px; -} -.form-stack .form-control-icon:last-child > .form-control.input-sm { - border-radius: 0 0 2px 2px; -} -.form-stack .form-control-icon + .form-control-icon { - margin-top: -1px; -} -.form-control-icon { - position: relative; -} -.form-control-icon .form-control { - padding-left: 32px; -} -.form-control-icon .form-control.input-lg { - padding-left: 42px; -} -.form-control-icon .form-control.input-lg + .the-icon { - font-size: 16px; - line-height: 42px; - width: 42px; -} -.form-control-icon .form-control.input-sm { - padding-left: 28px; -} -.form-control-icon .form-control.input-sm + .the-icon { - font-size: 11px; - line-height: 28px; - width: 28px; -} -.form-control-icon .the-icon { - position: absolute; - z-index: 2; - top: 0; - left: 0; - line-height: 31px; - width: 32px; - text-align: center; -} -.form-control-icon.form-control-icon-right .the-icon { - right: 0; - left: auto; -} -.form-control-icon.form-control-icon-right .form-control { - padding-left: 12px; - padding-right: 32px; -} -.form-control-icon.form-control-icon-right .form-control.input-lg { - padding-left: 16px; - padding-right: 42px; -} -.form-control-icon.form-control-icon-right .form-control.input-sm { - padding-left: 10px; - padding-right: 28px; -} -.btn-file { - position: relative; - overflow: hidden; -} -.btn-file input[type=file] { - position: absolute; - top: 0px; - right: 0px; - min-width: 100%; - min-height: 100%; - font-size: 999px; - text-align: right; - opacity: 0; - background: red; - cursor: inherit; - display: block; -} -.checkbox label, -.radio label, -.checkbox-inline label, -.radio-inline label { - font-weight: normal; -} -.checkbox[class*=" custom"], -.radio[class*=" custom"], -.checkbox-inline[class*=" custom"], -.radio-inline[class*=" custom"], -.checkbox[class^="custom"], -.radio[class^="custom"], -.checkbox-inline[class^="custom"], -.radio-inline[class^="custom"] { - position: relative; -} -.checkbox[class*=" custom"] label, -.radio[class*=" custom"] label, -.checkbox-inline[class*=" custom"] label, -.radio-inline[class*=" custom"] label, -.checkbox[class^="custom"] label, -.radio[class^="custom"] label, -.checkbox-inline[class^="custom"] label, -.radio-inline[class^="custom"] label { - padding-left: 24px; -} -.checkbox[class*=" custom"] label input, -.radio[class*=" custom"] label input, -.checkbox-inline[class*=" custom"] label input, -.radio-inline[class*=" custom"] label input, -.checkbox[class^="custom"] label input, -.radio[class^="custom"] label input, -.checkbox-inline[class^="custom"] label input, -.radio-inline[class^="custom"] label input { - position: absolute; - opacity: 0; -} -.checkbox[class*=" custom"] label input + span, -.radio[class*=" custom"] label input + span, -.checkbox-inline[class*=" custom"] label input + span, -.radio-inline[class*=" custom"] label input + span, -.checkbox[class^="custom"] label input + span, -.radio[class^="custom"] label input + span, -.checkbox-inline[class^="custom"] label input + span, -.radio-inline[class^="custom"] label input + span { - display: inline-block; - vertical-align: top; - position: relative; - width: 16px; - height: 16px; - margin-left: -25px; - margin-right: 4px; - margin-top: 1px; - background-color: transparent; - border-radius: 3px; - border: 1px solid rgba(0, 0, 0, 0.2); -} -.checkbox[class*=" custom"] label input + span:after, -.radio[class*=" custom"] label input + span:after, -.checkbox-inline[class*=" custom"] label input + span:after, -.radio-inline[class*=" custom"] label input + span:after, -.checkbox[class^="custom"] label input + span:after, -.radio[class^="custom"] label input + span:after, -.checkbox-inline[class^="custom"] label input + span:after, -.radio-inline[class^="custom"] label input + span:after { - content: ""; - display: block; - position: absolute; - top: 2px; - left: 2px; - background-color: #3c4650; - height: 10px; - width: 10px; - border-radius: 2px; - -webkit-transform: scale(0); - -ms-transform: scale(0); - -o-transform: scale(0); - transform: scale(0); - -webkit-transition: all 0.1s ease; - -moz-transition: all 0.1s ease; - -ms-transition: all 0.1s ease; - -o-transition: all 0.1s ease; - transition: all 0.1s ease; -} -.checkbox[class*=" custom"] label input:disabled + span, -.radio[class*=" custom"] label input:disabled + span, -.checkbox-inline[class*=" custom"] label input:disabled + span, -.radio-inline[class*=" custom"] label input:disabled + span, -.checkbox[class^="custom"] label input:disabled + span, -.radio[class^="custom"] label input:disabled + span, -.checkbox-inline[class^="custom"] label input:disabled + span, -.radio-inline[class^="custom"] label input:disabled + span { - opacity: 0.4; -} -.checkbox[class*=" custom"] label input:disabled + span:hover, -.radio[class*=" custom"] label input:disabled + span:hover, -.checkbox-inline[class*=" custom"] label input:disabled + span:hover, -.radio-inline[class*=" custom"] label input:disabled + span:hover, -.checkbox[class^="custom"] label input:disabled + span:hover, -.radio[class^="custom"] label input:disabled + span:hover, -.checkbox-inline[class^="custom"] label input:disabled + span:hover, -.radio-inline[class^="custom"] label input:disabled + span:hover { - cursor: not-allowed; -} -.checkbox[class*=" custom"] label input:checked + span, -.radio[class*=" custom"] label input:checked + span, -.checkbox-inline[class*=" custom"] label input:checked + span, -.radio-inline[class*=" custom"] label input:checked + span, -.checkbox[class^="custom"] label input:checked + span, -.radio[class^="custom"] label input:checked + span, -.checkbox-inline[class^="custom"] label input:checked + span, -.radio-inline[class^="custom"] label input:checked + span { - border: 1px solid #3c4650; -} -.checkbox[class*=" custom"] label input:checked + span:after, -.radio[class*=" custom"] label input:checked + span:after, -.checkbox-inline[class*=" custom"] label input:checked + span:after, -.radio-inline[class*=" custom"] label input:checked + span:after, -.checkbox[class^="custom"] label input:checked + span:after, -.radio[class^="custom"] label input:checked + span:after, -.checkbox-inline[class^="custom"] label input:checked + span:after, -.radio-inline[class^="custom"] label input:checked + span:after { - -webkit-transform: scale(1); - -ms-transform: scale(1); - -o-transform: scale(1); - transform: scale(1); - -webkit-transition: all 0.1s ease; - -moz-transition: all 0.1s ease; - -ms-transition: all 0.1s ease; - -o-transition: all 0.1s ease; - transition: all 0.1s ease; -} -.checkbox[class*=" custom"] label:hover input + span, -.radio[class*=" custom"] label:hover input + span, -.checkbox-inline[class*=" custom"] label:hover input + span, -.radio-inline[class*=" custom"] label:hover input + span, -.checkbox[class^="custom"] label:hover input + span, -.radio[class^="custom"] label:hover input + span, -.checkbox-inline[class^="custom"] label:hover input + span, -.radio-inline[class^="custom"] label:hover input + span { - border: 1px solid rgba(0, 0, 0, 0.3); -} -.checkbox[class*=" custom"] label:hover input:checked + span, -.radio[class*=" custom"] label:hover input:checked + span, -.checkbox-inline[class*=" custom"] label:hover input:checked + span, -.radio-inline[class*=" custom"] label:hover input:checked + span, -.checkbox[class^="custom"] label:hover input:checked + span, -.radio[class^="custom"] label:hover input:checked + span, -.checkbox-inline[class^="custom"] label:hover input:checked + span, -.radio-inline[class^="custom"] label:hover input:checked + span { - border: 1px solid #3c4650; -} -.checkbox.custom-primary label input + span:after, -.radio.custom-primary label input + span:after, -.checkbox-inline.custom-primary label input + span:after, -.radio-inline.custom-primary label input + span:after { - background-color: {{mautic_primary}}; -} -.checkbox.custom-primary label input:checked + span, -.radio.custom-primary label input:checked + span, -.checkbox-inline.custom-primary label input:checked + span, -.radio-inline.custom-primary label input:checked + span { - border: 1px solid {{mautic_primary}}; -} -.checkbox.custom-primary label:hover input + span, -.radio.custom-primary label:hover input + span, -.checkbox-inline.custom-primary label:hover input + span, -.radio-inline.custom-primary label:hover input + span { - border: 1px solid rgba(0, 0, 0, 0.3); -} -.checkbox.custom-primary label:hover input:checked + span, -.radio.custom-primary label:hover input:checked + span, -.checkbox-inline.custom-primary label:hover input:checked + span, -.radio-inline.custom-primary label:hover input:checked + span { - border: 1px solid {{mautic_primary}}; -} -.checkbox.custom-info label input + span:after, -.radio.custom-info label input + span:after, -.checkbox-inline.custom-info label input + span:after, -.radio-inline.custom-info label input + span:after { - background-color: #35b4b9; -} -.checkbox.custom-info label input:checked + span, -.radio.custom-info label input:checked + span, -.checkbox-inline.custom-info label input:checked + span, -.radio-inline.custom-info label input:checked + span { - border: 1px solid #35b4b9; -} -.checkbox.custom-info label:hover input + span, -.radio.custom-info label:hover input + span, -.checkbox-inline.custom-info label:hover input + span, -.radio-inline.custom-info label:hover input + span { - border: 1px solid rgba(0, 0, 0, 0.3); -} -.checkbox.custom-info label:hover input:checked + span, -.radio.custom-info label:hover input:checked + span, -.checkbox-inline.custom-info label:hover input:checked + span, -.radio-inline.custom-info label:hover input:checked + span { - border: 1px solid #35b4b9; -} -.checkbox.custom-success label input + span:after, -.radio.custom-success label input + span:after, -.checkbox-inline.custom-success label input + span:after, -.radio-inline.custom-success label input + span:after { - background-color: #00b49c; -} -.checkbox.custom-success label input:checked + span, -.radio.custom-success label input:checked + span, -.checkbox-inline.custom-success label input:checked + span, -.radio-inline.custom-success label input:checked + span { - border: 1px solid #00b49c; -} -.checkbox.custom-success label:hover input + span, -.radio.custom-success label:hover input + span, -.checkbox-inline.custom-success label:hover input + span, -.radio-inline.custom-success label:hover input + span { - border: 1px solid rgba(0, 0, 0, 0.3); -} -.checkbox.custom-success label:hover input:checked + span, -.radio.custom-success label:hover input:checked + span, -.checkbox-inline.custom-success label:hover input:checked + span, -.radio-inline.custom-success label:hover input:checked + span { - border: 1px solid #00b49c; -} -.checkbox.custom-warning label input + span:after, -.radio.custom-warning label input + span:after, -.checkbox-inline.custom-warning label input + span:after, -.radio-inline.custom-warning label input + span:after { - background-color: #fdb933; -} -.checkbox.custom-warning label input:checked + span, -.radio.custom-warning label input:checked + span, -.checkbox-inline.custom-warning label input:checked + span, -.radio-inline.custom-warning label input:checked + span { - border: 1px solid #fdb933; -} -.checkbox.custom-warning label:hover input + span, -.radio.custom-warning label:hover input + span, -.checkbox-inline.custom-warning label:hover input + span, -.radio-inline.custom-warning label:hover input + span { - border: 1px solid rgba(0, 0, 0, 0.3); -} -.checkbox.custom-warning label:hover input:checked + span, -.radio.custom-warning label:hover input:checked + span, -.checkbox-inline.custom-warning label:hover input:checked + span, -.radio-inline.custom-warning label:hover input:checked + span { - border: 1px solid #fdb933; -} -.checkbox.custom-danger label input + span:after, -.radio.custom-danger label input + span:after, -.checkbox-inline.custom-danger label input + span:after, -.radio-inline.custom-danger label input + span:after { - background-color: #f86b4f; -} -.checkbox.custom-danger label input:checked + span, -.radio.custom-danger label input:checked + span, -.checkbox-inline.custom-danger label input:checked + span, -.radio-inline.custom-danger label input:checked + span { - border: 1px solid #f86b4f; -} -.checkbox.custom-danger label:hover input + span, -.radio.custom-danger label:hover input + span, -.checkbox-inline.custom-danger label:hover input + span, -.radio-inline.custom-danger label:hover input + span { - border: 1px solid rgba(0, 0, 0, 0.3); -} -.checkbox.custom-danger label:hover input:checked + span, -.radio.custom-danger label:hover input:checked + span, -.checkbox-inline.custom-danger label:hover input:checked + span, -.radio-inline.custom-danger label:hover input:checked + span { - border: 1px solid #f86b4f; -} -.radio-inline[class*=" custom"] label input + span, -.radio[class*=" custom"] label input + span, -.radio-inline[class^="custom"] label input + span, -.radio[class^="custom"] label input + span, -.radio-inline[class*=" custom"] label input + span:after, -.radio[class*=" custom"] label input + span:after, -.radio-inline[class^="custom"] label input + span:after, -.radio[class^="custom"] label input + span:after { - border-radius: 50%; -} -.checkbox-inline[class*=" custom"] label, -.radio-inline[class*=" custom"] label, -.checkbox-inline[class^="custom"] label, -.radio-inline[class^="custom"] label { - padding-left: 4px; -} -.time-input select { - margin: 0 3px 0 3px; -} -.legend-container { - position: relative; -} -.bar-legend, -.line-legend { - list-style: none; - position: absolute; - top: 0; -} -.bar-legend li, -.line-legend li { - display: block; - position: relative; - margin-bottom: 4px; - border-radius: 5px; - padding: 0px 8px 2px 18px; - font-size: 11px; - cursor: default; - -webkit-transition: background-color 200ms ease-in-out; - -moz-transition: background-color 200ms ease-in-out; - -o-transition: background-color 200ms ease-in-out; - transition: background-color 200ms ease-in-out; -} -.bar-legend li:hover, -.line-legend li:hover { - background-color: #fafafa; -} -.bar-legend li span, -.line-legend li span { - display: block; - position: absolute; - left: 0; - top: 0; - width: 15px; - height: 15px; - border-radius: 5px; -} -ul.line-legend { - margin: 0; - padding: 0; - position: relative; -} -ul.line-legend li { - display: inline; -} -.input-group .input-group-btn + .form-control { - margin-left: -1px; -} -.img-wrapper { - display: inline-block; - position: relative; -} -.img-wrapper + .img-wrapper { - margin-left: 3px; -} -.img-wrapper.pull-right + .img-wrapper { - margin-right: 3px; - margin-left: 0; -} -.img-wrapper:after { - position: absolute; - content: ""; - z-index: 1; - top: 0; - bottom: 0; - left: 0; - right: 0; - border-radius: inherit; - -webkit-box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 0.3); - box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 0.3); -} -.img-wrapper img { - border-radius: inherit; - display: block; - width: 100% \9; - max-width: 100%; - height: auto; -} -.img-wrapper > .label, -.img-wrapper > .badge { - position: absolute; - z-index: 5; - top: -10px; - right: -10px; -} -.img-rounded { - border-radius: 3px; -} -.table > thead > tr > th, -.table > tbody > tr > th, -.table > tfoot > tr > th, -.table > thead > tr > td, -.table > tbody > tr > td, -.table > tfoot > tr > td { - vertical-align: middle; -} -.table > thead > tr > th { - vertical-align: middle; - border-bottom: 1px solid #ebedf0; -} -.table-responsive-force { - width: 100%; - margin-bottom: 13.5px; - overflow-y: hidden; - overflow-x: auto; - -ms-overflow-style: -ms-autohiding-scrollbar; - border: 1px solid #ebedf0; - -webkit-overflow-scrolling: touch; -} -.table-responsive-force > .table { - margin-bottom: 0; -} -.table-responsive-force > .table > thead > tr > th, -.table-responsive-force > .table > tbody > tr > th, -.table-responsive-force > .table > tfoot > tr > th, -.table-responsive-force > .table > thead > tr > td, -.table-responsive-force > .table > tbody > tr > td, -.table-responsive-force > .table > tfoot > tr > td { - white-space: nowrap; -} -.table-responsive-force > .table-bordered { - border: 0; -} -.table-responsive-force > .table-bordered > thead > tr > th:first-child, -.table-responsive-force > .table-bordered > tbody > tr > th:first-child, -.table-responsive-force > .table-bordered > tfoot > tr > th:first-child, -.table-responsive-force > .table-bordered > thead > tr > td:first-child, -.table-responsive-force > .table-bordered > tbody > tr > td:first-child, -.table-responsive-force > .table-bordered > tfoot > tr > td:first-child { - border-left: 0; -} -.table-responsive-force > .table-bordered > thead > tr > th:last-child, -.table-responsive-force > .table-bordered > tbody > tr > th:last-child, -.table-responsive-force > .table-bordered > tfoot > tr > th:last-child, -.table-responsive-force > .table-bordered > thead > tr > td:last-child, -.table-responsive-force > .table-bordered > tbody > tr > td:last-child, -.table-responsive-force > .table-bordered > tfoot > tr > td:last-child { - border-right: 0; -} -.table-responsive-force > .table-bordered > tbody > tr:last-child > th, -.table-responsive-force > .table-bordered > tfoot > tr:last-child > th, -.table-responsive-force > .table-bordered > tbody > tr:last-child > td, -.table-responsive-force > .table-bordered > tfoot > tr:last-child > td { - border-bottom: 0; -} -.progress { - background-color: #ebedf0; - -webkit-box-shadow: none; - box-shadow: none; -} -.progress.progress-md { - height: 12px; - border-radius: 2px; -} -.progress.progress-sm { - height: 8px; - border-radius: 2px; - margin-top: 2px; -} -.progress.progress-xs { - height: 4px; - border-radius: 2px; -} -.progress-bar { - -webkit-box-shadow: none; - box-shadow: none; - -webkit-transition: width 4s ease; - -moz-transition: width 4s ease; - -ms-transition: width 4s ease; - -o-transition: width 4s ease; - transition: width 4s ease; -} -.progress-bar-success { - background-color: #00b49c; -} -.progress-striped .progress-bar-success { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); -} -.progress-bar-info { - background-color: #35b4b9; -} -.progress-striped .progress-bar-info { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); -} -.progress-bar-warning { - background-color: #fdb933; -} -.progress-striped .progress-bar-warning { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); -} -.progress-bar-danger { - background-color: #f86b4f; -} -.progress-striped .progress-bar-danger { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); -} -.app-sidebar .progress { - background-color: #232b34; -} -.panel { - border: 1px solid #ebedf0; - -webkit-box-shadow: 0px 1px 1px #f3f3f3; - box-shadow: 0px 1px 1px #f3f3f3; -} -.panel-heading { - padding: 0 15px; -} -.panel-heading:before, -.panel-heading:after { - content: " "; - display: table; -} -.panel-heading:after { - clear: both; -} -.panel-heading .panel-title { - padding: 10px 0; - display: table-cell; - width: 1%; - vertical-align: middle; - font-weight: 600; -} -.panel-heading .panel-toolbar { - display: table-cell; - width: 1%; - vertical-align: middle; -} -.panel-group .panel { - -webkit-box-shadow: none; - box-shadow: none; -} -.panel-footer { - overflow: hidden; - background-color: #fbfbfb; -} -.panel-toolbar-wrapper { - display: block; - background-color: #fbfbfb; - border-bottom: 1px solid #cfd9db; - padding: 0px 15px; -} -.box-layout { - display: table !important; - width: 100%; - table-layout: fixed; - border-spacing: 0; -} -.box-layout > [class*=" col-"], -.box-layout > [class^="col-"] { - position: static; - padding: 0; -} -.box-layout > [class*=" col-"].height-auto:before, -.box-layout > [class^="col-"].height-auto:before { - content: ""; - position: absolute; - width: inherit; - top: 60px; - bottom: 0; - z-index: -1; - background-color: inherit; - border: inherit; -} -.box-layout > [class*=" col-"] > .panel-body, -.box-layout > [class^="col-"] > .panel-body { - white-space: nowrap; - overflow: hidden; -} -.box-layout > [class*=" col-"].bdr-l.height-auto:before, -.box-layout > [class^="col-"].bdr-l.height-auto:before { - margin-left: -1px; -} -.box-layout > [class*=" col-"].bdr-r.height-auto:before, -.box-layout > [class^="col-"].bdr-r.height-auto:before { - margin-right: -1px; -} -.box-layout > .col-xs-1, -.box-layout > .col-xs-2, -.box-layout > .col-xs-3, -.box-layout > .col-xs-4, -.box-layout > .col-xs-5, -.box-layout > .col-xs-6, -.box-layout > .col-xs-7, -.box-layout > .col-xs-8, -.box-layout > .col-xs-9, -.box-layout > .col-xs-10, -.box-layout > .col-xs-11, -.box-layout > .cell { - display: table-cell; - vertical-align: top; - height: 100%; - float: none; -} -.box-layout > .cell { - width: 100%; -} -@media (min-width: 768px) { - .box-layout > .col-sm-1, - .box-layout > .col-sm-2, - .box-layout > .col-sm-3, - .box-layout > .col-sm-4, - .box-layout > .col-sm-5, - .box-layout > .col-sm-6, - .box-layout > .col-sm-7, - .box-layout > .col-sm-8, - .box-layout > .col-sm-9, - .box-layout > .col-sm-10, - .box-layout > .col-sm-11 { - display: table-cell; - vertical-align: top; - height: 100%; - float: none; - } -} -@media (min-width: 992px) { - .box-layout > .col-md-1, - .box-layout > .col-md-2, - .box-layout > .col-md-3, - .box-layout > .col-md-4, - .box-layout > .col-md-5, - .box-layout > .col-md-6, - .box-layout > .col-md-7, - .box-layout > .col-md-8, - .box-layout > .col-md-9, - .box-layout > .col-md-10, - .box-layout > .col-md-11 { - display: table-cell; - vertical-align: top; - height: 100%; - float: none; - } -} -@media (min-width: 1200px) { - .box-layout > .col-lg-1, - .box-layout > .col-lg-2, - .box-layout > .col-lg-3, - .box-layout > .col-lg-4, - .box-layout > .col-lg-5, - .box-layout > .col-lg-6, - .box-layout > .col-lg-7, - .box-layout > .col-lg-8, - .box-layout > .col-lg-9, - .box-layout > .col-lg-10, - .box-layout > .col-lg-11 { - display: table-cell; - vertical-align: top; - height: 100%; - float: none; - } -} -.tab-pane .box-layout > [class*=" col-"].height-auto:before, -.tab-pane .box-layout > [class^="col-"].height-auto:before { - top: auto; -} -.modal .box-layout > [class*=" col-"].height-auto:before, -.modal .box-layout > [class^="col-"].height-auto:before { - width: auto; -} -.modal .box-layout .bg-auto { - background-color: #f8f8f8 !important; -} -.switch { - vertical-align: middle; - margin-bottom: 0; - line-height: 0; - cursor: pointer; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - -webkit-tap-highlight-color: transparent; - tap-highlight-color: transparent; -} -.switch input { - position: absolute; - opacity: 0; -} -.switch input ~ .text { - display: inline-block; - font-weight: 400; - line-height: 24px; - vertical-align: middle; -} -.switch input ~ .switch { - font-size: 24px; - position: relative; - display: inline-block; - vertical-align: middle; - background-color: #fafafa; - box-shadow: inset 0 0 0 1px #e5e5e5; - cursor: pointer; - height: 24px; - width: 38.4px; - border-radius: 28px; - transition: border 0.25s 0.15s, box-shadow 0.25s 0.3s, padding 0.25s; -} -.switch input ~ .switch:after { - position: absolute; - background-color: #fff; - border: 1px solid #e5e5e5; - border-radius: 24px; - box-shadow: 0 1px 4px rgba(0, 0, 0, 0.01), 0 2px 4px rgba(0, 0, 0, 0.05); - content: ''; - display: block; - height: 24px; - width: 24px; - left: 0; - top: 0; - transition: border .25s .15s, left .25s .1s, right .15s .175s; -} -.switch input:checked + .switch { - border-color: #00b49c; - box-shadow: inset 0 0 0 0.6em #00b49c; - transition: border 0.25s, box-shadow 0.25s, padding 0.25s 0.15s; -} -.switch input:checked + .switch:after { - border-color: #00b49c; - left: 0.6em; - right: 0; - transition: border .25s, left .15s .25s, right .25s .175s; -} -.switch.switch-primary input:checked + .switch { - border-color: {{mautic_primary}}; - box-shadow: inset 0 0 0 0.6em {{mautic_primary}}; -} -.switch.switch-primary input:checked + .switch:after { - border-color: {{mautic_primary}}; -} -.switch.switch-info input:checked + .switch { - border-color: #35b4b9; - box-shadow: inset 0 0 0 0.6em #35b4b9; -} -.switch.switch-info input:checked + .switch:after { - border-color: #35b4b9; -} -.switch.switch-success input:checked + .switch { - border-color: #00b49c; - box-shadow: inset 0 0 0 0.6em #00b49c; -} -.switch.switch-success input:checked + .switch:after { - border-color: #00b49c; -} -.switch.switch-warning input:checked + .switch { - border-color: #fdb933; - box-shadow: inset 0 0 0 0.6em #fdb933; -} -.switch.switch-warning input:checked + .switch:after { - border-color: #fdb933; -} -.switch.switch-danger input:checked + .switch { - border-color: #f86b4f; - box-shadow: inset 0 0 0 0.6em #f86b4f; -} -.switch.switch-danger input:checked + .switch:after { - border-color: #f86b4f; -} -.switch.switch-lg input ~ .text { - line-height: 28px; -} -.switch.switch-lg input ~ .switch { - font-size: 28px; - height: 28px; - width: 44.8px; - border-radius: 28px; -} -.switch.switch-lg input ~ .switch:after { - border-radius: 28px; - height: 28px; - width: 28px; -} -.switch.switch-sm input ~ .text { - line-height: 20px; -} -.switch.switch-sm input ~ .switch { - font-size: 20px; - height: 20px; - width: 32px; - border-radius: 20px; -} -.switch.switch-sm input ~ .switch:after { - border-radius: 20px; - height: 20px; - width: 20px; -} -.switch.switch-xs input ~ .text { - line-height: 16px; -} -.switch.switch-xs input ~ .switch { - font-size: 16px; - height: 16px; - width: 25.6px; - border-radius: 16px; -} -.switch.switch-xs input ~ .switch:after { - border-radius: 16px; - height: 16px; - width: 16px; -} -.step { - padding: 0; - margin: 0; -} -.step > li { - list-style: none; -} -.step > li + li { - margin-top: 15px; -} -.step > li + li .steps:after { - content: ""; - position: absolute; - left: 16px; - top: -15px; - height: 15px; - width: 1px; - background-color: #a0acb8; -} -.step > li.active .steps { - color: #47535f; -} -.step > li.active .steps > .steps-figure { - border-color: #47535f; -} -.step > li.active a.steps:hover, -.step > li.active a.steps:focus { - color: #47535f; -} -.step > li.active a.steps:hover > .steps-figure, -.step > li.active a.steps:focus > .steps-figure { - border-color: #47535f; -} -.step > li a.steps:hover, -.step > li a.steps:focus { - color: #8392a2; -} -.step > li a.steps:hover > .steps-figure, -.step > li a.steps:focus > .steps-figure { - border-color: #8392a2; -} -.step .steps { - position: relative; - display: inline-block; - color: #a0acb8; -} -.step .steps > .steps-figure { - display: inline-block; - width: 32px; - height: 32px; - text-align: center; - font-size: 14px; - line-height: 28px; - border-radius: 50%; - border: 2px solid #a0acb8; -} -.step .steps > .steps-figure + .steps-text { - margin-left: 5px; -} -.step .steps > .steps-text + .steps-figure { - margin-left: 5px; -} -.horizontal-step { - padding: 0; - margin: 0; -} -.horizontal-step > li { - list-style: none; - display: inline; -} -.horizontal-step > li + li { - margin-left: 15px; -} -.horizontal-step > li + li .steps:after { - content: ""; - position: absolute; - left: -18px; - top: 16px; - height: 1px; - width: 18px; - background-color: #a0acb8; -} -.horizontal-step > li.active .steps { - color: #47535f; -} -.horizontal-step > li.active .steps > .steps-figure { - border-color: #47535f; -} -.horizontal-step > li.active a.steps:hover, -.horizontal-step > li.active a.steps:focus { - color: #47535f; -} -.horizontal-step > li.active a.steps:hover > .steps-figure, -.horizontal-step > li.active a.steps:focus > .steps-figure { - border-color: #47535f; -} -.horizontal-step > li a.steps:hover, -.horizontal-step > li a.steps:focus { - color: #8392a2; -} -.horizontal-step > li a.steps:hover > .steps-figure, -.horizontal-step > li a.steps:focus > .steps-figure { - border-color: #8392a2; -} -.horizontal-step > li a.steps.disabled { - color: #bdc5cd; -} -.horizontal-step > li a.steps.disabled > .steps-figure { - border-color: #bdc5cd; -} -.horizontal-step > li a.steps.disabled:hover { - color: #bdc5cd; - cursor: not-allowed; -} -.horizontal-step > li a.steps.disabled:hover > .steps-figure { - border-color: #bdc5cd; -} -.horizontal-step .steps { - position: relative; - display: inline-block; - color: #a0acb8; -} -.horizontal-step .steps > .steps-figure { - display: inline-block; - width: 32px; - height: 32px; - text-align: center; - font-size: 14px; - line-height: 28px; - border-radius: 50%; - border: 2px solid #a0acb8; -} -.horizontal-step .steps > .steps-figure + .steps-text { - margin-left: 5px; -} -.horizontal-step .steps > .steps-text + .steps-figure { - margin-left: 5px; -} -.bg-white { - background-color: #ffffff !important; - border-color: #f7f7f7 !important; - color: #47535f !important; -} -.bg-white.bg-light-xs, -.bg-white .bg-light-xs { - background-color: #ffffff !important; - border-color: #f7f7f7 !important; -} -.bg-white.bg-light-sm, -.bg-white .bg-light-sm { - background-color: #ffffff !important; - border-color: #f7f7f7 !important; -} -.bg-white.bg-light-md, -.bg-white .bg-light-md { - background-color: #ffffff !important; - border-color: #f7f7f7 !important; -} -.bg-white.bg-light-lg, -.bg-white .bg-light-lg { - background-color: #ffffff !important; - border-color: #f7f7f7 !important; -} -.bg-white.bg-dark-xs, -.bg-white .bg-dark-xs { - background-color: #fcfcfc !important; - border-color: #f7f7f7 !important; -} -.bg-white.bg-dark-sm, -.bg-white .bg-dark-sm { - background-color: #f7f7f7 !important; - border-color: #f0f0f0 !important; -} -.bg-white.bg-dark-md, -.bg-white .bg-dark-md { - background-color: #f2f2f2 !important; - border-color: #e8e8e8 !important; -} -.bg-white.bg-dark-lg, -.bg-white .bg-dark-lg { - background-color: #ededed !important; - border-color: #e0e0e0 !important; -} -.bg-auto { - background-color: #f8f8f8 !important; - border-color: #f0f0f0 !important; - color: #47535f !important; -} -.bg-auto.bg-light-xs, -.bg-auto .bg-light-xs { - background-color: #fbfbfb !important; - border-color: #f0f0f0 !important; -} -.bg-auto.bg-light-sm, -.bg-auto .bg-light-sm { - background-color: #ffffff !important; - border-color: #f0f0f0 !important; -} -.bg-auto.bg-light-md, -.bg-auto .bg-light-md { - background-color: #ffffff !important; - border-color: #f0f0f0 !important; -} -.bg-auto.bg-light-lg, -.bg-auto .bg-light-lg { - background-color: #ffffff !important; - border-color: #f0f0f0 !important; -} -.bg-auto.bg-dark-xs, -.bg-auto .bg-dark-xs { - background-color: #f5f5f5 !important; - border-color: #f0f0f0 !important; -} -.bg-auto.bg-dark-sm, -.bg-auto .bg-dark-sm { - background-color: #f0f0f0 !important; - border-color: #e9e9e9 !important; -} -.bg-auto.bg-dark-md, -.bg-auto .bg-dark-md { - background-color: #ebebeb !important; - border-color: #e1e1e1 !important; -} -.bg-auto.bg-dark-lg, -.bg-auto .bg-dark-lg { - background-color: #e6e6e6 !important; - border-color: #d9d9d9 !important; -} -.bg-transparent { - background-color: transparent !important; - color: #47535f; -} -.bg-primary { - background-color: {{mautic_primary}} !important; - border-color: #495793 !important; - color: #ffffff !important; -} -.bg-primary.bg-light-xs, -.bg-primary .bg-light-xs { - background-color: #505fa0 !important; - border-color: #495793 !important; -} -.bg-primary.bg-light-sm, -.bg-primary .bg-light-sm { - background-color: #5363a7 !important; - border-color: #495793 !important; -} -.bg-primary.bg-light-md, -.bg-primary .bg-light-md { - background-color: #5868ac !important; - border-color: #495793 !important; -} -.bg-primary.bg-light-lg, -.bg-primary .bg-light-lg { - background-color: #5f6eb0 !important; - border-color: #495793 !important; -} -.bg-primary.bg-dark-xs, -.bg-primary .bg-dark-xs { - background-color: #4c5b9a !important; - border-color: #495793 !important; -} -.bg-primary.bg-dark-sm, -.bg-primary .bg-dark-sm { - background-color: #495793 !important; - border-color: #445189 !important; -} -.bg-primary.bg-dark-md, -.bg-primary .bg-dark-md { - background-color: #46538c !important; - border-color: #3f4b7e !important; -} -.bg-primary.bg-dark-lg, -.bg-primary .bg-dark-lg { - background-color: #424f85 !important; - border-color: #3a4574 !important; -} -.bg-success { - background-color: #00b49c !important; - border-color: #00a58f !important; - color: #ffffff !important; -} -.bg-success.bg-light-xs, -.bg-success .bg-light-xs { - background-color: #00b9a0 !important; - border-color: #00a58f !important; -} -.bg-success.bg-light-sm, -.bg-success .bg-light-sm { - background-color: #00c3a9 !important; - border-color: #00a58f !important; -} -.bg-success.bg-light-md, -.bg-success .bg-light-md { - background-color: #00ceb2 !important; - border-color: #00a58f !important; -} -.bg-success.bg-light-lg, -.bg-success .bg-light-lg { - background-color: #00d8bb !important; - border-color: #00a58f !important; -} -.bg-success.bg-dark-xs, -.bg-success .bg-dark-xs { - background-color: #00af98 !important; - border-color: #00a58f !important; -} -.bg-success.bg-dark-sm, -.bg-success .bg-dark-sm { - background-color: #00a58f !important; - border-color: #009581 !important; -} -.bg-success.bg-dark-md, -.bg-success .bg-dark-md { - background-color: #009b86 !important; - border-color: #008674 !important; -} -.bg-success.bg-dark-lg, -.bg-success .bg-dark-lg { - background-color: #00907d !important; - border-color: #007767 !important; -} -.bg-info { - background-color: #35b4b9 !important; - border-color: #32a8ad !important; - color: #ffffff !important; -} -.bg-info.bg-light-xs, -.bg-info .bg-light-xs { - background-color: #36b8bd !important; - border-color: #32a8ad !important; -} -.bg-info.bg-light-sm, -.bg-info .bg-light-sm { - background-color: #38c0c5 !important; - border-color: #32a8ad !important; -} -.bg-info.bg-light-md, -.bg-info .bg-light-md { - background-color: #3fc3c8 !important; - border-color: #32a8ad !important; -} -.bg-info.bg-light-lg, -.bg-info .bg-light-lg { - background-color: #47c5ca !important; - border-color: #32a8ad !important; -} -.bg-info.bg-dark-xs, -.bg-info .bg-dark-xs { - background-color: #34b0b5 !important; - border-color: #32a8ad !important; -} -.bg-info.bg-dark-sm, -.bg-info .bg-dark-sm { - background-color: #32a8ad !important; - border-color: #2e9da1 !important; -} -.bg-info.bg-dark-md, -.bg-info .bg-dark-md { - background-color: #2fa1a5 !important; - border-color: #2b9195 !important; -} -.bg-info.bg-dark-lg, -.bg-info .bg-dark-lg { - background-color: #2d999d !important; - border-color: #278689 !important; -} -.bg-warning { - background-color: #fdb933 !important; - border-color: #fdb424 !important; - color: #ffffff !important; -} -.bg-warning.bg-light-xs, -.bg-warning .bg-light-xs { - background-color: #fdbb38 !important; - border-color: #fdb424 !important; -} -.bg-warning.bg-light-sm, -.bg-warning .bg-light-sm { - background-color: #fdbe42 !important; - border-color: #fdb424 !important; -} -.bg-warning.bg-light-md, -.bg-warning .bg-light-md { - background-color: #fdc24c !important; - border-color: #fdb424 !important; -} -.bg-warning.bg-light-lg, -.bg-warning .bg-light-lg { - background-color: #fdc556 !important; - border-color: #fdb424 !important; -} -.bg-warning.bg-dark-xs, -.bg-warning .bg-dark-xs { - background-color: #fdb72e !important; - border-color: #fdb424 !important; -} -.bg-warning.bg-dark-sm, -.bg-warning .bg-dark-sm { - background-color: #fdb424 !important; - border-color: #fdaf15 !important; -} -.bg-warning.bg-dark-md, -.bg-warning .bg-dark-md { - background-color: #fdb01a !important; - border-color: #fda906 !important; -} -.bg-warning.bg-dark-lg, -.bg-warning .bg-dark-lg { - background-color: #fdad10 !important; - border-color: #f0a002 !important; -} -.bg-danger { - background-color: #f86b4f !important; - border-color: #f75f40 !important; - color: #ffffff !important; -} -.bg-danger.bg-light-xs, -.bg-danger .bg-light-xs { - background-color: #f86f54 !important; - border-color: #f75f40 !important; -} -.bg-danger.bg-light-sm, -.bg-danger .bg-light-sm { - background-color: #f9775e !important; - border-color: #f75f40 !important; -} -.bg-danger.bg-light-md, -.bg-danger .bg-light-md { - background-color: #f98068 !important; - border-color: #f75f40 !important; -} -.bg-danger.bg-light-lg, -.bg-danger .bg-light-lg { - background-color: #f98871 !important; - border-color: #f75f40 !important; -} -.bg-danger.bg-dark-xs, -.bg-danger .bg-dark-xs { - background-color: #f8674a !important; - border-color: #f75f40 !important; -} -.bg-danger.bg-dark-sm, -.bg-danger .bg-dark-sm { - background-color: #f75f40 !important; - border-color: #f75232 !important; -} -.bg-danger.bg-dark-md, -.bg-danger .bg-dark-md { - background-color: #f75636 !important; - border-color: #f64623 !important; -} -.bg-danger.bg-dark-lg, -.bg-danger .bg-dark-lg { - background-color: #f74e2d !important; - border-color: #f63a14 !important; -} -.pagination, -.pager { - margin: 0 0 15px 0; -} -lesshat-selector { - -lh-property: 0; } -@-webkit-keyframes after-anim{ 0% { width: 0%; left: 0%; } 10% { width: 30%; left: 100%; } 19.99% { width: 30%; left: 100%; } 20% { width: 0%; left: 0%; } 30% { width: 80%; left: 100%; } 30.01% { width: 0%; left: 0%; } 40% { width: 5%; left: 30%; } 50% { width: 50%; left: 100%; } 50.01% { width: 0%; left: 0%; } 60% { width: 60%; left: 20%; } 70% { width: 5%; left: 100%; } 70.01% { width: 0%; left: 0%; } 80% { width: 50%; left: 30%; } 90% { width: 10%; left: 80%; } 100% { width: 20%; left: 100%; }} -@-moz-keyframes after-anim{ 0% { width: 0%; left: 0%; } 10% { width: 30%; left: 100%; } 19.99% { width: 30%; left: 100%; } 20% { width: 0%; left: 0%; } 30% { width: 80%; left: 100%; } 30.01% { width: 0%; left: 0%; } 40% { width: 5%; left: 30%; } 50% { width: 50%; left: 100%; } 50.01% { width: 0%; left: 0%; } 60% { width: 60%; left: 20%; } 70% { width: 5%; left: 100%; } 70.01% { width: 0%; left: 0%; } 80% { width: 50%; left: 30%; } 90% { width: 10%; left: 80%; } 100% { width: 20%; left: 100%; }} -@-o-keyframes after-anim{ 0% { width: 0%; left: 0%; } 10% { width: 30%; left: 100%; } 19.99% { width: 30%; left: 100%; } 20% { width: 0%; left: 0%; } 30% { width: 80%; left: 100%; } 30.01% { width: 0%; left: 0%; } 40% { width: 5%; left: 30%; } 50% { width: 50%; left: 100%; } 50.01% { width: 0%; left: 0%; } 60% { width: 60%; left: 20%; } 70% { width: 5%; left: 100%; } 70.01% { width: 0%; left: 0%; } 80% { width: 50%; left: 30%; } 90% { width: 10%; left: 80%; } 100% { width: 20%; left: 100%; }} -@keyframes after-anim{ 0% { width: 0%; left: 0%; } 10% { width: 30%; left: 100%; } 19.99% { width: 30%; left: 100%; } 20% { width: 0%; left: 0%; } 30% { width: 80%; left: 100%; } 30.01% { width: 0%; left: 0%; } 40% { width: 5%; left: 30%; } 50% { width: 50%; left: 100%; } 50.01% { width: 0%; left: 0%; } 60% { width: 60%; left: 20%; } 70% { width: 5%; left: 100%; } 70.01% { width: 0%; left: 0%; } 80% { width: 50%; left: 30%; } 90% { width: 10%; left: 80%; } 100% { width: 20%; left: 100%; }} -lesshat-selector { -lh-property: 0 ; -} -lesshat-selector { - -lh-property: 0; } -@-webkit-keyframes before-anim{ 0% { width: 0%; left: 0%; } 0% { width: 60%; } 19.99% { width: 40%; left: 100%; } 20% { width: 0%; left: 0%; } 25% { width: 10%; left: 10%; } 30% { width: 40%; left: 30%; } 40% { width: 60%; left: 100%; } 40.01% { width: 0%; left: 0%; } 50% { width: 10%; left: 40%; } 60% { width: 30%; left: 100%; } 60.01% { width: 0%; left: 0%; } 70% { width: 10%; left: 40%; } 80% { width: 5%; left: 100%; } 80.01% { width: 0%; left: 0%; } 90% { width: 70%; left: 10%; } 100% { width: 10%; left: 100%; }} -@-moz-keyframes before-anim{ 0% { width: 0%; left: 0%; } 0% { width: 60%; } 19.99% { width: 40%; left: 100%; } 20% { width: 0%; left: 0%; } 25% { width: 10%; left: 10%; } 30% { width: 40%; left: 30%; } 40% { width: 60%; left: 100%; } 40.01% { width: 0%; left: 0%; } 50% { width: 10%; left: 40%; } 60% { width: 30%; left: 100%; } 60.01% { width: 0%; left: 0%; } 70% { width: 10%; left: 40%; } 80% { width: 5%; left: 100%; } 80.01% { width: 0%; left: 0%; } 90% { width: 70%; left: 10%; } 100% { width: 10%; left: 100%; }} -@-o-keyframes before-anim{ 0% { width: 0%; left: 0%; } 0% { width: 60%; } 19.99% { width: 40%; left: 100%; } 20% { width: 0%; left: 0%; } 25% { width: 10%; left: 10%; } 30% { width: 40%; left: 30%; } 40% { width: 60%; left: 100%; } 40.01% { width: 0%; left: 0%; } 50% { width: 10%; left: 40%; } 60% { width: 30%; left: 100%; } 60.01% { width: 0%; left: 0%; } 70% { width: 10%; left: 40%; } 80% { width: 5%; left: 100%; } 80.01% { width: 0%; left: 0%; } 90% { width: 70%; left: 10%; } 100% { width: 10%; left: 100%; }} -@keyframes before-anim{ 0% { width: 0%; left: 0%; } 0% { width: 60%; } 19.99% { width: 40%; left: 100%; } 20% { width: 0%; left: 0%; } 25% { width: 10%; left: 10%; } 30% { width: 40%; left: 30%; } 40% { width: 60%; left: 100%; } 40.01% { width: 0%; left: 0%; } 50% { width: 10%; left: 40%; } 60% { width: 30%; left: 100%; } 60.01% { width: 0%; left: 0%; } 70% { width: 10%; left: 40%; } 80% { width: 5%; left: 100%; } 80.01% { width: 0%; left: 0%; } 90% { width: 70%; left: 10%; } 100% { width: 10%; left: 100%; }} -lesshat-selector { -lh-property: 0 ; -} -.loading-bar, -.canvas-loading-bar, -.modal-loading-bar { - opacity: 0; - position: absolute; - bottom: -1px; - z-index: 1; - left: 0; - right: 0; - height: 2px; - background-color: #adb5d7; - overflow: hidden; - -webkit-transition: opacity 0.3s ease; - -moz-transition: opacity 0.3s ease; - -o-transition: opacity 0.3s ease; - transition: opacity 0.3s ease; -} -.loading-bar:after, -.canvas-loading-bar:after, -.modal-loading-bar:after, -.loading-bar:before, -.canvas-loading-bar:before, -.modal-loading-bar:before { - content: ''; - position: absolute; - height: 2px; - background-color: {{mautic_primary}}; -} -.loading-bar.active, -.canvas-loading-bar.active, -.modal-loading-bar.active { - opacity: 1; - -webkit-transition: opacity 0.3s ease; - -moz-transition: opacity 0.3s ease; - -o-transition: opacity 0.3s ease; - transition: opacity 0.3s ease; -} -.loading-bar.active:after, -.canvas-loading-bar.active:after, -.modal-loading-bar.active:after { - left: 50%; - width: 10%; - -webkit-animation: after-anim 2.5s infinite linear; - -moz-animation: after-anim 2.5s infinite linear; - -o-animation: after-anim 2.5s infinite linear; - animation: after-anim 2.5s infinite linear; -} -.loading-bar.active:before, -.canvas-loading-bar.active:before, -.modal-loading-bar.active:before { - left: 0%; - width: 0%; - -webkit-animation: before-anim 2.5s infinite linear; - -moz-animation: before-anim 2.5s infinite linear; - -o-animation: before-anim 2.5s infinite linear; - animation: before-anim 2.5s infinite linear; -} -.modal-loading-bar { - bottom: auto; - top: 0; -} -.offcanvas-container { - position: relative; - width: 100%; - height: 100%; - overflow: hidden; -} -.offcanvas-container .offcanvas-wrapper { - position: absolute; - z-index: 1; - left: 0px; - width: 100%; - height: 100%; - -webkit-transition: all 0.2s ease; - -moz-transition: all 0.2s ease; - -ms-transition: all 0.2s ease; - -o-transition: all 0.2s ease; - transition: all 0.2s ease; -} -.offcanvas-container .offcanvas-main { - position: absolute; - top: 0px; - width: 100%; - height: 100%; -} -.offcanvas-container .offcanvas-left { - position: absolute; - z-index: 2; - top: 0px; - left: -100%; - width: 100%; - height: 100%; -} -.offcanvas-container .offcanvas-right { - position: absolute; - z-index: 2; - top: 0px; - left: 100%; - width: 100%; - height: 100%; -} -.offcanvas-container.offcanvas-open-rtl .offcanvas-wrapper { - left: 100%; - -webkit-transition: left 0.2s ease; - -moz-transition: left 0.2s ease; - -ms-transition: left 0.2s ease; - -o-transition: left 0.2s ease; - transition: left 0.2s ease; -} -.offcanvas-container.offcanvas-open-ltr .offcanvas-wrapper { - left: -100%; - -webkit-transition: left 0.2s ease; - -moz-transition: left 0.2s ease; - -ms-transition: left 0.2s ease; - -o-transition: left 0.2s ease; - transition: left 0.2s ease; -} -.csstransforms3d .offcanvas-container.offcanvas-open-ltr .offcanvas-wrapper { - left: auto; - -webkit-transform: translate3d(100%, 0, 0); - transform: translate3d(100%, 0, 0); - -webkit-transition: all 0.2s ease; - -moz-transition: all 0.2s ease; - -ms-transition: all 0.2s ease; - -o-transition: all 0.2s ease; - transition: all 0.2s ease; -} -.csstransforms3d .offcanvas-container.offcanvas-open-rtl .offcanvas-wrapper { - left: auto; - -webkit-transform: translate3d(-100%, 0, 0); - transform: translate3d(-100%, 0, 0); - -webkit-transition: all 0.2s ease; - -moz-transition: all 0.2s ease; - -ms-transition: all 0.2s ease; - -o-transition: all 0.2s ease; - transition: all 0.2s ease; -} -.timeline { - overflow: hidden; - height: auto; - position: relative; - padding: 0px; - list-style-type: none; -} -.timeline:after { - position: absolute; - width: 1px; - left: 50%; - margin-left: -1px; - top: 20px; - bottom: 0px; - content: ""; - background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9InJnYigyNTUsIDI1NSwgMjU1KSIgc3RvcC1vcGFjaXR5PSIwIi8+PHN0b3Agb2Zmc2V0PSIxMCUiIHN0b3AtY29sb3I9IiNlNWU1ZTUiIHN0b3Atb3BhY2l0eT0iMSIvPjxzdG9wIG9mZnNldD0iOTAlIiBzdG9wLWNvbG9yPSIjZTVlNWU1IiBzdG9wLW9wYWNpdHk9IjEiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9InJnYigyMjksIDIyOSwgMjI5KSIgc3RvcC1vcGFjaXR5PSIwIi8+PC9saW5lYXJHcmFkaWVudD48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2xlc3NoYXQtZ2VuZXJhdGVkKSIgLz48L3N2Zz4=); - background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #e5e5e5 10%, #e5e5e5 90%, rgba(229, 229, 229, 0) 100%); - background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #e5e5e5 10%, #e5e5e5 90%, rgba(229, 229, 229, 0) 100%); - background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #e5e5e5 10%, #e5e5e5 90%, rgba(229, 229, 229, 0) 100%); - background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #e5e5e5 10%, #e5e5e5 90%, rgba(229, 229, 229, 0) 100%); -} -.timeline .panel { - position: relative; - z-index: 1; -} -.timeline .header { - position: relative; - z-index: 10; - clear: both; - margin-top: 0px; - margin-right: auto; - margin-bottom: 20px; - margin-left: auto; - background-color: inherit; - font-size: 14px; - font-weight: 600; - max-width: 120px; - padding-top: 2px; - padding-bottom: 2px; - text-align: center; - color: {{mautic_primary}}; -} -.timeline .events { - padding-left: 0px; - overflow: auto; -} -.timeline .events .figure { - position: absolute; - z-index: 5; - left: 50%; - margin-top: 10px; - margin-left: -10px; - width: 20px; - height: 20px; - line-height: 18px; - text-align: center; - border-radius: 50%; - background-color: #fff; - border: 1px solid #dce0e5; - font-size: 12px; - color: #dce0e5; -} -.timeline .events > .featured { - list-style: none; - width: 45%; - clear: both; - float: none !important; - margin-bottom: 50px; - margin-top: 50px; - margin-left: auto; - margin-right: auto; -} -.timeline .events > .featured > .panel:after, -.timeline .events > .featured > .panel:before { - display: none; -} -.timeline .events > .featured .figure { - margin-top: -30px; -} -.timeline .events > .wrapper { - list-style: none; - width: 46%; - clear: both; -} -.timeline .events > .wrapper:first-child { - margin-top: 0 !important; -} -.timeline .events > .wrapper:nth-of-type(odd) { - float: left; - margin-top: -30px; -} -.timeline .events > .wrapper:nth-of-type(odd) > .panel { - z-index: 5; -} -.timeline .events > .wrapper:nth-of-type(odd) > .panel:after, -.timeline .events > .wrapper:nth-of-type(odd) > .panel:before { - content: ""; - position: absolute; - width: 0px; - height: 0px; - border-style: solid; -} -.timeline .events > .wrapper:nth-of-type(odd) > .panel:after { - right: -10px; - top: 10px; - border-width: 10px 0 10px 10px; - border-color: transparent transparent transparent #fff; -} -.timeline .events > .wrapper:nth-of-type(odd) > .panel:before { - right: -11px; - top: 10px; - border-width: 10px 0 10px 10px; - border-color: transparent transparent transparent #ebedf0; -} -.timeline .events > .wrapper:nth-of-type(even) { - float: right; - margin-top: -30px; -} -.timeline .events > .wrapper:nth-of-type(even) > .panel { - z-index: 5; -} -.timeline .events > .wrapper:nth-of-type(even) > .panel:after, -.timeline .events > .wrapper:nth-of-type(even) > .panel:before { - content: ""; - position: absolute; - width: 0px; - height: 0px; - border-style: solid; -} -.timeline .events > .wrapper:nth-of-type(even) > .panel:after { - left: -10px; - top: 10px; - border-width: 10px 10px 10px 0; - border-color: transparent #fff transparent transparent; -} -.timeline .events > .wrapper:nth-of-type(even) > .panel:before { - left: -11px; - top: 10px; - border-width: 10px 10px 10px 0; - border-color: transparent #ebedf0 transparent transparent; -} -@media (max-width: 767px) { - .timeline .events { - padding-left: 0px; - } - .timeline .events > .wrapper { - width: auto; - } - .timeline .events > .wrapper:nth-of-type(odd), - .timeline .events > .wrapper:nth-of-type(even) { - float: none; - clear: both; - margin-top: 48px; - } - .timeline .events > .wrapper:nth-of-type(odd) > .panel:after, - .timeline .events > .wrapper:nth-of-type(even) > .panel:after, - .timeline .events > .wrapper:nth-of-type(odd) > .panel:before, - .timeline .events > .wrapper:nth-of-type(even) > .panel:before { - display: none; - } - .timeline .events > .wrapper > .figure { - margin-top: -41px; - } -} -.va-t { - vertical-align: top !important; -} -.va-m { - vertical-align: middle !important; -} -.va-b { - vertical-align: bottom !important; -} -.pull-right-xs { - float: right; -} -.pull-left-xs { - float: left; -} -@media (min-width: 768px) { - .pull-right-sm { - float: right; - } - .pull-left-sm { - float: left; - } - .text-right-sm { - text-align: right; - } - .text-left-sm { - text-align: left; - } - .pull-right-xs { - float: none; - } - .pull-left-xs { - float: none; - } -} -@media (min-width: 992px) { - .pull-right-md { - float: right; - } - .pull-left-md { - float: left; - } - .text-right-md { - text-align: right; - } - .text-left-md { - text-align: left; - } - .pull-right-xs { - float: none; - } - .pull-left-xs { - float: none; - } -} -@media (min-width: 1200px) { - .pull-right-lg { - float: right; - } - .pull-left-lg { - float: left; - } - .text-right-lg { - text-align: right; - } - .text-left-lg { - text-align: left; - } - .pull-right-xs { - float: none; - } - .pull-left-xs { - float: none; - } -} -.bdr-a { - border: 1px solid #ebedf0 !important; -} -.bdr-l { - border-left: 1px solid #ebedf0 !important; -} -.bdr-r { - border-right: 1px solid #ebedf0 !important; -} -.bdr-t { - border-top: 1px solid #ebedf0 !important; -} -.bdr-b { - border-bottom: 1px solid #ebedf0 !important; -} -.bdr-c-t { - border-color: transparent !important; -} -.bdr-w-0 { - border-width: 0 !important; -} -.bdr-l-wdh-0 { - border-left-width: 0 !important; -} -.bdr-r-wdh-0 { - border-right-width: 0 !important; -} -.bdr-t-wdh-0 { - border-top-width: 0 !important; -} -.bdr-b-wdh-0 { - border-bottom-width: 0 !important; -} -.bdr-rds-0 { - border-radius: 0 !important; -} -.bdr-rds { - border-radius: 3px !important; -} -.bdr-rds-lg { - border-radius: 4px !important; -} -.bdr-rds-sm { - border-radius: 2px !important; -} -@media (max-width: 767px) { - .bdr-l-xs { - border-left: 1px solid #ebedf0; - } - .bdr-r-xs { - border-right: 1px solid #ebedf0; - } - .bdr-t-xs { - border-top: 1px solid #ebedf0; - } - .bdr-b-xs { - border-bottom: 1px solid #ebedf0; - } -} -@media (min-width: 768px) { - .bdr-l-sm { - border-left: 1px solid #ebedf0; - } - .bdr-r-sm { - border-right: 1px solid #ebedf0; - } - .bdr-t-sm { - border-top: 1px solid #ebedf0; - } - .bdr-b-sm { - border-bottom: 1px solid #ebedf0; - } -} -@media (min-width: 992px) { - .bdr-l-md { - border-left: 1px solid #ebedf0; - } - .bdr-r-md { - border-right: 1px solid #ebedf0; - } - .bdr-t-md { - border-top: 1px solid #ebedf0; - } - .bdr-b-md { - border-bottom: 1px solid #ebedf0; - } -} -@media (min-width: 1200px) { - .bdr-l-lg { - border-left: 1px solid #ebedf0; - } - .bdr-r-lg { - border-right: 1px solid #ebedf0; - } - .bdr-t-lg { - border-top: 1px solid #ebedf0; - } - .bdr-b-lg { - border-bottom: 1px solid #ebedf0; - } -} -.bg-picture { - position: relative; - min-height: 260px; - background-repeat: no-repeat; - background-position: center; - background-size: cover; -} -.bg-picture > .bg-picture-overlay { - position: absolute; - top: 0; - bottom: 0; - left: 0; - right: 0; - background-color: rgba(0, 0, 0, 0.5); -} -.bg-picture > .meta { - position: absolute; - left: 0; - right: 0; -} -.bg-picture > .meta.top { - top: 0; -} -.bg-picture > .meta.bottom { - bottom: 0; -} -.shd-0, -.shd-none { - -webkit-box-shadow: none; - box-shadow: none; -} -.csr-move { - cursor: move !important; -} -.ma-20, -.ma-lg { - margin: 20px !important; -} -.ma-15, -.ma-md { - margin: 15px !important; -} -.ma-10, -.ma-sm { - margin: 10px !important; -} -.ma-5, -.ma-xs { - margin: 5px !important; -} -.ma-4 { - margin: 4px !important; -} -.ma-3 { - margin: 3px !important; -} -.ma-2 { - margin: 2px !important; -} -.ma-1 { - margin: 1px !important; -} -.nm { - margin: 0px !important; -} -.mna-20, -.mna-lg { - margin: -20px !important; -} -.mna-15, -.mna-md { - margin: -15px !important; -} -.mna-10, -.mna-sm { - margin: -10px !important; -} -.mna-5, -.mna-xs { - margin: -5px !important; -} -.mna-4 { - margin: -4px !important; -} -.mna-3 { - margin: -3px !important; -} -.mna-2 { - margin: -2px !important; -} -.mna-1 { - margin: -1px !important; -} -.mt-20, -.mt-lg { - margin-top: 20px !important; -} -.mt-15, -.mt-md { - margin-top: 15px !important; -} -.mt-10, -.mt-sm { - margin-top: 10px !important; -} -.mt-5, -.mt-xs { - margin-top: 5px !important; -} -.mt-4 { - margin-top: 4px !important; -} -.mt-3 { - margin-top: 3px !important; -} -.mt-2 { - margin-top: 2px !important; -} -.mt-1 { - margin-top: 1px !important; -} -.mt-0 { - margin-top: 0px !important; -} -.mnt-20, -.mnt-lg { - margin-top: -20px !important; -} -.mnt-15, -.mnt-md { - margin-top: -15px !important; -} -.mnt-10, -.mnt-sm { - margin-top: -10px !important; -} -.mnt-5, -.mnt-xs { - margin-top: -5px !important; -} -.mnt-4 { - margin-top: -4px !important; -} -.mnt-3 { - margin-top: -3px !important; -} -.mnt-2 { - margin-top: -2px !important; -} -.mnt-1 { - margin-top: -1px !important; -} -.mr-20, -.mr-lg { - margin-right: 20px !important; -} -.mr-15, -.mr-md { - margin-right: 15px !important; -} -.mr-10, -.mr-sm { - margin-right: 10px !important; -} -.mr-5, -.mr-xs { - margin-right: 5px !important; -} -.mr-4 { - margin-right: 4px !important; -} -.mr-3 { - margin-right: 3px !important; -} -.mr-2 { - margin-right: 2px !important; -} -.mr-1 { - margin-right: 1px !important; -} -.mr-0 { - margin-right: 0px !important; -} -.mnr-20, -.mnr-lg { - margin-right: -20px !important; -} -.mnr-15, -.mnr-md { - margin-right: -15px !important; -} -.mnr-10, -.mnr-sm { - margin-right: -10px !important; -} -.mnr-5, -.mnr-xs { - margin-right: -5px !important; -} -.mnr-4 { - margin-right: -4px !important; -} -.mnr-3 { - margin-right: -3px !important; -} -.mnr-2 { - margin-right: -2px !important; -} -.mnr-1 { - margin-right: -1px !important; -} -.mb-20, -.mb-lg { - margin-bottom: 20px !important; -} -.mb-15, -.mb-md { - margin-bottom: 15px !important; -} -.mb-10, -.mb-sm { - margin-bottom: 10px !important; -} -.mb-5, -.mb-xs { - margin-bottom: 5px !important; -} -.mb-4 { - margin-bottom: 4px !important; -} -.mb-3 { - margin-bottom: 3px !important; -} -.mb-2 { - margin-bottom: 2px !important; -} -.mb-1 { - margin-bottom: 1px !important; -} -.mb-0 { - margin-bottom: 0px !important; -} -.mnb-20, -.mnb-lg { - margin-bottom: -20px !important; -} -.mnb-15, -.mnb-md { - margin-bottom: -15px !important; -} -.mnb-10, -.mnb-sm { - margin-bottom: -10px !important; -} -.mnb-5, -.mnb-xs { - margin-bottom: -5px !important; -} -.mnb-4 { - margin-bottom: -4px !important; -} -.mnb-3 { - margin-bottom: -3px !important; -} -.mnb-2 { - margin-bottom: -2px !important; -} -.mnb-1 { - margin-bottom: -1px !important; -} -.ml-20, -.ml-lg { - margin-left: 20px !important; -} -.ml-15, -.ml-md { - margin-left: 15px !important; -} -.ml-10, -.ml-sm { - margin-left: 10px !important; -} -.ml-5, -.ml-xs { - margin-left: 5px !important; -} -.ml-4 { - margin-left: 4px !important; -} -.ml-3 { - margin-left: 3px !important; -} -.ml-2 { - margin-left: 2px !important; -} -.ml-1 { - margin-left: 1px !important; -} -.ml-0 { - margin-left: 0px !important; -} -.mnl-20, -.mnl-lg { - margin-left: -20px !important; -} -.mnl-15, -.mnl-md { - margin-left: -15px !important; -} -.mnl-10, -.mnl-sm { - margin-left: -10px !important; -} -.mnl-5, -.mnl-xs { - margin-left: -5px !important; -} -.mnl-4 { - margin-left: -4px !important; -} -.mnl-3 { - margin-left: -3px !important; -} -.mnl-2 { - margin-left: -2px !important; -} -.mnl-1 { - margin-left: -1px !important; -} -.pa-20, -.pa-lg { - padding: 20px !important; -} -.pa-15, -.pa-md { - padding: 15px !important; -} -.pa-10, -.pa-sm { - padding: 10px !important; -} -.pa-5, -.pa-xs { - padding: 5px !important; -} -.pa-4 { - padding: 4px !important; -} -.pa-3 { - padding: 3px !important; -} -.pa-2 { - padding: 2px !important; -} -.pa-1 { - padding: 1px !important; -} -.np { - padding: 0px !important; -} -.pt-20, -.pt-lg { - padding-top: 20px !important; -} -.pt-15, -.pt-md { - padding-top: 15px !important; -} -.pt-10, -.pt-sm { - padding-top: 10px !important; -} -.pt-5, -.pt-xs { - padding-top: 5px !important; -} -.pt-4 { - padding-top: 4px !important; -} -.pt-3 { - padding-top: 3px !important; -} -.pt-2 { - padding-top: 2px !important; -} -.pt-1 { - padding-top: 1px !important; -} -.pt-0 { - padding-top: 0px !important; -} -.pr-20, -.pr-lg { - padding-right: 20px !important; -} -.pr-15, -.pr-md { - padding-right: 15px !important; -} -.pr-10, -.pr-sm { - padding-right: 10px !important; -} -.pr-5, -.pr-xs { - padding-right: 5px !important; -} -.pr-4 { - padding-right: 4px !important; -} -.pr-3 { - padding-right: 3px !important; -} -.pr-2 { - padding-right: 2px !important; -} -.pr-1 { - padding-right: 1px !important; -} -.pr-0 { - padding-right: 0px !important; -} -.pb-20, -.pb-lg { - padding-bottom: 20px !important; -} -.pb-15, -.pb-md { - padding-bottom: 15px !important; -} -.pb-10, -.pb-sm { - padding-bottom: 10px !important; -} -.pb-5, -.pb-xs { - padding-bottom: 5px !important; -} -.pb-4 { - padding-bottom: 4px !important; -} -.pb-3 { - padding-bottom: 3px !important; -} -.pb-2 { - padding-bottom: 2px !important; -} -.pb-1 { - padding-bottom: 1px !important; -} -.pb-0 { - padding-bottom: 0px !important; -} -.pl-20, -.pl-lg { - padding-left: 20px !important; -} -.pl-15, -.pl-md { - padding-left: 15px !important; -} -.pl-10, -.pl-sm { - padding-left: 10px !important; -} -.pl-5, -.pl-xs { - padding-left: 5px !important; -} -.pl-4 { - padding-left: 4px !important; -} -.pl-3 { - padding-left: 3px !important; -} -.pl-2 { - padding-left: 2px !important; -} -.pl-1 { - padding-left: 1px !important; -} -.pl-0 { - padding-left: 0px !important; -} -.w-44 { - width: 44px; -} -.no-focus.form-control, -.form-control .no-focus { - border-color: transparent; -} -.no-focus.form-control:focus, -.form-control .no-focus:focus { - outline: 0; -} -.ovf-h { - overflow: hidden; -} -.break-word { - -ms-word-break: break-all; - word-break: break-all; - word-break: break-word; - -webkit-hyphens: auto; - -moz-hyphens: auto; - hyphens: auto; -} -.builder, -.builder-slot { - position: relative; -} -.builder [data-token], -.builder-slot [data-token] { - cursor: pointer; -} -.builder .btn-block.ui-draggable-dragging, -.builder-slot .btn-block.ui-draggable-dragging { - width: 104px; - height: 68px; - margin: 6px 12px; - white-space: normal; -} -.builder .builder-panel-top, -.builder-slot .builder-panel-top { - margin-bottom: 10px; -} -.builder .template-dnd-help, -.builder-slot .template-dnd-help, -.builder .custom-dnd-help, -.builder-slot .custom-dnd-help { - display: table-cell; - vertical-align: middle; - width: 100%; -} -.builder-active { - background-color: #fff; - position: absolute; - top: 0; - bottom: 0; - right: 0; - left: 0; - width: 100%; - height: 100%; - z-index: 1030; -} -.builder-panel { - position: fixed; - top: 0; - bottom: 0; - right: 0; - width: 525px; - height: 100%; - padding: 15px; - background-color: #d5d4d4; - overflow-y: auto; -} -.builder-panel .btn-close-builder { - width: 100%; -} -.builder-content { - position: fixed; - left: 0; - top: 0; - right: 525px; - height: 100%; -} -.code-mode .builder-panel { - width: 50%; - position: fixed; -} -.code-mode .builder-content { - width: 50%; -} -.code-mode .btn-close-builder { - width: 150px; - float: right; -} -.builder-panel .panel a.btn { - white-space: normal; -} -/********** SLOT ************/ -.builder-active-slot { - background-color: #fff; - z-index: 1030; -} -.builder-panel-slot { - width: 50%; - padding: 15px; - background-color: #d5d4d4; - overflow-y: auto; -} -.builder-panel-slot .btn-close-builder { - width: 100%; -} -.builder-content-slot { - left: 50%; - width: 50%; -} -.code-mode .builder-panel-slot { - width: 50%; -} -.code-mode .builder-content-slot { - width: 50%; -} -.code-mode .btn-close-builder { - width: 150px; - float: right; -} -.builder-panel-slot .panel a.btn { - white-space: normal; -} -/************* END SLOT ******************/ -.ui-draggable-iframeFix { - z-index: 9999 !important; -} -.CodeMirror { - border: 1px solid #eee; - height: auto; -} -#slot_codemode .CodeMirror { - height: 200px; -} -.CodeMirror-hints { - position: absolute; - z-index: 9999 !important; - overflow: hidden; - list-style: none; - margin: 0; - padding: 2px; - -webkit-box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.2); - -moz-box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.2); - box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.2); - border-radius: 3px; - border: 1px solid silver; - background: white; - font-size: 90%; - font-family: monospace; - max-height: 20em; - overflow-y: auto; -} -.CodeMirror-hint { - margin: 0; - padding: 0 4px; - border-radius: 2px; - white-space: pre; - color: black; - cursor: pointer; -} -li.CodeMirror-hint-active { - background: #08f; - color: white; -} -@media (max-width: 767px) { - .builder .builder-panel { - width: 100%; - bottom: 0; - top: auto; - height: 35%; - padding-left: 30px !important; - padding-right: 30px !important; - border-top: 1px solid #757575; - position: fixed; - } - .builder .builder-content { - right: 0; - } - .builder .builder-panel-top { - position: relative; - width: 100%; - } - .builder .builder-tokens { - margin-top: 10px; - } -} -.mautic-editable { - min-height: 75px; - width: 100%; - border: dashed 1px #000; - margin-top: 3px; - margin-bottom: 3px; -} -.mautic-editable.over-droppable { - border: dashed 2px #4e5e9e; - -webkit-box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.75); - -moz-box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.75); - box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.75); -} -.mautic-editable-placeholder { - height: 100%; - width: 100%; - text-align: center; - margin-top: 25px; -} -div[contentEditable=true]:empty:not(:focus):before { - content: attr(data-placeholder); - padding: 5px; - display: table-cell; -} -.inline-token-list { - max-height: 200px; - overflow-y: auto; - overflow-x: hidden; - margin-bottom: 20px; - padding-left: 0; - width: 240px; -} -.inline-token { - position: relative; - display: block; - padding: 5px; - margin-bottom: -1px; - background-color: #ffffff; - border: 1px solid #f7f7f7; - color: #f7f7f7; - font-size: 12px; -} -.inline-token:first-child { - border-top-right-radius: 4px; - border-top-left-radius: 4px; -} -.inline-token:last-child { - margin-bottom: 0; - border-bottom-right-radius: 4px; - border-bottom-left-radius: 4px; -} -a.inline-token { - color: #000000; - text-decoration: none; - font-family: "Open Sans", Helvetica, Arial, sans-serif; - line-height: 1.3856; -} -a.inline-token:hover, -a.inline-token:focus { - background-color: #DBDFEC; -} -a.inline-token .text-muted { - color: #8393a2; -} -.sortable-panels .panel { - position: relative; -} -.sortable-panels .panel.sortable-has-error { - border-color: #f86b4f; -} -.sortable-panels .panel .sortable-panel-label { - font-weight: bold; -} -.sortable-panels .panel .sortable-panel-buttons { - position: absolute; - right: 8px; - top: 8px; -} -.sortable-panels .panel .sortable-panel-content { - min-height: 50px; - padding: 10px; -} -.sortable-panels .panel.new-panel { - border: none; -} -.sortable-panels .panel.new-panel .sortable-panel-wrapper { - display: none; -} -@media (min-width: 992px) { - .modal-xl { - width: 1140px; - } -} -.bg-auto .tabs-left > li.active > a, -.bg-auto .tabs-left > li.active > a:hover, -.bg-auto .tabs-left > li.active > a:focus { - border-left-width: 0; -} -.bg-auto .tabs-left, -.bg-auto .tabs-right { - -webkit-box-shadow: inset 0 -3px 0 -3px rgba(0, 0, 0, 0.05); - box-shadow: inset 0 -3px 0 -3px rgba(0, 0, 0, 0.05); -} -.bg-auto .tabs-left li:last-child, -.bg-auto .tabs-right li:last-child { - margin-bottom: -2px; -} -.bg-auto .tabs-right > li.active > a, -.bg-auto .tabs-right > li.active > a:hover, -.bg-auto .tabs-right > li.active > a:focus { - border-right-width: 0; -} -.tab-button { - border-bottom: 1px solid #ebedf0 !important; -} -.modal-body.np .tabs-horizontal { - margin-top: -1px; -} -.modal-body.np .tabs-left li > a, -.modal-body.np .tabs-right li > a { - border-radius: 0; -} -.confirmation-modal .modal-content { - width: 400px; - font-size: 1.2em; - font-weight: bold; - margin: 10% auto; - padding: 8px; - border-radius: 8px; - background: #fff; - text-align: center; -} -.content-overlay { - position: absolute; - background: #fbfbfb; - z-index: 50; - width: 100%; - height: 100%; - padding-left: 15px; - font-weight: bold; -} -.stat-boxes .panel { - height: 164px; -} -.has-click-event { - cursor: pointer; -} -.mautibot-error { - max-width: 1000px; - margin-left: auto; - margin-right: auto; -} -label.required:after { - content: " *"; - color: #f86b4f; -} -#app-header .nav > li > a { - padding: 10px 12px; -} -.search-container { - position: relative; - line-height: 60px; - -webkit-transition: all 0.3s ease; - -moz-transition: all 0.3s ease; - -ms-transition: all 0.3s ease; - -o-transition: all 0.3s ease; - transition: all 0.3s ease; -} -.search-container .search { - border: 1px solid #fff; - position: absolute; - left: 0px; - width: 24px; - height: 34px; - padding: 0 0 0 24px; - margin: 12px 0 0 5px; - z-index: 1; - -webkit-transition: all 0.5s ease; - -moz-transition: all 0.5s ease; - -ms-transition: all 0.5s ease; - -o-transition: all 0.5s ease; - transition: all 0.5s ease; -} -.search-container a.search-button { - color: rgba(0, 0, 0, 0.6); - position: absolute; - left: 12px; - z-index: 5; -} -.search-container.active .search { - width: 225px; - border: 1px solid #d5d5d5; -} -.search-container.active i { - color: {{mautic_primary}}; -} -.col-actions { - width: 100px; -} -/* Shuffle */ -.shuffle-item .card { - height: 150px; -} -.equal, -.equal > div[class*='col-'] { - display: -webkit-box; - display: -moz-box; - display: -ms-flexbox; - display: -webkit-flex; - display: flex; - flex: 1 1 auto; -} -.mautic-pleasewait { - width: 200px; - height: 50px; - position: fixed; - left: 50%; - top: 10px; - margin: 0 0 0 -100px; - text-align: center; - font-weight: bold; - font-size: 2em; - color: #eee; - z-index: 9999; -} -body.noscroll { - overflow: hidden; -} -.form-select-modal .panel-body { - min-height: 150px; -} -@media (max-width: 768px) { - .form-select-modal .panel-body { - min-height: 0; - } -} -.table .input-group-sm > .input-group-addon { - font-size: 10px; - line-height: 1em; -} -.table .input-group-sm .dropdown-toggle { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} -.input-group .input-group-btn button { - height: 32px; -} -.theme-selected { - border: 1px solid #4e5e9e; - -webkit-box-shadow: 0px 0px 40px #f3f3f3; - box-shadow: 0px 0px 40px #f3f3f3; -} -#app-content.content-only .toolbar-form-buttons.pull-right { - padding-right: 20px; -} -.fr-toolbar { - border-top: 2px solid {{mautic_primary}}; -} -.modal-body-content iframe.fr-iframe { - min-height: 300px; -} -.CodeMirror { - border: 1px solid #d5d5d5; - border-radius: 3px; -} -table.table > tbody > tr > td.long-text { - max-width: 500px; - min-width: 300px; - -ms-word-break: break-all; - word-break: break-word; - overflow-wrap: break-word; - word-wrap: break-word; - white-space: normal; -} -.dynamicContentFilterContainer .btn-primary:hover { - color: #5d6c7c; -} -#dynamicContentContainer .remove-item { - display: block; -} -#dynamicContentContainer > .tab-pane > .panel > ul { - white-space: nowrap; - overflow: auto; - overflow-y: hidden; - max-width: 100%; -} -#dynamicContentContainer > .tab-pane > .panel > ul li { - display: inline-block; - vertical-align: top; - float: none; -} -div[data-filter-container] .in-group { - margin-left: 20px; -} -div[data-filter-container] .panel { - margin-bottom: 0; - margin-top: 20px; -} -div[data-filter-container] .panel.in-group { - margin-top: 0; - border-top: 0; - border-top-left-radius: 0; - border-top-right-radius: 0; -} -td.col-id, -th.col-id { - width: 75px; -} -.badge-wrapper { - float: right; - vertical-align: middle; - margin-right: -10px; -} -span.slot-caption { - font-size: 12px; -} -.imagecard-caption, -figcaption { - font-size: 16px; -} -.imagecard { - background-color: #ddd !important; -} -.imagecard .imagecard-caption { - background-color: #bbb !important; -} diff --git a/templates/2.10.0/app/bundles/CoreBundle/Assets/css/libraries/libraries.css b/templates/2.10.0/app/bundles/CoreBundle/Assets/css/libraries/libraries.css deleted file mode 100644 index 6ee0d8f..0000000 --- a/templates/2.10.0/app/bundles/CoreBundle/Assets/css/libraries/libraries.css +++ /dev/null @@ -1,18664 +0,0 @@ -/*! normalize.css v3.0.1 | MIT License | git.io/normalize */ -html { - font-family: sans-serif; - -ms-text-size-adjust: 100%; - -webkit-text-size-adjust: 100%; -} -body { - margin: 0; -} -article, -aside, -details, -figcaption, -figure, -footer, -header, -hgroup, -main, -nav, -section, -summary { - display: block; -} -audio, -canvas, -progress, -video { - display: inline-block; - vertical-align: baseline; -} -audio:not([controls]) { - display: none; - height: 0; -} -[hidden], -template { - display: none; -} -a { - background: transparent; -} -a:active, -a:hover { - outline: 0; -} -abbr[title] { - border-bottom: 1px dotted; -} -b, -strong { - font-weight: bold; -} -dfn { - font-style: italic; -} -h1 { - font-size: 2em; - margin: 0.67em 0; -} -mark { - background: #ff0; - color: #000; -} -small { - font-size: 80%; -} -sub, -sup { - font-size: 75%; - line-height: 0; - position: relative; - vertical-align: baseline; -} -sup { - top: -0.5em; -} -sub { - bottom: -0.25em; -} -img { - border: 0; -} -svg:not(:root) { - overflow: hidden; -} -figure { - margin: 1em 40px; -} -hr { - -moz-box-sizing: content-box; - box-sizing: content-box; - height: 0; -} -pre { - overflow: auto; -} -code, -kbd, -pre, -samp { - font-family: monospace, monospace; - font-size: 1em; -} -button, -input, -optgroup, -select, -textarea { - color: inherit; - font: inherit; - margin: 0; -} -button { - overflow: visible; -} -button, -select { - text-transform: none; -} -button, -html input[type="button"], -input[type="reset"], -input[type="submit"] { - -webkit-appearance: button; - cursor: pointer; -} -button[disabled], -html input[disabled] { - cursor: default; -} -button::-moz-focus-inner, -input::-moz-focus-inner { - border: 0; - padding: 0; -} -input { - line-height: normal; -} -input[type="checkbox"], -input[type="radio"] { - box-sizing: border-box; - padding: 0; -} -input[type="number"]::-webkit-inner-spin-button, -input[type="number"]::-webkit-outer-spin-button { - height: auto; -} -input[type="search"] { - -webkit-appearance: textfield; - -moz-box-sizing: content-box; - -webkit-box-sizing: content-box; - box-sizing: content-box; -} -input[type="search"]::-webkit-search-cancel-button, -input[type="search"]::-webkit-search-decoration { - -webkit-appearance: none; -} -fieldset { - border: 1px solid #c0c0c0; - margin: 0 2px; - padding: 0.35em 0.625em 0.75em; -} -legend { - border: 0; - padding: 0; -} -textarea { - overflow: auto; -} -optgroup { - font-weight: bold; -} -table { - border-collapse: collapse; - border-spacing: 0; -} -td, -th { - padding: 0; -} -@media print { - * { - text-shadow: none !important; - color: #000 !important; - background: transparent !important; - box-shadow: none !important; - } - a, - a:visited { - text-decoration: underline; - } - a[href]:after { - content: " (" attr(href) ")"; - } - abbr[title]:after { - content: " (" attr(title) ")"; - } - a[href^="javascript:"]:after, - a[href^="#"]:after { - content: ""; - } - pre, - blockquote { - border: 1px solid #999; - page-break-inside: avoid; - } - thead { - display: table-header-group; - } - tr, - img { - page-break-inside: avoid; - } - img { - max-width: 100% !important; - } - p, - h2, - h3 { - orphans: 3; - widows: 3; - } - h2, - h3 { - page-break-after: avoid; - } - select { - background: #fff !important; - } - .navbar { - display: none; - } - .table td, - .table th { - background-color: #fff !important; - } - .btn > .caret, - .dropup > .btn > .caret { - border-top-color: #000 !important; - } - .label { - border: 1px solid #000; - } - .table { - border-collapse: collapse !important; - } - .table-bordered th, - .table-bordered td { - border: 1px solid #ddd !important; - } -} -@font-face { - font-family: 'Glyphicons Halflings'; - src: url('../fonts/icons/glyphicons-halflings-regular.eot'); - src: url('../fonts/icons/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/icons/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/icons/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/icons/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg'); -} -.glyphicon { - position: relative; - top: 1px; - display: inline-block; - font-family: 'Glyphicons Halflings'; - font-style: normal; - font-weight: normal; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} -.glyphicon-asterisk:before { - content: "\2a"; -} -.glyphicon-plus:before { - content: "\2b"; -} -.glyphicon-euro:before { - content: "\20ac"; -} -.glyphicon-minus:before { - content: "\2212"; -} -.glyphicon-cloud:before { - content: "\2601"; -} -.glyphicon-envelope:before { - content: "\2709"; -} -.glyphicon-pencil:before { - content: "\270f"; -} -.glyphicon-glass:before { - content: "\e001"; -} -.glyphicon-music:before { - content: "\e002"; -} -.glyphicon-search:before { - content: "\e003"; -} -.glyphicon-heart:before { - content: "\e005"; -} -.glyphicon-star:before { - content: "\e006"; -} -.glyphicon-star-empty:before { - content: "\e007"; -} -.glyphicon-user:before { - content: "\e008"; -} -.glyphicon-film:before { - content: "\e009"; -} -.glyphicon-th-large:before { - content: "\e010"; -} -.glyphicon-th:before { - content: "\e011"; -} -.glyphicon-th-list:before { - content: "\e012"; -} -.glyphicon-ok:before { - content: "\e013"; -} -.glyphicon-remove:before { - content: "\e014"; -} -.glyphicon-zoom-in:before { - content: "\e015"; -} -.glyphicon-zoom-out:before { - content: "\e016"; -} -.glyphicon-off:before { - content: "\e017"; -} -.glyphicon-signal:before { - content: "\e018"; -} -.glyphicon-cog:before { - content: "\e019"; -} -.glyphicon-trash:before { - content: "\e020"; -} -.glyphicon-home:before { - content: "\e021"; -} -.glyphicon-file:before { - content: "\e022"; -} -.glyphicon-time:before { - content: "\e023"; -} -.glyphicon-road:before { - content: "\e024"; -} -.glyphicon-download-alt:before { - content: "\e025"; -} -.glyphicon-download:before { - content: "\e026"; -} -.glyphicon-upload:before { - content: "\e027"; -} -.glyphicon-inbox:before { - content: "\e028"; -} -.glyphicon-play-circle:before { - content: "\e029"; -} -.glyphicon-repeat:before { - content: "\e030"; -} -.glyphicon-refresh:before { - content: "\e031"; -} -.glyphicon-list-alt:before { - content: "\e032"; -} -.glyphicon-lock:before { - content: "\e033"; -} -.glyphicon-flag:before { - content: "\e034"; -} -.glyphicon-headphones:before { - content: "\e035"; -} -.glyphicon-volume-off:before { - content: "\e036"; -} -.glyphicon-volume-down:before { - content: "\e037"; -} -.glyphicon-volume-up:before { - content: "\e038"; -} -.glyphicon-qrcode:before { - content: "\e039"; -} -.glyphicon-barcode:before { - content: "\e040"; -} -.glyphicon-tag:before { - content: "\e041"; -} -.glyphicon-tags:before { - content: "\e042"; -} -.glyphicon-book:before { - content: "\e043"; -} -.glyphicon-bookmark:before { - content: "\e044"; -} -.glyphicon-print:before { - content: "\e045"; -} -.glyphicon-camera:before { - content: "\e046"; -} -.glyphicon-font:before { - content: "\e047"; -} -.glyphicon-bold:before { - content: "\e048"; -} -.glyphicon-italic:before { - content: "\e049"; -} -.glyphicon-text-height:before { - content: "\e050"; -} -.glyphicon-text-width:before { - content: "\e051"; -} -.glyphicon-align-left:before { - content: "\e052"; -} -.glyphicon-align-center:before { - content: "\e053"; -} -.glyphicon-align-right:before { - content: "\e054"; -} -.glyphicon-align-justify:before { - content: "\e055"; -} -.glyphicon-list:before { - content: "\e056"; -} -.glyphicon-indent-left:before { - content: "\e057"; -} -.glyphicon-indent-right:before { - content: "\e058"; -} -.glyphicon-facetime-video:before { - content: "\e059"; -} -.glyphicon-picture:before { - content: "\e060"; -} -.glyphicon-map-marker:before { - content: "\e062"; -} -.glyphicon-adjust:before { - content: "\e063"; -} -.glyphicon-tint:before { - content: "\e064"; -} -.glyphicon-edit:before { - content: "\e065"; -} -.glyphicon-share:before { - content: "\e066"; -} -.glyphicon-check:before { - content: "\e067"; -} -.glyphicon-move:before { - content: "\e068"; -} -.glyphicon-step-backward:before { - content: "\e069"; -} -.glyphicon-fast-backward:before { - content: "\e070"; -} -.glyphicon-backward:before { - content: "\e071"; -} -.glyphicon-play:before { - content: "\e072"; -} -.glyphicon-pause:before { - content: "\e073"; -} -.glyphicon-stop:before { - content: "\e074"; -} -.glyphicon-forward:before { - content: "\e075"; -} -.glyphicon-fast-forward:before { - content: "\e076"; -} -.glyphicon-step-forward:before { - content: "\e077"; -} -.glyphicon-eject:before { - content: "\e078"; -} -.glyphicon-chevron-left:before { - content: "\e079"; -} -.glyphicon-chevron-right:before { - content: "\e080"; -} -.glyphicon-plus-sign:before { - content: "\e081"; -} -.glyphicon-minus-sign:before { - content: "\e082"; -} -.glyphicon-remove-sign:before { - content: "\e083"; -} -.glyphicon-ok-sign:before { - content: "\e084"; -} -.glyphicon-question-sign:before { - content: "\e085"; -} -.glyphicon-info-sign:before { - content: "\e086"; -} -.glyphicon-screenshot:before { - content: "\e087"; -} -.glyphicon-remove-circle:before { - content: "\e088"; -} -.glyphicon-ok-circle:before { - content: "\e089"; -} -.glyphicon-ban-circle:before { - content: "\e090"; -} -.glyphicon-arrow-left:before { - content: "\e091"; -} -.glyphicon-arrow-right:before { - content: "\e092"; -} -.glyphicon-arrow-up:before { - content: "\e093"; -} -.glyphicon-arrow-down:before { - content: "\e094"; -} -.glyphicon-share-alt:before { - content: "\e095"; -} -.glyphicon-resize-full:before { - content: "\e096"; -} -.glyphicon-resize-small:before { - content: "\e097"; -} -.glyphicon-exclamation-sign:before { - content: "\e101"; -} -.glyphicon-gift:before { - content: "\e102"; -} -.glyphicon-leaf:before { - content: "\e103"; -} -.glyphicon-fire:before { - content: "\e104"; -} -.glyphicon-eye-open:before { - content: "\e105"; -} -.glyphicon-eye-close:before { - content: "\e106"; -} -.glyphicon-warning-sign:before { - content: "\e107"; -} -.glyphicon-plane:before { - content: "\e108"; -} -.glyphicon-calendar:before { - content: "\e109"; -} -.glyphicon-random:before { - content: "\e110"; -} -.glyphicon-comment:before { - content: "\e111"; -} -.glyphicon-magnet:before { - content: "\e112"; -} -.glyphicon-chevron-up:before { - content: "\e113"; -} -.glyphicon-chevron-down:before { - content: "\e114"; -} -.glyphicon-retweet:before { - content: "\e115"; -} -.glyphicon-shopping-cart:before { - content: "\e116"; -} -.glyphicon-folder-close:before { - content: "\e117"; -} -.glyphicon-folder-open:before { - content: "\e118"; -} -.glyphicon-resize-vertical:before { - content: "\e119"; -} -.glyphicon-resize-horizontal:before { - content: "\e120"; -} -.glyphicon-hdd:before { - content: "\e121"; -} -.glyphicon-bullhorn:before { - content: "\e122"; -} -.glyphicon-bell:before { - content: "\e123"; -} -.glyphicon-certificate:before { - content: "\e124"; -} -.glyphicon-thumbs-up:before { - content: "\e125"; -} -.glyphicon-thumbs-down:before { - content: "\e126"; -} -.glyphicon-hand-right:before { - content: "\e127"; -} -.glyphicon-hand-left:before { - content: "\e128"; -} -.glyphicon-hand-up:before { - content: "\e129"; -} -.glyphicon-hand-down:before { - content: "\e130"; -} -.glyphicon-circle-arrow-right:before { - content: "\e131"; -} -.glyphicon-circle-arrow-left:before { - content: "\e132"; -} -.glyphicon-circle-arrow-up:before { - content: "\e133"; -} -.glyphicon-circle-arrow-down:before { - content: "\e134"; -} -.glyphicon-globe:before { - content: "\e135"; -} -.glyphicon-wrench:before { - content: "\e136"; -} -.glyphicon-tasks:before { - content: "\e137"; -} -.glyphicon-filter:before { - content: "\e138"; -} -.glyphicon-briefcase:before { - content: "\e139"; -} -.glyphicon-fullscreen:before { - content: "\e140"; -} -.glyphicon-dashboard:before { - content: "\e141"; -} -.glyphicon-paperclip:before { - content: "\e142"; -} -.glyphicon-heart-empty:before { - content: "\e143"; -} -.glyphicon-link:before { - content: "\e144"; -} -.glyphicon-phone:before { - content: "\e145"; -} -.glyphicon-pushpin:before { - content: "\e146"; -} -.glyphicon-usd:before { - content: "\e148"; -} -.glyphicon-gbp:before { - content: "\e149"; -} -.glyphicon-sort:before { - content: "\e150"; -} -.glyphicon-sort-by-alphabet:before { - content: "\e151"; -} -.glyphicon-sort-by-alphabet-alt:before { - content: "\e152"; -} -.glyphicon-sort-by-order:before { - content: "\e153"; -} -.glyphicon-sort-by-order-alt:before { - content: "\e154"; -} -.glyphicon-sort-by-attributes:before { - content: "\e155"; -} -.glyphicon-sort-by-attributes-alt:before { - content: "\e156"; -} -.glyphicon-unchecked:before { - content: "\e157"; -} -.glyphicon-expand:before { - content: "\e158"; -} -.glyphicon-collapse-down:before { - content: "\e159"; -} -.glyphicon-collapse-up:before { - content: "\e160"; -} -.glyphicon-log-in:before { - content: "\e161"; -} -.glyphicon-flash:before { - content: "\e162"; -} -.glyphicon-log-out:before { - content: "\e163"; -} -.glyphicon-new-window:before { - content: "\e164"; -} -.glyphicon-record:before { - content: "\e165"; -} -.glyphicon-save:before { - content: "\e166"; -} -.glyphicon-open:before { - content: "\e167"; -} -.glyphicon-saved:before { - content: "\e168"; -} -.glyphicon-import:before { - content: "\e169"; -} -.glyphicon-export:before { - content: "\e170"; -} -.glyphicon-send:before { - content: "\e171"; -} -.glyphicon-floppy-disk:before { - content: "\e172"; -} -.glyphicon-floppy-saved:before { - content: "\e173"; -} -.glyphicon-floppy-remove:before { - content: "\e174"; -} -.glyphicon-floppy-save:before { - content: "\e175"; -} -.glyphicon-floppy-open:before { - content: "\e176"; -} -.glyphicon-credit-card:before { - content: "\e177"; -} -.glyphicon-transfer:before { - content: "\e178"; -} -.glyphicon-cutlery:before { - content: "\e179"; -} -.glyphicon-header:before { - content: "\e180"; -} -.glyphicon-compressed:before { - content: "\e181"; -} -.glyphicon-earphone:before { - content: "\e182"; -} -.glyphicon-phone-alt:before { - content: "\e183"; -} -.glyphicon-tower:before { - content: "\e184"; -} -.glyphicon-stats:before { - content: "\e185"; -} -.glyphicon-sd-video:before { - content: "\e186"; -} -.glyphicon-hd-video:before { - content: "\e187"; -} -.glyphicon-subtitles:before { - content: "\e188"; -} -.glyphicon-sound-stereo:before { - content: "\e189"; -} -.glyphicon-sound-dolby:before { - content: "\e190"; -} -.glyphicon-sound-5-1:before { - content: "\e191"; -} -.glyphicon-sound-6-1:before { - content: "\e192"; -} -.glyphicon-sound-7-1:before { - content: "\e193"; -} -.glyphicon-copyright-mark:before { - content: "\e194"; -} -.glyphicon-registration-mark:before { - content: "\e195"; -} -.glyphicon-cloud-download:before { - content: "\e197"; -} -.glyphicon-cloud-upload:before { - content: "\e198"; -} -.glyphicon-tree-conifer:before { - content: "\e199"; -} -.glyphicon-tree-deciduous:before { - content: "\e200"; -} -* { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; -} -*:before, -*:after { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; -} -html { - font-size: 10px; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); -} -body { - font-family: "Open Sans", Helvetica, Arial, sans-serif; - font-size: 13px; - line-height: 1.3856; - color: #47535f; - background-color: #f8f8f8; -} -input, -button, -select, -textarea { - font-family: inherit; - font-size: inherit; - line-height: inherit; -} -a { - color: {{mautic_primary}}; - text-decoration: none; -} -a:hover, -a:focus { - color: {{mautic_primary}}; - text-decoration: underline; -} -a:focus { - outline: 0; -} -figure { - margin: 0; -} -img { - vertical-align: middle; -} -.img-responsive, -.thumbnail > img, -.thumbnail a > img, -.carousel-inner > .item > img, -.carousel-inner > .item > a > img { - display: block; - width: 100% \9; - max-width: 100%; - height: auto; -} -.img-rounded { - border-radius: 4px; -} -.img-thumbnail { - padding: 4px; - line-height: 1.3856; - background-color: #f8f8f8; - border: 1px solid #dddddd; - border-radius: 3px; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; - display: inline-block; - width: 100% \9; - max-width: 100%; - height: auto; -} -.img-circle { - border-radius: 50%; -} -hr { - margin-top: 18px; - margin-bottom: 18px; - border: 0; - border-top: 1px solid #ebedf0; -} -.sr-only { - position: absolute; - width: 1px; - height: 1px; - margin: -1px; - padding: 0; - overflow: hidden; - clip: rect(0, 0, 0, 0); - border: 0; -} -.sr-only-focusable:active, -.sr-only-focusable:focus { - position: static; - width: auto; - height: auto; - margin: 0; - overflow: visible; - clip: auto; -} -h1, -h2, -h3, -h4, -h5, -h6, -.h1, -.h2, -.h3, -.h4, -.h5, -.h6 { - font-family: inherit; - font-weight: 400; - line-height: 1.2; - color: inherit; -} -h1 small, -h2 small, -h3 small, -h4 small, -h5 small, -h6 small, -.h1 small, -.h2 small, -.h3 small, -.h4 small, -.h5 small, -.h6 small, -h1 .small, -h2 .small, -h3 .small, -h4 .small, -h5 .small, -h6 .small, -.h1 .small, -.h2 .small, -.h3 .small, -.h4 .small, -.h5 .small, -.h6 .small { - font-weight: normal; - line-height: 1; - color: #a0acb8; -} -h1, -.h1, -h2, -.h2, -h3, -.h3 { - margin-top: 18px; - margin-bottom: 9px; -} -h1 small, -.h1 small, -h2 small, -.h2 small, -h3 small, -.h3 small, -h1 .small, -.h1 .small, -h2 .small, -.h2 .small, -h3 .small, -.h3 .small { - font-size: 65%; -} -h4, -.h4, -h5, -.h5, -h6, -.h6 { - margin-top: 9px; - margin-bottom: 9px; -} -h4 small, -.h4 small, -h5 small, -.h5 small, -h6 small, -.h6 small, -h4 .small, -.h4 .small, -h5 .small, -.h5 .small, -h6 .small, -.h6 .small { - font-size: 75%; -} -h1, -.h1 { - font-size: 33px; -} -h2, -.h2 { - font-size: 27px; -} -h3, -.h3 { - font-size: 20px; -} -h4, -.h4 { - font-size: 16px; -} -h5, -.h5 { - font-size: 14px; -} -h6, -.h6 { - font-size: 13px; -} -p { - margin: 0 0 9px; -} -.lead { - margin-bottom: 18px; - font-size: 14px; - font-weight: 300; - line-height: 1.4; -} -@media (min-width: 768px) { - .lead { - font-size: 19.5px; - } -} -small, -.small { - font-size: 84%; -} -cite { - font-style: normal; -} -mark, -.mark { - background-color: #fcf8e3; - padding: .2em; -} -.text-left { - text-align: left; -} -.text-right { - text-align: right; -} -.text-center { - text-align: center; -} -.text-justify { - text-align: justify; -} -.text-nowrap { - white-space: nowrap; -} -.text-lowercase { - text-transform: lowercase; -} -.text-uppercase { - text-transform: uppercase; -} -.text-capitalize { - text-transform: capitalize; -} -.text-muted { - color: #a0acb8; -} -.text-primary { - color: {{mautic_primary}}; -} -a.text-primary:hover { - color: {{mautic_primary}}; -} -.text-success { - color: #3c763d; -} -a.text-success:hover { - color: #2b542c; -} -.text-info { - color: #31708f; -} -a.text-info:hover { - color: #245269; -} -.text-warning { - color: #8a6d3b; -} -a.text-warning:hover { - color: #66512c; -} -.text-danger { - color: #a94442; -} -a.text-danger:hover { - color: #843534; -} -.bg-primary { - color: #fff; - background-color: {{mautic_primary}}; -} -a.bg-primary:hover { - background-color: {{mautic_primary}}; -} -.bg-success { - background-color: #dff0d8; -} -a.bg-success:hover { - background-color: #c1e2b3; -} -.bg-info { - background-color: #d9edf7; -} -a.bg-info:hover { - background-color: #afd9ee; -} -.bg-warning { - background-color: #fcf8e3; -} -a.bg-warning:hover { - background-color: #f7ecb5; -} -.bg-danger { - background-color: #f2dede; -} -a.bg-danger:hover { - background-color: #e4b9b9; -} -.page-header { - padding-bottom: 8px; - margin: 36px 0 18px; - border-bottom: 1px solid #ebedf0; -} -ul, -ol { - margin-top: 0; - margin-bottom: 9px; -} -ul ul, -ol ul, -ul ol, -ol ol { - margin-bottom: 0; -} -.list-unstyled { - padding-left: 0; - list-style: none; -} -.list-inline { - padding-left: 0; - list-style: none; - margin-left: -5px; -} -.list-inline > li { - display: inline-block; - padding-left: 5px; - padding-right: 5px; -} -dl { - margin-top: 0; - margin-bottom: 18px; -} -dt, -dd { - line-height: 1.3856; -} -dt { - font-weight: bold; -} -dd { - margin-left: 0; -} -@media (min-width: 768px) { - .dl-horizontal dt { - float: left; - width: 160px; - clear: left; - text-align: right; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - } - .dl-horizontal dd { - margin-left: 180px; - } -} -abbr[title], -abbr[data-original-title] { - cursor: help; - border-bottom: 1px dotted #a0acb8; -} -.initialism { - font-size: 90%; - text-transform: uppercase; -} -blockquote { - padding: 9px 18px; - margin: 0 0 18px; - font-size: 16.25px; - border-left: 5px solid #ebedf0; -} -blockquote p:last-child, -blockquote ul:last-child, -blockquote ol:last-child { - margin-bottom: 0; -} -blockquote footer, -blockquote small, -blockquote .small { - display: block; - font-size: 80%; - line-height: 1.3856; - color: #a0acb8; -} -blockquote footer:before, -blockquote small:before, -blockquote .small:before { - content: '\2014 \00A0'; -} -.blockquote-reverse, -blockquote.pull-right { - padding-right: 15px; - padding-left: 0; - border-right: 5px solid #ebedf0; - border-left: 0; - text-align: right; -} -.blockquote-reverse footer:before, -blockquote.pull-right footer:before, -.blockquote-reverse small:before, -blockquote.pull-right small:before, -.blockquote-reverse .small:before, -blockquote.pull-right .small:before { - content: ''; -} -.blockquote-reverse footer:after, -blockquote.pull-right footer:after, -.blockquote-reverse small:after, -blockquote.pull-right small:after, -.blockquote-reverse .small:after, -blockquote.pull-right .small:after { - content: '\00A0 \2014'; -} -blockquote:before, -blockquote:after { - content: ""; -} -address { - margin-bottom: 18px; - font-style: normal; - line-height: 1.3856; -} -code, -kbd, -pre, -samp { - font-family: Menlo, Monaco, Consolas, "Courier New", monospace; -} -code { - padding: 2px 4px; - font-size: 90%; - color: #c7254e; - background-color: #f9f2f4; - border-radius: 3px; -} -kbd { - padding: 2px 4px; - font-size: 90%; - color: #ffffff; - background-color: #333333; - border-radius: 2px; - box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); -} -kbd kbd { - padding: 0; - font-size: 100%; - box-shadow: none; -} -pre { - display: block; - padding: 8.5px; - margin: 0 0 9px; - font-size: 12px; - line-height: 1.3856; - word-break: break-all; - word-wrap: break-word; - color: #3c4650; - background-color: #f5f5f5; - border: 1px solid #cccccc; - border-radius: 3px; -} -pre code { - padding: 0; - font-size: inherit; - color: inherit; - white-space: pre-wrap; - background-color: transparent; - border-radius: 0; -} -.pre-scrollable { - max-height: 340px; - overflow-y: scroll; -} -.container { - margin-right: auto; - margin-left: auto; - padding-left: 15px; - padding-right: 15px; -} -@media (min-width: 768px) { - .container { - width: 750px; - } -} -@media (min-width: 992px) { - .container { - width: 970px; - } -} -@media (min-width: 1200px) { - .container { - width: 1170px; - } -} -.container-fluid { - margin-right: auto; - margin-left: auto; - padding-left: 15px; - padding-right: 15px; -} -.row { - margin-left: -15px; - margin-right: -15px; -} -.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 { - position: relative; - min-height: 1px; - padding-left: 15px; - padding-right: 15px; -} -.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 { - float: left; -} -.col-xs-12 { - width: 100%; -} -.col-xs-11 { - width: 91.66666667%; -} -.col-xs-10 { - width: 83.33333333%; -} -.col-xs-9 { - width: 75%; -} -.col-xs-8 { - width: 66.66666667%; -} -.col-xs-7 { - width: 58.33333333%; -} -.col-xs-6 { - width: 50%; -} -.col-xs-5 { - width: 41.66666667%; -} -.col-xs-4 { - width: 33.33333333%; -} -.col-xs-3 { - width: 25%; -} -.col-xs-2 { - width: 16.66666667%; -} -.col-xs-1 { - width: 8.33333333%; -} -.col-xs-pull-12 { - right: 100%; -} -.col-xs-pull-11 { - right: 91.66666667%; -} -.col-xs-pull-10 { - right: 83.33333333%; -} -.col-xs-pull-9 { - right: 75%; -} -.col-xs-pull-8 { - right: 66.66666667%; -} -.col-xs-pull-7 { - right: 58.33333333%; -} -.col-xs-pull-6 { - right: 50%; -} -.col-xs-pull-5 { - right: 41.66666667%; -} -.col-xs-pull-4 { - right: 33.33333333%; -} -.col-xs-pull-3 { - right: 25%; -} -.col-xs-pull-2 { - right: 16.66666667%; -} -.col-xs-pull-1 { - right: 8.33333333%; -} -.col-xs-pull-0 { - right: auto; -} -.col-xs-push-12 { - left: 100%; -} -.col-xs-push-11 { - left: 91.66666667%; -} -.col-xs-push-10 { - left: 83.33333333%; -} -.col-xs-push-9 { - left: 75%; -} -.col-xs-push-8 { - left: 66.66666667%; -} -.col-xs-push-7 { - left: 58.33333333%; -} -.col-xs-push-6 { - left: 50%; -} -.col-xs-push-5 { - left: 41.66666667%; -} -.col-xs-push-4 { - left: 33.33333333%; -} -.col-xs-push-3 { - left: 25%; -} -.col-xs-push-2 { - left: 16.66666667%; -} -.col-xs-push-1 { - left: 8.33333333%; -} -.col-xs-push-0 { - left: auto; -} -.col-xs-offset-12 { - margin-left: 100%; -} -.col-xs-offset-11 { - margin-left: 91.66666667%; -} -.col-xs-offset-10 { - margin-left: 83.33333333%; -} -.col-xs-offset-9 { - margin-left: 75%; -} -.col-xs-offset-8 { - margin-left: 66.66666667%; -} -.col-xs-offset-7 { - margin-left: 58.33333333%; -} -.col-xs-offset-6 { - margin-left: 50%; -} -.col-xs-offset-5 { - margin-left: 41.66666667%; -} -.col-xs-offset-4 { - margin-left: 33.33333333%; -} -.col-xs-offset-3 { - margin-left: 25%; -} -.col-xs-offset-2 { - margin-left: 16.66666667%; -} -.col-xs-offset-1 { - margin-left: 8.33333333%; -} -.col-xs-offset-0 { - margin-left: 0%; -} -@media (min-width: 768px) { - .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 { - float: left; - } - .col-sm-12 { - width: 100%; - } - .col-sm-11 { - width: 91.66666667%; - } - .col-sm-10 { - width: 83.33333333%; - } - .col-sm-9 { - width: 75%; - } - .col-sm-8 { - width: 66.66666667%; - } - .col-sm-7 { - width: 58.33333333%; - } - .col-sm-6 { - width: 50%; - } - .col-sm-5 { - width: 41.66666667%; - } - .col-sm-4 { - width: 33.33333333%; - } - .col-sm-3 { - width: 25%; - } - .col-sm-2 { - width: 16.66666667%; - } - .col-sm-1 { - width: 8.33333333%; - } - .col-sm-pull-12 { - right: 100%; - } - .col-sm-pull-11 { - right: 91.66666667%; - } - .col-sm-pull-10 { - right: 83.33333333%; - } - .col-sm-pull-9 { - right: 75%; - } - .col-sm-pull-8 { - right: 66.66666667%; - } - .col-sm-pull-7 { - right: 58.33333333%; - } - .col-sm-pull-6 { - right: 50%; - } - .col-sm-pull-5 { - right: 41.66666667%; - } - .col-sm-pull-4 { - right: 33.33333333%; - } - .col-sm-pull-3 { - right: 25%; - } - .col-sm-pull-2 { - right: 16.66666667%; - } - .col-sm-pull-1 { - right: 8.33333333%; - } - .col-sm-pull-0 { - right: auto; - } - .col-sm-push-12 { - left: 100%; - } - .col-sm-push-11 { - left: 91.66666667%; - } - .col-sm-push-10 { - left: 83.33333333%; - } - .col-sm-push-9 { - left: 75%; - } - .col-sm-push-8 { - left: 66.66666667%; - } - .col-sm-push-7 { - left: 58.33333333%; - } - .col-sm-push-6 { - left: 50%; - } - .col-sm-push-5 { - left: 41.66666667%; - } - .col-sm-push-4 { - left: 33.33333333%; - } - .col-sm-push-3 { - left: 25%; - } - .col-sm-push-2 { - left: 16.66666667%; - } - .col-sm-push-1 { - left: 8.33333333%; - } - .col-sm-push-0 { - left: auto; - } - .col-sm-offset-12 { - margin-left: 100%; - } - .col-sm-offset-11 { - margin-left: 91.66666667%; - } - .col-sm-offset-10 { - margin-left: 83.33333333%; - } - .col-sm-offset-9 { - margin-left: 75%; - } - .col-sm-offset-8 { - margin-left: 66.66666667%; - } - .col-sm-offset-7 { - margin-left: 58.33333333%; - } - .col-sm-offset-6 { - margin-left: 50%; - } - .col-sm-offset-5 { - margin-left: 41.66666667%; - } - .col-sm-offset-4 { - margin-left: 33.33333333%; - } - .col-sm-offset-3 { - margin-left: 25%; - } - .col-sm-offset-2 { - margin-left: 16.66666667%; - } - .col-sm-offset-1 { - margin-left: 8.33333333%; - } - .col-sm-offset-0 { - margin-left: 0%; - } -} -@media (min-width: 992px) { - .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 { - float: left; - } - .col-md-12 { - width: 100%; - } - .col-md-11 { - width: 91.66666667%; - } - .col-md-10 { - width: 83.33333333%; - } - .col-md-9 { - width: 75%; - } - .col-md-8 { - width: 66.66666667%; - } - .col-md-7 { - width: 58.33333333%; - } - .col-md-6 { - width: 50%; - } - .col-md-5 { - width: 41.66666667%; - } - .col-md-4 { - width: 33.33333333%; - } - .col-md-3 { - width: 25%; - } - .col-md-2 { - width: 16.66666667%; - } - .col-md-1 { - width: 8.33333333%; - } - .col-md-pull-12 { - right: 100%; - } - .col-md-pull-11 { - right: 91.66666667%; - } - .col-md-pull-10 { - right: 83.33333333%; - } - .col-md-pull-9 { - right: 75%; - } - .col-md-pull-8 { - right: 66.66666667%; - } - .col-md-pull-7 { - right: 58.33333333%; - } - .col-md-pull-6 { - right: 50%; - } - .col-md-pull-5 { - right: 41.66666667%; - } - .col-md-pull-4 { - right: 33.33333333%; - } - .col-md-pull-3 { - right: 25%; - } - .col-md-pull-2 { - right: 16.66666667%; - } - .col-md-pull-1 { - right: 8.33333333%; - } - .col-md-pull-0 { - right: auto; - } - .col-md-push-12 { - left: 100%; - } - .col-md-push-11 { - left: 91.66666667%; - } - .col-md-push-10 { - left: 83.33333333%; - } - .col-md-push-9 { - left: 75%; - } - .col-md-push-8 { - left: 66.66666667%; - } - .col-md-push-7 { - left: 58.33333333%; - } - .col-md-push-6 { - left: 50%; - } - .col-md-push-5 { - left: 41.66666667%; - } - .col-md-push-4 { - left: 33.33333333%; - } - .col-md-push-3 { - left: 25%; - } - .col-md-push-2 { - left: 16.66666667%; - } - .col-md-push-1 { - left: 8.33333333%; - } - .col-md-push-0 { - left: auto; - } - .col-md-offset-12 { - margin-left: 100%; - } - .col-md-offset-11 { - margin-left: 91.66666667%; - } - .col-md-offset-10 { - margin-left: 83.33333333%; - } - .col-md-offset-9 { - margin-left: 75%; - } - .col-md-offset-8 { - margin-left: 66.66666667%; - } - .col-md-offset-7 { - margin-left: 58.33333333%; - } - .col-md-offset-6 { - margin-left: 50%; - } - .col-md-offset-5 { - margin-left: 41.66666667%; - } - .col-md-offset-4 { - margin-left: 33.33333333%; - } - .col-md-offset-3 { - margin-left: 25%; - } - .col-md-offset-2 { - margin-left: 16.66666667%; - } - .col-md-offset-1 { - margin-left: 8.33333333%; - } - .col-md-offset-0 { - margin-left: 0%; - } -} -@media (min-width: 1200px) { - .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 { - float: left; - } - .col-lg-12 { - width: 100%; - } - .col-lg-11 { - width: 91.66666667%; - } - .col-lg-10 { - width: 83.33333333%; - } - .col-lg-9 { - width: 75%; - } - .col-lg-8 { - width: 66.66666667%; - } - .col-lg-7 { - width: 58.33333333%; - } - .col-lg-6 { - width: 50%; - } - .col-lg-5 { - width: 41.66666667%; - } - .col-lg-4 { - width: 33.33333333%; - } - .col-lg-3 { - width: 25%; - } - .col-lg-2 { - width: 16.66666667%; - } - .col-lg-1 { - width: 8.33333333%; - } - .col-lg-pull-12 { - right: 100%; - } - .col-lg-pull-11 { - right: 91.66666667%; - } - .col-lg-pull-10 { - right: 83.33333333%; - } - .col-lg-pull-9 { - right: 75%; - } - .col-lg-pull-8 { - right: 66.66666667%; - } - .col-lg-pull-7 { - right: 58.33333333%; - } - .col-lg-pull-6 { - right: 50%; - } - .col-lg-pull-5 { - right: 41.66666667%; - } - .col-lg-pull-4 { - right: 33.33333333%; - } - .col-lg-pull-3 { - right: 25%; - } - .col-lg-pull-2 { - right: 16.66666667%; - } - .col-lg-pull-1 { - right: 8.33333333%; - } - .col-lg-pull-0 { - right: auto; - } - .col-lg-push-12 { - left: 100%; - } - .col-lg-push-11 { - left: 91.66666667%; - } - .col-lg-push-10 { - left: 83.33333333%; - } - .col-lg-push-9 { - left: 75%; - } - .col-lg-push-8 { - left: 66.66666667%; - } - .col-lg-push-7 { - left: 58.33333333%; - } - .col-lg-push-6 { - left: 50%; - } - .col-lg-push-5 { - left: 41.66666667%; - } - .col-lg-push-4 { - left: 33.33333333%; - } - .col-lg-push-3 { - left: 25%; - } - .col-lg-push-2 { - left: 16.66666667%; - } - .col-lg-push-1 { - left: 8.33333333%; - } - .col-lg-push-0 { - left: auto; - } - .col-lg-offset-12 { - margin-left: 100%; - } - .col-lg-offset-11 { - margin-left: 91.66666667%; - } - .col-lg-offset-10 { - margin-left: 83.33333333%; - } - .col-lg-offset-9 { - margin-left: 75%; - } - .col-lg-offset-8 { - margin-left: 66.66666667%; - } - .col-lg-offset-7 { - margin-left: 58.33333333%; - } - .col-lg-offset-6 { - margin-left: 50%; - } - .col-lg-offset-5 { - margin-left: 41.66666667%; - } - .col-lg-offset-4 { - margin-left: 33.33333333%; - } - .col-lg-offset-3 { - margin-left: 25%; - } - .col-lg-offset-2 { - margin-left: 16.66666667%; - } - .col-lg-offset-1 { - margin-left: 8.33333333%; - } - .col-lg-offset-0 { - margin-left: 0%; - } -} -table { - background-color: transparent; -} -th { - text-align: left; -} -.table { - width: 100%; - max-width: 100%; - margin-bottom: 18px; -} -.table > thead > tr > th, -.table > tbody > tr > th, -.table > tfoot > tr > th, -.table > thead > tr > td, -.table > tbody > tr > td, -.table > tfoot > tr > td { - padding: 8px 15px; - line-height: 1.3856; - vertical-align: top; - border-top: 1px solid #ebedf0; -} -.table > thead > tr > th { - font-weight: 600; - vertical-align: bottom; - border-bottom: 2px solid #ebedf0; -} -.table > caption + thead > tr:first-child > th, -.table > colgroup + thead > tr:first-child > th, -.table > thead:first-child > tr:first-child > th, -.table > caption + thead > tr:first-child > td, -.table > colgroup + thead > tr:first-child > td, -.table > thead:first-child > tr:first-child > td { - border-top: 0; -} -.table > tbody + tbody { - border-top: 2px solid #ebedf0; -} -.table .table { - background-color: #f8f8f8; -} -.table-condensed > thead > tr > th, -.table-condensed > tbody > tr > th, -.table-condensed > tfoot > tr > th, -.table-condensed > thead > tr > td, -.table-condensed > tbody > tr > td, -.table-condensed > tfoot > tr > td { - padding: 5px 15px; -} -.table-bordered { - border: 1px solid #ebedf0; -} -.table-bordered > thead > tr > th, -.table-bordered > tbody > tr > th, -.table-bordered > tfoot > tr > th, -.table-bordered > thead > tr > td, -.table-bordered > tbody > tr > td, -.table-bordered > tfoot > tr > td { - border: 1px solid #ebedf0; -} -.table-bordered > thead > tr > th, -.table-bordered > thead > tr > td { - border-bottom-width: 2px; -} -.table-striped > tbody > tr:nth-child(odd) > td, -.table-striped > tbody > tr:nth-child(odd) > th { - background-color: #fafafa; -} -.table-hover > tbody > tr:hover > td, -.table-hover > tbody > tr:hover > th { - background-color: #fafafa; -} -table col[class*="col-"] { - position: static; - float: none; - display: table-column; -} -table td[class*="col-"], -table th[class*="col-"] { - position: static; - float: none; - display: table-cell; -} -.table > thead > tr > td.active, -.table > tbody > tr > td.active, -.table > tfoot > tr > td.active, -.table > thead > tr > th.active, -.table > tbody > tr > th.active, -.table > tfoot > tr > th.active, -.table > thead > tr.active > td, -.table > tbody > tr.active > td, -.table > tfoot > tr.active > td, -.table > thead > tr.active > th, -.table > tbody > tr.active > th, -.table > tfoot > tr.active > th { - background-color: #fafafa; -} -.table-hover > tbody > tr > td.active:hover, -.table-hover > tbody > tr > th.active:hover, -.table-hover > tbody > tr.active:hover > td, -.table-hover > tbody > tr:hover > .active, -.table-hover > tbody > tr.active:hover > th { - background-color: #ededed; -} -.table > thead > tr > td.success, -.table > tbody > tr > td.success, -.table > tfoot > tr > td.success, -.table > thead > tr > th.success, -.table > tbody > tr > th.success, -.table > tfoot > tr > th.success, -.table > thead > tr.success > td, -.table > tbody > tr.success > td, -.table > tfoot > tr.success > td, -.table > thead > tr.success > th, -.table > tbody > tr.success > th, -.table > tfoot > tr.success > th { - background-color: #dff0d8; -} -.table-hover > tbody > tr > td.success:hover, -.table-hover > tbody > tr > th.success:hover, -.table-hover > tbody > tr.success:hover > td, -.table-hover > tbody > tr:hover > .success, -.table-hover > tbody > tr.success:hover > th { - background-color: #d0e9c6; -} -.table > thead > tr > td.info, -.table > tbody > tr > td.info, -.table > tfoot > tr > td.info, -.table > thead > tr > th.info, -.table > tbody > tr > th.info, -.table > tfoot > tr > th.info, -.table > thead > tr.info > td, -.table > tbody > tr.info > td, -.table > tfoot > tr.info > td, -.table > thead > tr.info > th, -.table > tbody > tr.info > th, -.table > tfoot > tr.info > th { - background-color: #d9edf7; -} -.table-hover > tbody > tr > td.info:hover, -.table-hover > tbody > tr > th.info:hover, -.table-hover > tbody > tr.info:hover > td, -.table-hover > tbody > tr:hover > .info, -.table-hover > tbody > tr.info:hover > th { - background-color: #c4e3f3; -} -.table > thead > tr > td.warning, -.table > tbody > tr > td.warning, -.table > tfoot > tr > td.warning, -.table > thead > tr > th.warning, -.table > tbody > tr > th.warning, -.table > tfoot > tr > th.warning, -.table > thead > tr.warning > td, -.table > tbody > tr.warning > td, -.table > tfoot > tr.warning > td, -.table > thead > tr.warning > th, -.table > tbody > tr.warning > th, -.table > tfoot > tr.warning > th { - background-color: #fcf8e3; -} -.table-hover > tbody > tr > td.warning:hover, -.table-hover > tbody > tr > th.warning:hover, -.table-hover > tbody > tr.warning:hover > td, -.table-hover > tbody > tr:hover > .warning, -.table-hover > tbody > tr.warning:hover > th { - background-color: #faf2cc; -} -.table > thead > tr > td.danger, -.table > tbody > tr > td.danger, -.table > tfoot > tr > td.danger, -.table > thead > tr > th.danger, -.table > tbody > tr > th.danger, -.table > tfoot > tr > th.danger, -.table > thead > tr.danger > td, -.table > tbody > tr.danger > td, -.table > tfoot > tr.danger > td, -.table > thead > tr.danger > th, -.table > tbody > tr.danger > th, -.table > tfoot > tr.danger > th { - background-color: #f2dede; -} -.table-hover > tbody > tr > td.danger:hover, -.table-hover > tbody > tr > th.danger:hover, -.table-hover > tbody > tr.danger:hover > td, -.table-hover > tbody > tr:hover > .danger, -.table-hover > tbody > tr.danger:hover > th { - background-color: #ebcccc; -} -@media screen and (max-width: 767px) { - .table-responsive { - width: 100%; - margin-bottom: 13.5px; - overflow-y: hidden; - overflow-x: auto; - -ms-overflow-style: -ms-autohiding-scrollbar; - border: 1px solid #ebedf0; - -webkit-overflow-scrolling: touch; - } - .table-responsive > .table { - margin-bottom: 0; - } - .table-responsive > .table > thead > tr > th, - .table-responsive > .table > tbody > tr > th, - .table-responsive > .table > tfoot > tr > th, - .table-responsive > .table > thead > tr > td, - .table-responsive > .table > tbody > tr > td, - .table-responsive > .table > tfoot > tr > td { - white-space: nowrap; - } - .table-responsive > .table-bordered { - border: 0; - } - .table-responsive > .table-bordered > thead > tr > th:first-child, - .table-responsive > .table-bordered > tbody > tr > th:first-child, - .table-responsive > .table-bordered > tfoot > tr > th:first-child, - .table-responsive > .table-bordered > thead > tr > td:first-child, - .table-responsive > .table-bordered > tbody > tr > td:first-child, - .table-responsive > .table-bordered > tfoot > tr > td:first-child { - border-left: 0; - } - .table-responsive > .table-bordered > thead > tr > th:last-child, - .table-responsive > .table-bordered > tbody > tr > th:last-child, - .table-responsive > .table-bordered > tfoot > tr > th:last-child, - .table-responsive > .table-bordered > thead > tr > td:last-child, - .table-responsive > .table-bordered > tbody > tr > td:last-child, - .table-responsive > .table-bordered > tfoot > tr > td:last-child { - border-right: 0; - } - .table-responsive > .table-bordered > tbody > tr:last-child > th, - .table-responsive > .table-bordered > tfoot > tr:last-child > th, - .table-responsive > .table-bordered > tbody > tr:last-child > td, - .table-responsive > .table-bordered > tfoot > tr:last-child > td { - border-bottom: 0; - } -} -fieldset { - padding: 0; - margin: 0; - border: 0; - min-width: 0; -} -legend { - display: block; - width: 100%; - padding: 0; - margin-bottom: 18px; - font-size: 19.5px; - line-height: inherit; - color: #3c4650; - border: 0; - border-bottom: 1px solid #e5e5e5; -} -label { - display: inline-block; - max-width: 100%; - margin-bottom: 5px; - font-weight: bold; -} -input[type="search"] { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; -} -input[type="radio"], -input[type="checkbox"] { - margin: 4px 0 0; - margin-top: 1px \9; - line-height: normal; -} -input[type="file"] { - display: block; -} -input[type="range"] { - display: block; - width: 100%; -} -select[multiple], -select[size] { - height: auto; -} -input[type="file"]:focus, -input[type="radio"]:focus, -input[type="checkbox"]:focus { - outline: 0; -} -output { - display: block; - padding-top: 7px; - font-size: 13px; - line-height: 1.3856; - color: #596776; -} -.form-control { - display: block; - width: 100%; - height: 32px; - padding: 6px 12px; - font-size: 13px; - line-height: 1.3856; - color: #596776; - background-color: #ffffff; - background-image: none; - border: 1px solid #d5d5d5; - border-radius: 3px; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; - -moz-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; - -ms-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; - -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; - transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; -} -.form-control:focus { - border-color: #bcbcbc; - outline: 0; -} -.form-control::-moz-placeholder { - color: #a0acb8; - opacity: 1; -} -.form-control:-ms-input-placeholder { - color: #a0acb8; -} -.form-control::-webkit-input-placeholder { - color: #a0acb8; -} -.form-control[disabled], -.form-control[readonly], -fieldset[disabled] .form-control { - cursor: not-allowed; - background-color: #ebedf0; - opacity: 1; -} -textarea.form-control { - height: auto; -} -input[type="search"] { - -webkit-appearance: none; -} -input[type="date"], -input[type="time"], -input[type="datetime-local"], -input[type="month"] { - line-height: 32px; - line-height: 1.3856 \0; -} -input[type="date"].input-sm, -input[type="time"].input-sm, -input[type="datetime-local"].input-sm, -input[type="month"].input-sm { - line-height: 28px; -} -input[type="date"].input-lg, -input[type="time"].input-lg, -input[type="datetime-local"].input-lg, -input[type="month"].input-lg { - line-height: 42px; -} -.form-group { - margin-bottom: 15px; -} -.radio, -.checkbox { - position: relative; - display: block; - min-height: 18px; - margin-top: 10px; - margin-bottom: 10px; -} -.radio label, -.checkbox label { - padding-left: 20px; - margin-bottom: 0; - font-weight: normal; - cursor: pointer; -} -.radio input[type="radio"], -.radio-inline input[type="radio"], -.checkbox input[type="checkbox"], -.checkbox-inline input[type="checkbox"] { - position: absolute; - margin-left: -20px; - margin-top: 4px \9; -} -.radio + .radio, -.checkbox + .checkbox { - margin-top: -5px; -} -.radio-inline, -.checkbox-inline { - display: inline-block; - padding-left: 20px; - margin-bottom: 0; - vertical-align: middle; - font-weight: normal; - cursor: pointer; -} -.radio-inline + .radio-inline, -.checkbox-inline + .checkbox-inline { - margin-top: 0; - margin-left: 10px; -} -input[type="radio"][disabled], -input[type="checkbox"][disabled], -input[type="radio"].disabled, -input[type="checkbox"].disabled, -fieldset[disabled] input[type="radio"], -fieldset[disabled] input[type="checkbox"] { - cursor: not-allowed; -} -.radio-inline.disabled, -.checkbox-inline.disabled, -fieldset[disabled] .radio-inline, -fieldset[disabled] .checkbox-inline { - cursor: not-allowed; -} -.radio.disabled label, -.checkbox.disabled label, -fieldset[disabled] .radio label, -fieldset[disabled] .checkbox label { - cursor: not-allowed; -} -.form-control-static { - padding-top: 7px; - padding-bottom: 7px; - margin-bottom: 0; -} -.form-control-static.input-lg, -.form-control-static.input-sm { - padding-left: 0; - padding-right: 0; -} -.input-sm, -.form-horizontal .form-group-sm .form-control { - height: 28px; - padding: 5px 10px; - font-size: 11px; - line-height: 1.456; - border-radius: 2px; -} -select.input-sm { - height: 28px; - line-height: 28px; -} -textarea.input-sm, -select[multiple].input-sm { - height: auto; -} -.input-lg, -.form-horizontal .form-group-lg .form-control { - height: 42px; - padding: 10px 16px; - font-size: 16px; - line-height: 1.25; - border-radius: 4px; -} -select.input-lg { - height: 42px; - line-height: 42px; -} -textarea.input-lg, -select[multiple].input-lg { - height: auto; -} -.has-feedback { - position: relative; -} -.has-feedback .form-control { - padding-right: 40px; -} -.form-control-feedback { - position: absolute; - top: 23px; - right: 0; - z-index: 2; - display: block; - width: 32px; - height: 32px; - line-height: 32px; - text-align: center; -} -.input-lg + .form-control-feedback { - width: 42px; - height: 42px; - line-height: 42px; -} -.input-sm + .form-control-feedback { - width: 28px; - height: 28px; - line-height: 28px; -} -.has-success .help-block, -.has-success .control-label, -.has-success .radio, -.has-success .checkbox, -.has-success .radio-inline, -.has-success .checkbox-inline { - color: #3c763d; -} -.has-success .form-control { - border-color: #3c763d; -} -.has-success .form-control:focus { - border-color: #2b542c; -} -.has-success .input-group-addon { - color: #3c763d; - border-color: #3c763d; - background-color: #dff0d8; -} -.has-success .form-control-feedback { - color: #3c763d; -} -.has-warning .help-block, -.has-warning .control-label, -.has-warning .radio, -.has-warning .checkbox, -.has-warning .radio-inline, -.has-warning .checkbox-inline { - color: #8a6d3b; -} -.has-warning .form-control { - border-color: #8a6d3b; -} -.has-warning .form-control:focus { - border-color: #66512c; -} -.has-warning .input-group-addon { - color: #8a6d3b; - border-color: #8a6d3b; - background-color: #fcf8e3; -} -.has-warning .form-control-feedback { - color: #8a6d3b; -} -.has-error .help-block, -.has-error .control-label, -.has-error .radio, -.has-error .checkbox, -.has-error .radio-inline, -.has-error .checkbox-inline { - color: #a94442; -} -.has-error .form-control { - border-color: #a94442; -} -.has-error .form-control:focus { - border-color: #843534; -} -.has-error .input-group-addon { - color: #a94442; - border-color: #a94442; - background-color: #f2dede; -} -.has-error .form-control-feedback { - color: #a94442; -} -.has-feedback label.sr-only ~ .form-control-feedback { - top: 0; -} -.help-block { - display: block; - margin-top: 5px; - margin-bottom: 10px; - color: #8393a2; -} -@media (min-width: 768px) { - .form-inline .form-group { - display: inline-block; - margin-bottom: 0; - vertical-align: middle; - } - .form-inline .form-control { - display: inline-block; - width: auto; - vertical-align: middle; - } - .form-inline .input-group { - display: inline-table; - vertical-align: middle; - } - .form-inline .input-group .input-group-addon, - .form-inline .input-group .input-group-btn, - .form-inline .input-group .form-control { - width: auto; - } - .form-inline .input-group > .form-control { - width: 100%; - } - .form-inline .control-label { - margin-bottom: 0; - vertical-align: middle; - } - .form-inline .radio, - .form-inline .checkbox { - display: inline-block; - margin-top: 0; - margin-bottom: 0; - vertical-align: middle; - } - .form-inline .radio label, - .form-inline .checkbox label { - padding-left: 0; - } - .form-inline .radio input[type="radio"], - .form-inline .checkbox input[type="checkbox"] { - position: relative; - margin-left: 0; - } - .form-inline .has-feedback .form-control-feedback { - top: 0; - } -} -.form-horizontal .radio, -.form-horizontal .checkbox, -.form-horizontal .radio-inline, -.form-horizontal .checkbox-inline { - margin-top: 0; - margin-bottom: 0; - padding-top: 7px; -} -.form-horizontal .radio, -.form-horizontal .checkbox { - min-height: 25px; -} -.form-horizontal .form-group { - margin-left: -15px; - margin-right: -15px; -} -@media (min-width: 768px) { - .form-horizontal .control-label { - text-align: right; - margin-bottom: 0; - padding-top: 7px; - } -} -.form-horizontal .has-feedback .form-control-feedback { - top: 0; - right: 15px; -} -@media (min-width: 768px) { - .form-horizontal .form-group-lg .control-label { - padding-top: 13.5px; - } -} -@media (min-width: 768px) { - .form-horizontal .form-group-sm .control-label { - padding-top: 6px; - } -} -.btn { - display: inline-block; - margin-bottom: 0; - font-weight: 600; - text-align: center; - vertical-align: middle; - cursor: pointer; - background-image: none; - border: 1px solid transparent; - white-space: nowrap; - padding: 6px 12px; - font-size: 13px; - line-height: 1.3856; - border-radius: 3px; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.btn:focus, -.btn:active:focus, -.btn.active:focus { - outline: 0; -} -.btn:hover, -.btn:focus { - color: #5d6c7c; - text-decoration: none; -} -.btn:active, -.btn.active { - outline: 0; - background-image: none; - -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); -} -.btn.disabled, -.btn[disabled], -fieldset[disabled] .btn { - cursor: not-allowed; - pointer-events: none; - opacity: 0.65; - filter: alpha(opacity=65); - -webkit-box-shadow: none; - box-shadow: none; -} -.btn-default { - color: #5d6c7c; - background-color: #ffffff; - border-color: #dddddd; -} -.btn-default:hover, -.btn-default:focus, -.btn-default:active, -.btn-default.active, -.open > .dropdown-toggle.btn-default { - color: #5d6c7c; - background-color: #f5f5f5; - border-color: #d3d3d3; -} -.btn-default:active, -.btn-default.active, -.open > .dropdown-toggle.btn-default { - background-image: none; -} -.btn-default.disabled, -.btn-default[disabled], -fieldset[disabled] .btn-default, -.btn-default.disabled:hover, -.btn-default[disabled]:hover, -fieldset[disabled] .btn-default:hover, -.btn-default.disabled:focus, -.btn-default[disabled]:focus, -fieldset[disabled] .btn-default:focus { - background-color: #ffffff; - border-color: #dddddd; -} -.btn-default.disabled:active, -.btn-default[disabled]:active, -fieldset[disabled] .btn-default:active, -.btn-default.disabled.active, -.btn-default[disabled].active, -fieldset[disabled] .btn-default.active { - background-color: #f5f5f5; -} -.btn-default .badge { - color: #ffffff; - background-color: #5d6c7c; -} -.btn-default + .dropdown-toggle { - border-left-color: #d5d5d5; -} -.btn-primary { - color: #ffffff; - background-color: {{mautic_primary}}; - border-color: {{mautic_primary}}; -} -.btn-primary:hover, -.btn-primary:focus, -.btn-primary:active, -.btn-primary.active, -.open > .dropdown-toggle.btn-primary { - color: #ffffff; - background-color: {{mautic_hover}}; - border-color: {{mautic_hover}}; -} -.btn-primary:active, -.btn-primary.active, -.open > .dropdown-toggle.btn-primary { - background-image: none; -} -.btn-primary.disabled, -.btn-primary[disabled], -fieldset[disabled] .btn-primary, -.btn-primary.disabled:hover, -.btn-primary[disabled]:hover, -fieldset[disabled] .btn-primary:hover, -.btn-primary.disabled:focus, -.btn-primary[disabled]:focus, -fieldset[disabled] .btn-primary:focus { - background-color: {{mautic_primary}}; - border-color: {{mautic_primary}}; -} -.btn-primary.disabled:active, -.btn-primary[disabled]:active, -fieldset[disabled] .btn-primary:active, -.btn-primary.disabled.active, -.btn-primary[disabled].active, -fieldset[disabled] .btn-primary.active { - background-color: {{mautic_hover}}; -} -.btn-primary .badge { - color: {{mautic_primary}}; - background-color: #ffffff; -} -.btn-primary + .dropdown-toggle { - border-left-color: #495793; -} -.btn-success { - color: #ffffff; - background-color: #00b49c; - border-color: #00b49c; -} -.btn-success:hover, -.btn-success:focus, -.btn-success:active, -.btn-success.active, -.open > .dropdown-toggle.btn-success { - color: #ffffff; - background-color: #00a08a; - border-color: #00a08a; -} -.btn-success:active, -.btn-success.active, -.open > .dropdown-toggle.btn-success { - background-image: none; -} -.btn-success.disabled, -.btn-success[disabled], -fieldset[disabled] .btn-success, -.btn-success.disabled:hover, -.btn-success[disabled]:hover, -fieldset[disabled] .btn-success:hover, -.btn-success.disabled:focus, -.btn-success[disabled]:focus, -fieldset[disabled] .btn-success:focus { - background-color: #00b49c; - border-color: #00b49c; -} -.btn-success.disabled:active, -.btn-success[disabled]:active, -fieldset[disabled] .btn-success:active, -.btn-success.disabled.active, -.btn-success[disabled].active, -fieldset[disabled] .btn-success.active { - background-color: #00a08a; -} -.btn-success .badge { - color: #00b49c; - background-color: #ffffff; -} -.btn-success + .dropdown-toggle { - border-left-color: #00a58f; -} -.btn-info { - color: #ffffff; - background-color: #35b4b9; - border-color: #35b4b9; -} -.btn-info:hover, -.btn-info:focus, -.btn-info:active, -.btn-info.active, -.open > .dropdown-toggle.btn-info { - color: #ffffff; - background-color: #30a5a9; - border-color: #30a5a9; -} -.btn-info:active, -.btn-info.active, -.open > .dropdown-toggle.btn-info { - background-image: none; -} -.btn-info.disabled, -.btn-info[disabled], -fieldset[disabled] .btn-info, -.btn-info.disabled:hover, -.btn-info[disabled]:hover, -fieldset[disabled] .btn-info:hover, -.btn-info.disabled:focus, -.btn-info[disabled]:focus, -fieldset[disabled] .btn-info:focus { - background-color: #35b4b9; - border-color: #35b4b9; -} -.btn-info.disabled:active, -.btn-info[disabled]:active, -fieldset[disabled] .btn-info:active, -.btn-info.disabled.active, -.btn-info[disabled].active, -fieldset[disabled] .btn-info.active { - background-color: #30a5a9; -} -.btn-info .badge { - color: #35b4b9; - background-color: #ffffff; -} -.btn-info + .dropdown-toggle { - border-left-color: #32a8ad; -} -.btn-warning { - color: #ffffff; - background-color: #fdb933; - border-color: #fdb933; -} -.btn-warning:hover, -.btn-warning:focus, -.btn-warning:active, -.btn-warning.active, -.open > .dropdown-toggle.btn-warning { - color: #ffffff; - background-color: #fdb21f; - border-color: #fdb21f; -} -.btn-warning:active, -.btn-warning.active, -.open > .dropdown-toggle.btn-warning { - background-image: none; -} -.btn-warning.disabled, -.btn-warning[disabled], -fieldset[disabled] .btn-warning, -.btn-warning.disabled:hover, -.btn-warning[disabled]:hover, -fieldset[disabled] .btn-warning:hover, -.btn-warning.disabled:focus, -.btn-warning[disabled]:focus, -fieldset[disabled] .btn-warning:focus { - background-color: #fdb933; - border-color: #fdb933; -} -.btn-warning.disabled:active, -.btn-warning[disabled]:active, -fieldset[disabled] .btn-warning:active, -.btn-warning.disabled.active, -.btn-warning[disabled].active, -fieldset[disabled] .btn-warning.active { - background-color: #fdb21f; -} -.btn-warning .badge { - color: #fdb933; - background-color: #ffffff; -} -.btn-warning + .dropdown-toggle { - border-left-color: #fdb424; -} -.btn-danger { - color: #ffffff; - background-color: #f86b4f; - border-color: #f86b4f; -} -.btn-danger:hover, -.btn-danger:focus, -.btn-danger:active, -.btn-danger.active, -.open > .dropdown-toggle.btn-danger { - color: #ffffff; - background-color: #f75b3b; - border-color: #f75b3b; -} -.btn-danger:active, -.btn-danger.active, -.open > .dropdown-toggle.btn-danger { - background-image: none; -} -.btn-danger.disabled, -.btn-danger[disabled], -fieldset[disabled] .btn-danger, -.btn-danger.disabled:hover, -.btn-danger[disabled]:hover, -fieldset[disabled] .btn-danger:hover, -.btn-danger.disabled:focus, -.btn-danger[disabled]:focus, -fieldset[disabled] .btn-danger:focus { - background-color: #f86b4f; - border-color: #f86b4f; -} -.btn-danger.disabled:active, -.btn-danger[disabled]:active, -fieldset[disabled] .btn-danger:active, -.btn-danger.disabled.active, -.btn-danger[disabled].active, -fieldset[disabled] .btn-danger.active { - background-color: #f75b3b; -} -.btn-danger .badge { - color: #f86b4f; - background-color: #ffffff; -} -.btn-danger + .dropdown-toggle { - border-left-color: #f75f40; -} -.btn-link { - color: {{mautic_primary}}; - font-weight: normal; - cursor: pointer; - border-radius: 0; -} -.btn-link, -.btn-link:active, -.btn-link[disabled], -fieldset[disabled] .btn-link { - background-color: transparent; - -webkit-box-shadow: none; - box-shadow: none; -} -.btn-link, -.btn-link:hover, -.btn-link:focus, -.btn-link:active { - border-color: transparent; -} -.btn-link:hover, -.btn-link:focus { - color: {{mautic_primary}}; - text-decoration: underline; - background-color: transparent; -} -.btn-link[disabled]:hover, -fieldset[disabled] .btn-link:hover, -.btn-link[disabled]:focus, -fieldset[disabled] .btn-link:focus { - color: #a0acb8; - text-decoration: none; -} -.btn-lg, -.btn-group-lg > .btn { - padding: 10px 16px; - font-size: 16px; - line-height: 1.25; - border-radius: 4px; -} -.btn-sm, -.btn-group-sm > .btn { - padding: 5px 10px; - font-size: 11px; - line-height: 1.456; - border-radius: 2px; -} -.btn-xs, -.btn-group-xs > .btn { - padding: 1px 5px; - font-size: 11px; - line-height: 1.456; - border-radius: 2px; -} -.btn-block { - display: block; - width: 100%; -} -.btn-block + .btn-block { - margin-top: 5px; -} -input[type="submit"].btn-block, -input[type="reset"].btn-block, -input[type="button"].btn-block { - width: 100%; -} -.fade { - opacity: 0; - -webkit-transition: opacity 0.15s linear; - -moz-transition: opacity 0.15s linear; - -ms-transition: opacity 0.15s linear; - -o-transition: opacity 0.15s linear; - transition: opacity 0.15s linear; -} -.fade.in { - opacity: 1; -} -.collapse { - display: none; -} -.collapse.in { - display: block; -} -tr.collapse.in { - display: table-row; -} -tbody.collapse.in { - display: table-row-group; -} -.collapsing { - position: relative; - height: 0; - overflow: hidden; - -webkit-transition: height 0.35s ease; - -moz-transition: height 0.35s ease; - -ms-transition: height 0.35s ease; - -o-transition: height 0.35s ease; - transition: height 0.35s ease; -} -.caret { - display: inline-block; - width: 0; - height: 0; - margin-left: 2px; - vertical-align: middle; - border-top: 4px solid; - border-right: 4px solid transparent; - border-left: 4px solid transparent; -} -.dropdown { - position: relative; -} -.dropdown-toggle:focus { - outline: 0; -} -.dropdown-menu { - position: absolute; - top: 100%; - left: 0; - z-index: 1000; - display: none; - float: left; - min-width: 160px; - padding: 5px 0; - margin: 2px 0 0; - list-style: none; - font-size: 13px; - text-align: left; - background-color: #ffffff; - border: 1px solid #eeeeee; - border: 1px solid rgba(0, 0, 0, 0.06); - border-radius: 3px; - -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); - box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); - background-clip: padding-box; -} -.dropdown-menu.pull-right { - right: 0; - left: auto; -} -.dropdown-menu .divider { - height: 1px; - margin: 8px 0; - overflow: hidden; - background-color: #eaeaea; -} -.dropdown-menu > li > a { - display: block; - padding: 3px 20px; - clear: both; - font-weight: normal; - line-height: 1.3856; - color: #47535f; - white-space: nowrap; -} -.dropdown-menu > li > a:hover, -.dropdown-menu > li > a:focus { - text-decoration: none; - color: #3c4650; - background-color: #f5f5f5; -} -.dropdown-menu > .active > a, -.dropdown-menu > .active > a:hover, -.dropdown-menu > .active > a:focus { - color: #ffffff; - text-decoration: none; - outline: 0; - background-color: {{mautic_primary}}; -} -.dropdown-menu > .disabled > a, -.dropdown-menu > .disabled > a:hover, -.dropdown-menu > .disabled > a:focus { - color: #a0acb8; -} -.dropdown-menu > .disabled > a:hover, -.dropdown-menu > .disabled > a:focus { - text-decoration: none; - background-color: transparent; - background-image: none; - filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); - cursor: not-allowed; -} -.open > .dropdown-menu { - display: block; -} -.open > a { - outline: 0; -} -.dropdown-menu-right { - left: auto; - right: 0; -} -.dropdown-menu-left { - left: 0; - right: auto; -} -.dropdown-header { - display: block; - padding: 3px 20px; - font-size: 11px; - line-height: 1.3856; - color: #a0acb8; - white-space: nowrap; -} -.dropdown-backdrop { - position: fixed; - left: 0; - right: 0; - bottom: 0; - top: 0; - z-index: 990; -} -.pull-right > .dropdown-menu { - right: 0; - left: auto; -} -.dropup .caret, -.navbar-fixed-bottom .dropdown .caret { - border-top: 0; - border-bottom: 4px solid; - content: ""; -} -.dropup .dropdown-menu, -.navbar-fixed-bottom .dropdown .dropdown-menu { - top: auto; - bottom: 100%; - margin-bottom: 1px; -} -@media (min-width: 768px) { - .navbar-right .dropdown-menu { - left: auto; - right: 0; - } - .navbar-right .dropdown-menu-left { - left: 0; - right: auto; - } -} -.btn-group, -.btn-group-vertical { - position: relative; - display: inline-block; - vertical-align: middle; -} -.btn-group > .btn, -.btn-group-vertical > .btn { - position: relative; - float: left; -} -.btn-group > .btn:hover, -.btn-group-vertical > .btn:hover, -.btn-group > .btn:focus, -.btn-group-vertical > .btn:focus, -.btn-group > .btn:active, -.btn-group-vertical > .btn:active, -.btn-group > .btn.active, -.btn-group-vertical > .btn.active { - z-index: 2; -} -.btn-group > .btn:focus, -.btn-group-vertical > .btn:focus { - outline: 0; -} -.btn-group .btn + .btn, -.btn-group .btn + .btn-group, -.btn-group .btn-group + .btn, -.btn-group .btn-group + .btn-group { - margin-left: -1px; -} -.btn-toolbar { - margin-left: -5px; -} -.btn-toolbar .btn-group, -.btn-toolbar .input-group { - float: left; -} -.btn-toolbar > .btn, -.btn-toolbar > .btn-group, -.btn-toolbar > .input-group { - margin-left: 5px; -} -.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { - border-radius: 0; -} -.btn-group > .btn:first-child { - margin-left: 0; -} -.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { - border-bottom-right-radius: 0; - border-top-right-radius: 0; -} -.btn-group > .btn:last-child:not(:first-child), -.btn-group > .dropdown-toggle:not(:first-child) { - border-bottom-left-radius: 0; - border-top-left-radius: 0; -} -.btn-group > .btn-group { - float: left; -} -.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn { - border-radius: 0; -} -.btn-group > .btn-group:first-child > .btn:last-child, -.btn-group > .btn-group:first-child > .dropdown-toggle { - border-bottom-right-radius: 0; - border-top-right-radius: 0; -} -.btn-group > .btn-group:last-child > .btn:first-child { - border-bottom-left-radius: 0; - border-top-left-radius: 0; -} -.btn-group .dropdown-toggle:active, -.btn-group.open .dropdown-toggle { - outline: 0; -} -.btn-group > .btn + .dropdown-toggle { - padding-left: 8px; - padding-right: 8px; -} -.btn-group > .btn-lg + .dropdown-toggle { - padding-left: 12px; - padding-right: 12px; -} -.btn-group.open .dropdown-toggle { - -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); -} -.btn-group.open .dropdown-toggle.btn-link { - -webkit-box-shadow: none; - box-shadow: none; -} -.btn .caret { - margin-left: 0; -} -.btn-lg .caret { - border-width: 5px 5px 0; - border-bottom-width: 0; -} -.dropup .btn-lg .caret { - border-width: 0 5px 5px; -} -.btn-group-vertical > .btn, -.btn-group-vertical > .btn-group, -.btn-group-vertical > .btn-group > .btn { - display: block; - float: none; - width: 100%; - max-width: 100%; -} -.btn-group-vertical > .btn-group > .btn { - float: none; -} -.btn-group-vertical > .btn + .btn, -.btn-group-vertical > .btn + .btn-group, -.btn-group-vertical > .btn-group + .btn, -.btn-group-vertical > .btn-group + .btn-group { - margin-top: -1px; - margin-left: 0; -} -.btn-group-vertical > .btn:not(:first-child):not(:last-child) { - border-radius: 0; -} -.btn-group-vertical > .btn:first-child:not(:last-child) { - border-top-right-radius: 3px; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} -.btn-group-vertical > .btn:last-child:not(:first-child) { - border-bottom-left-radius: 3px; - border-top-right-radius: 0; - border-top-left-radius: 0; -} -.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn { - border-radius: 0; -} -.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, -.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle { - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} -.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child { - border-top-right-radius: 0; - border-top-left-radius: 0; -} -.btn-group-justified { - display: table; - width: 100%; - table-layout: fixed; - border-collapse: separate; -} -.btn-group-justified > .btn, -.btn-group-justified > .btn-group { - float: none; - display: table-cell; - width: 1%; -} -.btn-group-justified > .btn-group .btn { - width: 100%; -} -.btn-group-justified > .btn-group .dropdown-menu { - left: auto; -} -[data-toggle="buttons"] > .btn > input[type="radio"], -[data-toggle="buttons"] > .btn > input[type="checkbox"] { - position: absolute; - z-index: -1; - opacity: 0; - filter: alpha(opacity=0); -} -.input-group { - position: relative; - display: table; - border-collapse: separate; -} -.input-group[class*="col-"] { - float: none; - padding-left: 0; - padding-right: 0; -} -.input-group .form-control { - position: relative; - z-index: 2; - float: left; - width: 100%; - margin-bottom: 0; -} -.input-group-lg > .form-control, -.input-group-lg > .input-group-addon, -.input-group-lg > .input-group-btn > .btn { - height: 42px; - padding: 10px 16px; - font-size: 16px; - line-height: 1.25; - border-radius: 4px; -} -select.input-group-lg > .form-control, -select.input-group-lg > .input-group-addon, -select.input-group-lg > .input-group-btn > .btn { - height: 42px; - line-height: 42px; -} -textarea.input-group-lg > .form-control, -textarea.input-group-lg > .input-group-addon, -textarea.input-group-lg > .input-group-btn > .btn, -select[multiple].input-group-lg > .form-control, -select[multiple].input-group-lg > .input-group-addon, -select[multiple].input-group-lg > .input-group-btn > .btn { - height: auto; -} -.input-group-sm > .form-control, -.input-group-sm > .input-group-addon, -.input-group-sm > .input-group-btn > .btn { - height: 28px; - padding: 5px 10px; - font-size: 11px; - line-height: 1.456; - border-radius: 2px; -} -select.input-group-sm > .form-control, -select.input-group-sm > .input-group-addon, -select.input-group-sm > .input-group-btn > .btn { - height: 28px; - line-height: 28px; -} -textarea.input-group-sm > .form-control, -textarea.input-group-sm > .input-group-addon, -textarea.input-group-sm > .input-group-btn > .btn, -select[multiple].input-group-sm > .form-control, -select[multiple].input-group-sm > .input-group-addon, -select[multiple].input-group-sm > .input-group-btn > .btn { - height: auto; -} -.input-group-addon, -.input-group-btn, -.input-group .form-control { - display: table-cell; -} -.input-group-addon:not(:first-child):not(:last-child), -.input-group-btn:not(:first-child):not(:last-child), -.input-group .form-control:not(:first-child):not(:last-child) { - border-radius: 0; -} -.input-group-addon, -.input-group-btn { - width: 1%; - white-space: nowrap; - vertical-align: middle; -} -.input-group-addon { - padding: 6px 12px; - font-size: 13px; - font-weight: normal; - line-height: 1; - color: #596776; - text-align: center; - background-color: #ebedf0; - border: 1px solid #d5d5d5; - border-radius: 3px; -} -.input-group-addon.input-sm { - padding: 5px 10px; - font-size: 11px; - border-radius: 2px; -} -.input-group-addon.input-lg { - padding: 10px 16px; - font-size: 16px; - border-radius: 4px; -} -.input-group-addon input[type="radio"], -.input-group-addon input[type="checkbox"] { - margin-top: 0; -} -.input-group .form-control:first-child, -.input-group-addon:first-child, -.input-group-btn:first-child > .btn, -.input-group-btn:first-child > .btn-group > .btn, -.input-group-btn:first-child > .dropdown-toggle, -.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), -.input-group-btn:last-child > .btn-group:not(:last-child) > .btn { - border-bottom-right-radius: 0; - border-top-right-radius: 0; -} -.input-group-addon:first-child { - border-right: 0; -} -.input-group .form-control:last-child, -.input-group-addon:last-child, -.input-group-btn:last-child > .btn, -.input-group-btn:last-child > .btn-group > .btn, -.input-group-btn:last-child > .dropdown-toggle, -.input-group-btn:first-child > .btn:not(:first-child), -.input-group-btn:first-child > .btn-group:not(:first-child) > .btn { - border-bottom-left-radius: 0; - border-top-left-radius: 0; -} -.input-group-addon:last-child { - border-left: 0; -} -.input-group-btn { - position: relative; - font-size: 0; - white-space: nowrap; -} -.input-group-btn > .btn { - position: relative; -} -.input-group-btn > .btn + .btn { - margin-left: -1px; -} -.input-group-btn > .btn:hover, -.input-group-btn > .btn:focus, -.input-group-btn > .btn:active { - z-index: 2; -} -.input-group-btn:first-child > .btn, -.input-group-btn:first-child > .btn-group { - margin-right: -1px; -} -.input-group-btn:last-child > .btn, -.input-group-btn:last-child > .btn-group { - margin-left: -1px; -} -.nav { - margin-bottom: 0; - padding-left: 0; - list-style: none; -} -.nav > li { - position: relative; - display: block; -} -.nav > li > a { - position: relative; - display: block; - padding: 10px 18px; -} -.nav > li > a:hover, -.nav > li > a:focus { - text-decoration: none; - background-color: #f0f0f0; -} -.nav > li.disabled > a { - color: #a0acb8; -} -.nav > li.disabled > a:hover, -.nav > li.disabled > a:focus { - color: #a0acb8; - text-decoration: none; - background-color: transparent; - cursor: not-allowed; -} -.nav .open > a, -.nav .open > a:hover, -.nav .open > a:focus { - border-color: {{mautic_primary}}; -} -.nav .nav-divider { - height: 1px; - margin: 8px 0; - overflow: hidden; - background-color: #e5e5e5; -} -.nav > li > a > img { - max-width: none; -} -.nav-tabs { - border-bottom: 1px solid #ebedf0; -} -.nav-tabs > li { - float: left; - margin-bottom: -1px; -} -.nav-tabs > li > a { - margin-right: 2px; - line-height: 1.3856; - border: 1px solid transparent; - border-radius: 3px 3px 0 0; -} -.nav-tabs > li > a:hover { - border-color: #eeeeee #eeeeee #ebedf0; -} -.nav-tabs > li.active > a, -.nav-tabs > li.active > a:hover, -.nav-tabs > li.active > a:focus { - color: #596776; - background-color: #ffffff; - border: 1px solid #ebedf0; - border-bottom-color: transparent; - cursor: default; -} -.nav-tabs.nav-justified { - width: 100%; - border-bottom: 0; -} -.nav-tabs.nav-justified > li { - float: none; -} -.nav-tabs.nav-justified > li > a { - text-align: center; - margin-bottom: 5px; -} -.nav-tabs.nav-justified > .dropdown .dropdown-menu { - top: auto; - left: auto; -} -@media (min-width: 768px) { - .nav-tabs.nav-justified > li { - display: table-cell; - width: 1%; - } - .nav-tabs.nav-justified > li > a { - margin-bottom: 0; - } -} -.nav-tabs.nav-justified > li > a { - margin-right: 0; - border-radius: 3px; -} -.nav-tabs.nav-justified > .active > a, -.nav-tabs.nav-justified > .active > a:hover, -.nav-tabs.nav-justified > .active > a:focus { - border: 1px solid #d5d5d5; -} -@media (min-width: 768px) { - .nav-tabs.nav-justified > li > a { - border-bottom: 1px solid #d5d5d5; - border-radius: 3px 3px 0 0; - } - .nav-tabs.nav-justified > .active > a, - .nav-tabs.nav-justified > .active > a:hover, - .nav-tabs.nav-justified > .active > a:focus { - border-bottom-color: transparent; - } -} -.nav-pills > li { - float: left; -} -.nav-pills > li > a { - border-radius: 3px; -} -.nav-pills > li + li { - margin-left: 2px; -} -.nav-pills > li.active > a, -.nav-pills > li.active > a:hover, -.nav-pills > li.active > a:focus { - color: #ffffff; - background-color: {{mautic_primary}}; -} -.nav-stacked > li { - float: none; -} -.nav-stacked > li + li { - margin-top: 2px; - margin-left: 0; -} -.nav-justified { - width: 100%; -} -.nav-justified > li { - float: none; -} -.nav-justified > li > a { - text-align: center; - margin-bottom: 5px; -} -.nav-justified > .dropdown .dropdown-menu { - top: auto; - left: auto; -} -@media (min-width: 768px) { - .nav-justified > li { - display: table-cell; - width: 1%; - } - .nav-justified > li > a { - margin-bottom: 0; - } -} -.nav-tabs-justified { - border-bottom: 0; -} -.nav-tabs-justified > li > a { - margin-right: 0; - border-radius: 3px; -} -.nav-tabs-justified > .active > a, -.nav-tabs-justified > .active > a:hover, -.nav-tabs-justified > .active > a:focus { - border: 1px solid #d5d5d5; -} -@media (min-width: 768px) { - .nav-tabs-justified > li > a { - border-bottom: 1px solid #d5d5d5; - border-radius: 3px 3px 0 0; - } - .nav-tabs-justified > .active > a, - .nav-tabs-justified > .active > a:hover, - .nav-tabs-justified > .active > a:focus { - border-bottom-color: transparent; - } -} -.tab-content > .tab-pane { - display: none; -} -.tab-content > .active { - display: block; -} -.nav-tabs .dropdown-menu { - margin-top: -1px; - border-top-right-radius: 0; - border-top-left-radius: 0; -} -.navbar { - position: relative; - min-height: 50px; - margin-bottom: 18px; - border: 1px solid transparent; -} -@media (min-width: 768px) { - .navbar { - border-radius: 3px; - } -} -@media (min-width: 768px) { - .navbar-header { - float: left; - } -} -.navbar-collapse { - overflow-x: visible; - padding-right: 15px; - padding-left: 15px; - border-top: 1px solid transparent; - box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); - -webkit-overflow-scrolling: touch; -} -.navbar-collapse.in { - overflow-y: auto; -} -@media (min-width: 768px) { - .navbar-collapse { - width: auto; - border-top: 0; - box-shadow: none; - } - .navbar-collapse.collapse { - display: block !important; - height: auto !important; - padding-bottom: 0; - overflow: visible !important; - } - .navbar-collapse.in { - overflow-y: visible; - } - .navbar-fixed-top .navbar-collapse, - .navbar-static-top .navbar-collapse, - .navbar-fixed-bottom .navbar-collapse { - padding-left: 0; - padding-right: 0; - } -} -.navbar-fixed-top .navbar-collapse, -.navbar-fixed-bottom .navbar-collapse { - max-height: 340px; -} -@media (max-width: 480px) and (orientation: landscape) { - .navbar-fixed-top .navbar-collapse, - .navbar-fixed-bottom .navbar-collapse { - max-height: 200px; - } -} -.container > .navbar-header, -.container-fluid > .navbar-header, -.container > .navbar-collapse, -.container-fluid > .navbar-collapse { - margin-right: -15px; - margin-left: -15px; -} -@media (min-width: 768px) { - .container > .navbar-header, - .container-fluid > .navbar-header, - .container > .navbar-collapse, - .container-fluid > .navbar-collapse { - margin-right: 0; - margin-left: 0; - } -} -.navbar-static-top { - z-index: 1000; - border-width: 0 0 1px; -} -@media (min-width: 768px) { - .navbar-static-top { - border-radius: 0; - } -} -.navbar-fixed-top, -.navbar-fixed-bottom { - position: fixed; - right: 0; - left: 0; - z-index: 1030; - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); -} -@media (min-width: 768px) { - .navbar-fixed-top, - .navbar-fixed-bottom { - border-radius: 0; - } -} -.navbar-fixed-top { - top: 0; - border-width: 0 0 1px; -} -.navbar-fixed-bottom { - bottom: 0; - margin-bottom: 0; - border-width: 1px 0 0; -} -.navbar-brand { - float: left; - padding: 16px 15px; - font-size: 16px; - line-height: 18px; - height: 50px; -} -.navbar-brand:hover, -.navbar-brand:focus { - text-decoration: none; -} -@media (min-width: 768px) { - .navbar > .container .navbar-brand, - .navbar > .container-fluid .navbar-brand { - margin-left: -15px; - } -} -.navbar-toggle { - position: relative; - float: right; - margin-right: 15px; - padding: 9px 10px; - margin-top: 8px; - margin-bottom: 8px; - background-color: transparent; - background-image: none; - border: 1px solid transparent; - border-radius: 3px; -} -.navbar-toggle:focus { - outline: 0; -} -.navbar-toggle .icon-bar { - display: block; - width: 22px; - height: 2px; - border-radius: 1px; -} -.navbar-toggle .icon-bar + .icon-bar { - margin-top: 4px; -} -@media (min-width: 768px) { - .navbar-toggle { - display: none; - } -} -.navbar-nav { - margin: 8px -15px; -} -.navbar-nav > li > a { - padding-top: 10px; - padding-bottom: 10px; - line-height: 18px; -} -@media (max-width: 767px) { - .navbar-nav .open .dropdown-menu { - position: static; - float: none; - width: auto; - margin-top: 0; - background-color: transparent; - border: 0; - box-shadow: none; - } - .navbar-nav .open .dropdown-menu > li > a, - .navbar-nav .open .dropdown-menu .dropdown-header { - padding: 5px 15px 5px 25px; - } - .navbar-nav .open .dropdown-menu > li > a { - line-height: 18px; - } - .navbar-nav .open .dropdown-menu > li > a:hover, - .navbar-nav .open .dropdown-menu > li > a:focus { - background-image: none; - } -} -@media (min-width: 768px) { - .navbar-nav { - float: left; - margin: 0; - } - .navbar-nav > li { - float: left; - } - .navbar-nav > li > a { - padding-top: 16px; - padding-bottom: 16px; - } - .navbar-nav.navbar-right:last-child { - margin-right: -15px; - } -} -@media (min-width: 768px) { - .navbar-left { - float: left !important; - float: left; - } - .navbar-right { - float: right !important; - float: right; - } -} -.navbar-form { - margin-left: -15px; - margin-right: -15px; - padding: 10px 15px; - border-top: 1px solid transparent; - border-bottom: 1px solid transparent; - -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); - box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); - margin-top: 9px; - margin-bottom: 9px; -} -@media (min-width: 768px) { - .navbar-form .form-group { - display: inline-block; - margin-bottom: 0; - vertical-align: middle; - } - .navbar-form .form-control { - display: inline-block; - width: auto; - vertical-align: middle; - } - .navbar-form .input-group { - display: inline-table; - vertical-align: middle; - } - .navbar-form .input-group .input-group-addon, - .navbar-form .input-group .input-group-btn, - .navbar-form .input-group .form-control { - width: auto; - } - .navbar-form .input-group > .form-control { - width: 100%; - } - .navbar-form .control-label { - margin-bottom: 0; - vertical-align: middle; - } - .navbar-form .radio, - .navbar-form .checkbox { - display: inline-block; - margin-top: 0; - margin-bottom: 0; - vertical-align: middle; - } - .navbar-form .radio label, - .navbar-form .checkbox label { - padding-left: 0; - } - .navbar-form .radio input[type="radio"], - .navbar-form .checkbox input[type="checkbox"] { - position: relative; - margin-left: 0; - } - .navbar-form .has-feedback .form-control-feedback { - top: 0; - } -} -.navbar-form .chosen-container { - display: inline-table; - vertical-align: middle; - min-width: 200px; -} -@media (max-width: 767px) { - .navbar-form .form-group { - margin-bottom: 5px; - } -} -@media (min-width: 768px) { - .navbar-form { - width: auto; - border: 0; - margin-left: 0; - margin-right: 0; - padding-top: 0; - padding-bottom: 0; - -webkit-box-shadow: none; - box-shadow: none; - } - .navbar-form.navbar-right:last-child { - margin-right: -15px; - } -} -.navbar-nav > li > .dropdown-menu { - margin-top: 0; - border-top-right-radius: 0; - border-top-left-radius: 0; -} -.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu { - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} -.navbar-btn { - margin-top: 9px; - margin-bottom: 9px; -} -.navbar-btn.btn-sm { - margin-top: 11px; - margin-bottom: 11px; -} -.navbar-btn.btn-xs { - margin-top: 14px; - margin-bottom: 14px; -} -.navbar-text { - margin-top: 16px; - margin-bottom: 16px; -} -@media (min-width: 768px) { - .navbar-text { - float: left; - margin-left: 15px; - margin-right: 15px; - } - .navbar-text.navbar-right:last-child { - margin-right: 0; - } -} -.navbar-default { - background-color: #f8f8f8; - border-color: #e7e7e7; -} -.navbar-default .navbar-brand { - color: #777777; -} -.navbar-default .navbar-brand:hover, -.navbar-default .navbar-brand:focus { - color: #5e5e5e; - background-color: transparent; -} -.navbar-default .navbar-text { - color: #777777; -} -.navbar-default .navbar-nav > li > a { - color: #777777; -} -.navbar-default .navbar-nav > li > a:hover, -.navbar-default .navbar-nav > li > a:focus { - color: #333333; - background-color: transparent; -} -.navbar-default .navbar-nav > .active > a, -.navbar-default .navbar-nav > .active > a:hover, -.navbar-default .navbar-nav > .active > a:focus { - color: #555555; - background-color: #e7e7e7; -} -.navbar-default .navbar-nav > .disabled > a, -.navbar-default .navbar-nav > .disabled > a:hover, -.navbar-default .navbar-nav > .disabled > a:focus { - color: #cccccc; - background-color: transparent; -} -.navbar-default .navbar-toggle { - border-color: #dddddd; -} -.navbar-default .navbar-toggle:hover, -.navbar-default .navbar-toggle:focus { - background-color: #dddddd; -} -.navbar-default .navbar-toggle .icon-bar { - background-color: #888888; -} -.navbar-default .navbar-collapse, -.navbar-default .navbar-form { - border-color: #e7e7e7; -} -.navbar-default .navbar-nav > .open > a, -.navbar-default .navbar-nav > .open > a:hover, -.navbar-default .navbar-nav > .open > a:focus { - background-color: #e7e7e7; - color: #555555; -} -@media (max-width: 767px) { - .navbar-default .navbar-nav .open .dropdown-menu > li > a { - color: #777777; - } - .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, - .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { - color: #333333; - background-color: transparent; - } - .navbar-default .navbar-nav .open .dropdown-menu > .active > a, - .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, - .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus { - color: #555555; - background-color: #e7e7e7; - } - .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, - .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, - .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus { - color: #cccccc; - background-color: transparent; - } -} -.navbar-default .navbar-link { - color: #777777; -} -.navbar-default .navbar-link:hover { - color: #333333; -} -.navbar-default .btn-link { - color: #777777; -} -.navbar-default .btn-link:hover, -.navbar-default .btn-link:focus { - color: #333333; -} -.navbar-default .btn-link[disabled]:hover, -fieldset[disabled] .navbar-default .btn-link:hover, -.navbar-default .btn-link[disabled]:focus, -fieldset[disabled] .navbar-default .btn-link:focus { - color: #cccccc; -} -.navbar-inverse { - background-color: #222222; - border-color: #080808; -} -.navbar-inverse .navbar-brand { - color: #a0acb8; -} -.navbar-inverse .navbar-brand:hover, -.navbar-inverse .navbar-brand:focus { - color: #ffffff; - background-color: transparent; -} -.navbar-inverse .navbar-text { - color: #a0acb8; -} -.navbar-inverse .navbar-nav > li > a { - color: #a0acb8; -} -.navbar-inverse .navbar-nav > li > a:hover, -.navbar-inverse .navbar-nav > li > a:focus { - color: #ffffff; - background-color: transparent; -} -.navbar-inverse .navbar-nav > .active > a, -.navbar-inverse .navbar-nav > .active > a:hover, -.navbar-inverse .navbar-nav > .active > a:focus { - color: #ffffff; - background-color: #080808; -} -.navbar-inverse .navbar-nav > .disabled > a, -.navbar-inverse .navbar-nav > .disabled > a:hover, -.navbar-inverse .navbar-nav > .disabled > a:focus { - color: #444444; - background-color: transparent; -} -.navbar-inverse .navbar-toggle { - border-color: #333333; -} -.navbar-inverse .navbar-toggle:hover, -.navbar-inverse .navbar-toggle:focus { - background-color: #333333; -} -.navbar-inverse .navbar-toggle .icon-bar { - background-color: #ffffff; -} -.navbar-inverse .navbar-collapse, -.navbar-inverse .navbar-form { - border-color: #101010; -} -.navbar-inverse .navbar-nav > .open > a, -.navbar-inverse .navbar-nav > .open > a:hover, -.navbar-inverse .navbar-nav > .open > a:focus { - background-color: #080808; - color: #ffffff; -} -@media (max-width: 767px) { - .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header { - border-color: #080808; - } - .navbar-inverse .navbar-nav .open .dropdown-menu .divider { - background-color: #080808; - } - .navbar-inverse .navbar-nav .open .dropdown-menu > li > a { - color: #a0acb8; - } - .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, - .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus { - color: #ffffff; - background-color: transparent; - } - .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, - .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, - .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus { - color: #ffffff; - background-color: #080808; - } - .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, - .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, - .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus { - color: #444444; - background-color: transparent; - } -} -.navbar-inverse .navbar-link { - color: #a0acb8; -} -.navbar-inverse .navbar-link:hover { - color: #ffffff; -} -.navbar-inverse .btn-link { - color: #a0acb8; -} -.navbar-inverse .btn-link:hover, -.navbar-inverse .btn-link:focus { - color: #ffffff; -} -.navbar-inverse .btn-link[disabled]:hover, -fieldset[disabled] .navbar-inverse .btn-link:hover, -.navbar-inverse .btn-link[disabled]:focus, -fieldset[disabled] .navbar-inverse .btn-link:focus { - color: #444444; -} -.breadcrumb { - padding: 8px 15px; - margin-bottom: 18px; - list-style: none; - background-color: #f5f5f5; - border-radius: 3px; -} -.breadcrumb > li { - display: inline-block; -} -.breadcrumb > li + li:before { - content: "/\00a0"; - padding: 0 5px; - color: #cccccc; -} -.breadcrumb > .active { - color: #a0acb8; -} -.pagination { - display: inline-block; - margin: 18px 0; - border-radius: 3px; -} -.pagination > li { - display: inline; -} -.pagination > li > a, -.pagination > li > span { - position: relative; - float: left; - padding: 6px 12px; - line-height: 1.3856; - text-decoration: none; - color: {{mautic_primary}}; - background-color: #ffffff; - border: 1px solid #dddddd; - margin-left: -1px; -} -.pagination > li:first-child > a, -.pagination > li:first-child > span { - margin-left: 0; - border-bottom-left-radius: 3px; - border-top-left-radius: 3px; -} -.pagination > li:last-child > a, -.pagination > li:last-child > span { - border-bottom-right-radius: 3px; - border-top-right-radius: 3px; -} -.pagination > li > a:hover, -.pagination > li > span:hover, -.pagination > li > a:focus, -.pagination > li > span:focus { - color: {{mautic_primary}}; - background-color: #ebedf0; - border-color: #dddddd; -} -.pagination > .active > a, -.pagination > .active > span, -.pagination > .active > a:hover, -.pagination > .active > span:hover, -.pagination > .active > a:focus, -.pagination > .active > span:focus { - z-index: 2; - color: {{mautic_primary}}; - background-color: #ebedf0; - border-color: #dddddd; - cursor: default; -} -.pagination > .disabled > span, -.pagination > .disabled > span:hover, -.pagination > .disabled > span:focus, -.pagination > .disabled > a, -.pagination > .disabled > a:hover, -.pagination > .disabled > a:focus { - color: #a0acb8; - background-color: #ffffff; - border-color: #dddddd; - cursor: not-allowed; -} -.pagination-lg > li > a, -.pagination-lg > li > span { - padding: 10px 16px; - font-size: 16px; -} -.pagination-lg > li:first-child > a, -.pagination-lg > li:first-child > span { - border-bottom-left-radius: 4px; - border-top-left-radius: 4px; -} -.pagination-lg > li:last-child > a, -.pagination-lg > li:last-child > span { - border-bottom-right-radius: 4px; - border-top-right-radius: 4px; -} -.pagination-sm > li > a, -.pagination-sm > li > span { - padding: 5px 10px; - font-size: 11px; -} -.pagination-sm > li:first-child > a, -.pagination-sm > li:first-child > span { - border-bottom-left-radius: 2px; - border-top-left-radius: 2px; -} -.pagination-sm > li:last-child > a, -.pagination-sm > li:last-child > span { - border-bottom-right-radius: 2px; - border-top-right-radius: 2px; -} -.pagination-xs > li > a, -.pagination-xs > li > span { - padding: 1px 5px; - font-size: 11px; -} -.pagination-xs > li:first-child > a, -.pagination-xs > li:first-child > span { - border-bottom-left-radius: 2px; - border-top-left-radius: 2px; -} -.pagination-xs > li:last-child > a, -.pagination-xs > li:last-child > span { - border-bottom-right-radius: 2px; - border-top-right-radius: 2px; -} -.pager { - padding-left: 0; - margin: 18px 0; - list-style: none; - text-align: center; -} -.pager li { - display: inline; -} -.pager li > a, -.pager li > span { - display: inline-block; - padding: 5px 14px; - background-color: #ffffff; - border: 1px solid #dddddd; - border-radius: 15px; -} -.pager li > a:hover, -.pager li > a:focus { - text-decoration: none; - background-color: #ebedf0; -} -.pager .next > a, -.pager .next > span { - float: right; -} -.pager .previous > a, -.pager .previous > span { - float: left; -} -.pager .disabled > a, -.pager .disabled > a:hover, -.pager .disabled > a:focus, -.pager .disabled > span { - color: #a0acb8; - background-color: #ffffff; - cursor: not-allowed; -} -.label { - display: inline; - padding: .2em .6em .3em; - font-size: 75%; - font-weight: bold; - line-height: 1; - color: #ffffff; - text-align: center; - white-space: nowrap; - vertical-align: baseline; - border-radius: .25em; -} -a.label:hover, -a.label:focus { - color: #ffffff; - text-decoration: none; - cursor: pointer; -} -.label:empty { - display: none; -} -.btn .label { - position: relative; - top: -1px; -} -.label-default { - background-color: #a0acb8; -} -.label-default[href]:hover, -.label-default[href]:focus { - background-color: #8392a2; -} -.label-primary { - background-color: {{mautic_primary}}; -} -.label-primary[href]:hover, -.label-primary[href]:focus { - background-color: {{mautic_primary}}; -} -.label-success { - background-color: #00b49c; -} -.label-success[href]:hover, -.label-success[href]:focus { - background-color: #008170; -} -.label-info { - background-color: #35b4b9; -} -.label-info[href]:hover, -.label-info[href]:focus { - background-color: #2a8d91; -} -.label-warning { - background-color: #fdb933; -} -.label-warning[href]:hover, -.label-warning[href]:focus { - background-color: #fba702; -} -.label-danger { - background-color: #f86b4f; -} -.label-danger[href]:hover, -.label-danger[href]:focus { - background-color: #f6421e; -} -.badge { - display: inline-block; - min-width: 10px; - padding: 3px 7px; - font-size: 11px; - font-weight: 400; - color: #ffffff; - line-height: 18px; - vertical-align: baseline; - white-space: nowrap; - text-align: center; - background-color: #a0acb8; - border-radius: 9px; -} -.badge:empty { - display: none; -} -.btn .badge { - position: relative; - top: -1px; -} -.btn-xs .badge { - top: 0; - padding: 1px 5px; -} -a.badge:hover, -a.badge:focus { - color: #ffffff; - text-decoration: none; - cursor: pointer; -} -a.list-group-item.active > .badge, -.nav-pills > .active > a > .badge { - color: {{mautic_primary}}; - background-color: #ffffff; -} -.nav-pills > li > a > .badge { - margin-left: 3px; -} -.label-as-badge { - border-radius: 9px !important; -} -.jumbotron { - padding: 30px; - margin-bottom: 30px; - color: inherit; - background-color: #ebedf0; -} -.jumbotron h1, -.jumbotron .h1 { - color: inherit; -} -.jumbotron p { - margin-bottom: 15px; - font-size: 20px; - font-weight: 200; -} -.jumbotron > hr { - border-top-color: #cdd4da; -} -.container .jumbotron { - border-radius: 4px; -} -.jumbotron .container { - max-width: 100%; -} -@media screen and (min-width: 768px) { - .jumbotron { - padding-top: 48px; - padding-bottom: 48px; - } - .container .jumbotron { - padding-left: 60px; - padding-right: 60px; - } - .jumbotron h1, - .jumbotron .h1 { - font-size: 58.5px; - } -} -.thumbnail { - display: block; - padding: 4px; - margin-bottom: 18px; - line-height: 1.3856; - background-color: #f8f8f8; - border: 1px solid #dddddd; - border-radius: 3px; - -webkit-transition: all 0.2s ease-in-out; - -moz-transition: all 0.2s ease-in-out; - -ms-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; -} -.thumbnail > img, -.thumbnail a > img { - margin-left: auto; - margin-right: auto; -} -a.thumbnail:hover, -a.thumbnail:focus, -a.thumbnail.active { - border-color: {{mautic_primary}}; -} -.thumbnail .caption { - padding: 9px; - color: #47535f; -} -.alert { - padding: 15px; - margin-bottom: 18px; - border: 1px solid transparent; - border-radius: 3px; -} -.alert h4 { - margin-top: 0; - color: inherit; -} -.alert .alert-link { - font-weight: bold; -} -.alert > p, -.alert > ul { - margin-bottom: 0; -} -.alert > p + p { - margin-top: 5px; -} -.alert-dismissible, -.alert-dismissible { - padding-right: 35px; -} -.alert-dismissible .close, -.alert-dismissible .close { - position: relative; - top: -2px; - right: -21px; - color: inherit; -} -.alert-success { - background-color: #dff0d8; - border-color: #d6e9c6; - color: #3c763d; -} -.alert-success hr { - border-top-color: #c9e2b3; -} -.alert-success .alert-link { - color: #2b542c; -} -.alert-info { - background-color: #d9edf7; - border-color: #bce8f1; - color: #31708f; -} -.alert-info hr { - border-top-color: #a6e1ec; -} -.alert-info .alert-link { - color: #245269; -} -.alert-warning { - background-color: #fcf8e3; - border-color: #faebcc; - color: #8a6d3b; -} -.alert-warning hr { - border-top-color: #f7e1b5; -} -.alert-warning .alert-link { - color: #66512c; -} -.alert-danger { - background-color: #f2dede; - border-color: #ebccd1; - color: #a94442; -} -.alert-danger hr { - border-top-color: #e4b9c0; -} -.alert-danger .alert-link { - color: #843534; -} -.alert-mautic { - background-color: {{mautic_primary}}; - border-color: rgba(0, 0, 0, 0.03); - color: #ffffff; -} -.alert-mautic a { - color: #ffffff; - text-decoration: underline; -} -.alert-mautic hr { - border-top-color: rgba(0, 0, 0, 0.03); -} -.alert-mautic .alert-link { - color: #e6e6e6; -} -@-webkit-keyframes progress-bar-stripes { - from { - background-position: 40px 0; - } - to { - background-position: 0 0; - } -} -@keyframes progress-bar-stripes { - from { - background-position: 40px 0; - } - to { - background-position: 0 0; - } -} -.progress { - overflow: hidden; - height: 18px; - margin-bottom: 18px; - background-color: #f5f5f5; - border-radius: 3px; - -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); - box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); -} -.progress-bar { - float: left; - width: 0%; - height: 100%; - font-size: 11px; - line-height: 18px; - color: #ffffff; - text-align: center; - background-color: {{mautic_primary}}; - -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); - box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); - -webkit-transition: width 0.6s ease; - -moz-transition: width 0.6s ease; - -ms-transition: width 0.6s ease; - -o-transition: width 0.6s ease; - transition: width 0.6s ease; -} -.progress-striped .progress-bar, -.progress-bar-striped { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-size: 40px 40px; -} -.progress.active .progress-bar, -.progress-bar.active { - -webkit-animation: progress-bar-stripes 2s linear infinite; - -o-animation: progress-bar-stripes 2s linear infinite; - animation: progress-bar-stripes 2s linear infinite; -} -.progress-bar[aria-valuenow="1"], -.progress-bar[aria-valuenow="2"] { - min-width: 30px; -} -.progress-bar[aria-valuenow="0"] { - color: #a0acb8; - min-width: 30px; - background-color: transparent; - background-image: none; - box-shadow: none; -} -.progress-bar-success { - background-color: #00b49c; -} -.progress-striped .progress-bar-success { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); -} -.progress-bar-info { - background-color: #35b4b9; -} -.progress-striped .progress-bar-info { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); -} -.progress-bar-warning { - background-color: #fdb933; -} -.progress-striped .progress-bar-warning { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); -} -.progress-bar-danger { - background-color: #f86b4f; -} -.progress-striped .progress-bar-danger { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); -} -.media, -.media-body { - overflow: hidden; - zoom: 1; -} -.media, -.media .media { - margin-top: 15px; -} -.media:first-child { - margin-top: 0; -} -.media-object { - display: block; -} -.media-heading { - margin: 0 0 5px; -} -.media > .pull-left { - margin-right: 10px; -} -.media > .pull-right { - margin-left: 10px; -} -.media-list { - padding-left: 0; - list-style: none; -} -.list-group { - margin-bottom: 20px; - padding-left: 0; -} -.list-group-item { - position: relative; - display: block; - padding: 10px 15px; - margin-bottom: -1px; - background-color: transparent; - border: 1px solid #ebedf0; -} -.list-group-item:first-child { - border-top-right-radius: 3px; - border-top-left-radius: 3px; -} -.list-group-item:last-child { - margin-bottom: 0; - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; -} -.list-group-item > .badge { - float: right; -} -.list-group-item > .badge + .badge { - margin-right: 5px; -} -a.list-group-item { - color: #555555; -} -a.list-group-item .list-group-item-heading { - color: #333333; -} -a.list-group-item:hover, -a.list-group-item:focus { - text-decoration: none; - color: #555555; - background-color: #f5f5f5; -} -.list-group-item.disabled, -.list-group-item.disabled:hover, -.list-group-item.disabled:focus { - background-color: #ebedf0; - color: #a0acb8; -} -.list-group-item.disabled .list-group-item-heading, -.list-group-item.disabled:hover .list-group-item-heading, -.list-group-item.disabled:focus .list-group-item-heading { - color: inherit; -} -.list-group-item.disabled .list-group-item-text, -.list-group-item.disabled:hover .list-group-item-text, -.list-group-item.disabled:focus .list-group-item-text { - color: #a0acb8; -} -.list-group-item.active, -.list-group-item.active:hover, -.list-group-item.active:focus { - z-index: 2; - color: #47535f; - background-color: #f5f5f5; - border-color: #ebedf0; -} -.list-group-item.active .list-group-item-heading, -.list-group-item.active:hover .list-group-item-heading, -.list-group-item.active:focus .list-group-item-heading, -.list-group-item.active .list-group-item-heading > small, -.list-group-item.active:hover .list-group-item-heading > small, -.list-group-item.active:focus .list-group-item-heading > small, -.list-group-item.active .list-group-item-heading > .small, -.list-group-item.active:hover .list-group-item-heading > .small, -.list-group-item.active:focus .list-group-item-heading > .small { - color: inherit; -} -.list-group-item.active .list-group-item-text, -.list-group-item.active:hover .list-group-item-text, -.list-group-item.active:focus .list-group-item-text { - color: #ffffff; -} -.list-group-item-success { - color: #3c763d; - background-color: #dff0d8; -} -a.list-group-item-success { - color: #3c763d; -} -a.list-group-item-success .list-group-item-heading { - color: inherit; -} -a.list-group-item-success:hover, -a.list-group-item-success:focus { - color: #3c763d; - background-color: #d0e9c6; -} -a.list-group-item-success.active, -a.list-group-item-success.active:hover, -a.list-group-item-success.active:focus { - color: #fff; - background-color: #3c763d; - border-color: #3c763d; -} -.list-group-item-info { - color: #31708f; - background-color: #d9edf7; -} -a.list-group-item-info { - color: #31708f; -} -a.list-group-item-info .list-group-item-heading { - color: inherit; -} -a.list-group-item-info:hover, -a.list-group-item-info:focus { - color: #31708f; - background-color: #c4e3f3; -} -a.list-group-item-info.active, -a.list-group-item-info.active:hover, -a.list-group-item-info.active:focus { - color: #fff; - background-color: #31708f; - border-color: #31708f; -} -.list-group-item-warning { - color: #8a6d3b; - background-color: #fcf8e3; -} -a.list-group-item-warning { - color: #8a6d3b; -} -a.list-group-item-warning .list-group-item-heading { - color: inherit; -} -a.list-group-item-warning:hover, -a.list-group-item-warning:focus { - color: #8a6d3b; - background-color: #faf2cc; -} -a.list-group-item-warning.active, -a.list-group-item-warning.active:hover, -a.list-group-item-warning.active:focus { - color: #fff; - background-color: #8a6d3b; - border-color: #8a6d3b; -} -.list-group-item-danger { - color: #a94442; - background-color: #f2dede; -} -a.list-group-item-danger { - color: #a94442; -} -a.list-group-item-danger .list-group-item-heading { - color: inherit; -} -a.list-group-item-danger:hover, -a.list-group-item-danger:focus { - color: #a94442; - background-color: #ebcccc; -} -a.list-group-item-danger.active, -a.list-group-item-danger.active:hover, -a.list-group-item-danger.active:focus { - color: #fff; - background-color: #a94442; - border-color: #a94442; -} -.list-group-item-heading { - margin-top: 0; - margin-bottom: 5px; -} -.list-group-item-text { - margin-bottom: 0; - line-height: 1.3; -} -.panel { - margin-bottom: 18px; - background-color: #ffffff; - border: 1px solid transparent; - border-radius: 3px; - -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); - box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); -} -.panel-body { - padding: 15px; -} -.panel-heading { - padding: 10px 15px; - border-bottom: 1px solid transparent; - border-top-right-radius: 2px; - border-top-left-radius: 2px; -} -.panel-heading > .dropdown .dropdown-toggle { - color: inherit; -} -.panel-title { - margin-top: 0; - margin-bottom: 0; - font-size: 15px; - color: inherit; -} -.panel-title > a { - color: inherit; -} -.panel-footer { - padding: 10px 15px; - background-color: #f5f5f5; - border-top: 1px solid #ebedf0; - border-bottom-right-radius: 2px; - border-bottom-left-radius: 2px; -} -.panel > .list-group { - margin-bottom: 0; -} -.panel > .list-group .list-group-item { - border-width: 1px 0; - border-radius: 0; -} -.panel > .list-group:first-child .list-group-item:first-child { - border-top: 0; - border-top-right-radius: 2px; - border-top-left-radius: 2px; -} -.panel > .list-group:last-child .list-group-item:last-child { - border-bottom: 0; - border-bottom-right-radius: 2px; - border-bottom-left-radius: 2px; -} -.panel-heading + .list-group .list-group-item:first-child { - border-top-width: 0; -} -.list-group + .panel-footer { - border-top-width: 0; -} -.panel > .table, -.panel > .table-responsive > .table, -.panel > .panel-collapse > .table { - margin-bottom: 0; -} -.panel > .table:first-child, -.panel > .table-responsive:first-child > .table:first-child { - border-top-right-radius: 2px; - border-top-left-radius: 2px; -} -.panel > .table:first-child > thead:first-child > tr:first-child td:first-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, -.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, -.panel > .table:first-child > thead:first-child > tr:first-child th:first-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, -.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child { - border-top-left-radius: 2px; -} -.panel > .table:first-child > thead:first-child > tr:first-child td:last-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, -.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, -.panel > .table:first-child > thead:first-child > tr:first-child th:last-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, -.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child { - border-top-right-radius: 2px; -} -.panel > .table:last-child, -.panel > .table-responsive:last-child > .table:last-child { - border-bottom-right-radius: 2px; - border-bottom-left-radius: 2px; -} -.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, -.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child { - border-bottom-left-radius: 2px; -} -.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, -.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child { - border-bottom-right-radius: 2px; -} -.panel > .panel-body + .table, -.panel > .panel-body + .table-responsive { - border-top: 1px solid #ebedf0; -} -.panel > .table > tbody:first-child > tr:first-child th, -.panel > .table > tbody:first-child > tr:first-child td { - border-top: 0; -} -.panel > .table-bordered, -.panel > .table-responsive > .table-bordered { - border: 0; -} -.panel > .table-bordered > thead > tr > th:first-child, -.panel > .table-responsive > .table-bordered > thead > tr > th:first-child, -.panel > .table-bordered > tbody > tr > th:first-child, -.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, -.panel > .table-bordered > tfoot > tr > th:first-child, -.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, -.panel > .table-bordered > thead > tr > td:first-child, -.panel > .table-responsive > .table-bordered > thead > tr > td:first-child, -.panel > .table-bordered > tbody > tr > td:first-child, -.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, -.panel > .table-bordered > tfoot > tr > td:first-child, -.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child { - border-left: 0; -} -.panel > .table-bordered > thead > tr > th:last-child, -.panel > .table-responsive > .table-bordered > thead > tr > th:last-child, -.panel > .table-bordered > tbody > tr > th:last-child, -.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, -.panel > .table-bordered > tfoot > tr > th:last-child, -.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, -.panel > .table-bordered > thead > tr > td:last-child, -.panel > .table-responsive > .table-bordered > thead > tr > td:last-child, -.panel > .table-bordered > tbody > tr > td:last-child, -.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, -.panel > .table-bordered > tfoot > tr > td:last-child, -.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child { - border-right: 0; -} -.panel > .table-bordered > thead > tr:first-child > td, -.panel > .table-responsive > .table-bordered > thead > tr:first-child > td, -.panel > .table-bordered > tbody > tr:first-child > td, -.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, -.panel > .table-bordered > thead > tr:first-child > th, -.panel > .table-responsive > .table-bordered > thead > tr:first-child > th, -.panel > .table-bordered > tbody > tr:first-child > th, -.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th { - border-bottom: 0; -} -.panel > .table-bordered > tbody > tr:last-child > td, -.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, -.panel > .table-bordered > tfoot > tr:last-child > td, -.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, -.panel > .table-bordered > tbody > tr:last-child > th, -.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, -.panel > .table-bordered > tfoot > tr:last-child > th, -.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th { - border-bottom: 0; -} -.panel > .table-responsive { - border: 0; - margin-bottom: 0; -} -.panel-group { - margin-bottom: 18px; -} -.panel-group .panel { - margin-bottom: 0; - border-radius: 3px; -} -.panel-group .panel + .panel { - margin-top: 5px; -} -.panel-group .panel-heading { - border-bottom: 0; -} -.panel-group .panel-heading + .panel-collapse > .panel-body { - border-top: 1px solid #ebedf0; -} -.panel-group .panel-footer { - border-top: 0; -} -.panel-group .panel-footer + .panel-collapse .panel-body { - border-bottom: 1px solid #ebedf0; -} -.panel-group .list-group { - margin-bottom: 0; -} -.panel-group .list-group .list-group-item { - border-radius: 0; - border-left: none; - border-right: none; -} -.panel-group .list-group .list-group-item:last-child { - border-bottom: none; -} -.panel-default { - border-color: #ebedf0; -} -.panel-default > .panel-heading { - color: #3c4650; - background-color: #f5f5f5; - border-color: #ebedf0; -} -.panel-default > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #ebedf0; -} -.panel-default > .panel-heading .badge { - color: #f5f5f5; - background-color: #3c4650; -} -.panel-default > .panel-heading svg text { - fill: #3c4650; - opacity: 0.8; -} -.panel-default > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #ebedf0; -} -.panel-primary { - border-color: rgba(0, 0, 0, 0.03); -} -.panel-primary > .panel-heading { - color: #ffffff; - background-color: {{mautic_primary}}; - border-color: rgba(0, 0, 0, 0.03); -} -.panel-primary > .panel-heading + .panel-collapse > .panel-body { - border-top-color: rgba(0, 0, 0, 0.03); -} -.panel-primary > .panel-heading .badge { - color: {{mautic_primary}}; - background-color: #ffffff; -} -.panel-primary > .panel-heading svg text { - fill: #ffffff; - opacity: 0.8; -} -.panel-primary > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: rgba(0, 0, 0, 0.03); -} -.panel-success { - border-color: rgba(0, 0, 0, 0.03); -} -.panel-success > .panel-heading { - color: #ffffff; - background-color: #00b49c; - border-color: rgba(0, 0, 0, 0.03); -} -.panel-success > .panel-heading + .panel-collapse > .panel-body { - border-top-color: rgba(0, 0, 0, 0.03); -} -.panel-success > .panel-heading .badge { - color: #00b49c; - background-color: #ffffff; -} -.panel-success > .panel-heading svg text { - fill: #ffffff; - opacity: 0.8; -} -.panel-success > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: rgba(0, 0, 0, 0.03); -} -.panel-info { - border-color: rgba(0, 0, 0, 0.03); -} -.panel-info > .panel-heading { - color: #ffffff; - background-color: #35b4b9; - border-color: rgba(0, 0, 0, 0.03); -} -.panel-info > .panel-heading + .panel-collapse > .panel-body { - border-top-color: rgba(0, 0, 0, 0.03); -} -.panel-info > .panel-heading .badge { - color: #35b4b9; - background-color: #ffffff; -} -.panel-info > .panel-heading svg text { - fill: #ffffff; - opacity: 0.8; -} -.panel-info > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: rgba(0, 0, 0, 0.03); -} -.panel-warning { - border-color: rgba(0, 0, 0, 0.03); -} -.panel-warning > .panel-heading { - color: #ffffff; - background-color: #fdb933; - border-color: rgba(0, 0, 0, 0.03); -} -.panel-warning > .panel-heading + .panel-collapse > .panel-body { - border-top-color: rgba(0, 0, 0, 0.03); -} -.panel-warning > .panel-heading .badge { - color: #fdb933; - background-color: #ffffff; -} -.panel-warning > .panel-heading svg text { - fill: #ffffff; - opacity: 0.8; -} -.panel-warning > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: rgba(0, 0, 0, 0.03); -} -.panel-danger { - border-color: rgba(0, 0, 0, 0.03); -} -.panel-danger > .panel-heading { - color: #ffffff; - background-color: #f86b4f; - border-color: rgba(0, 0, 0, 0.03); -} -.panel-danger > .panel-heading + .panel-collapse > .panel-body { - border-top-color: rgba(0, 0, 0, 0.03); -} -.panel-danger > .panel-heading .badge { - color: #f86b4f; - background-color: #ffffff; -} -.panel-danger > .panel-heading svg text { - fill: #ffffff; - opacity: 0.8; -} -.panel-danger > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: rgba(0, 0, 0, 0.03); -} -.embed-responsive { - position: relative; - display: block; - height: 0; - padding: 0; - overflow: hidden; -} -.embed-responsive .embed-responsive-item, -.embed-responsive iframe, -.embed-responsive embed, -.embed-responsive object { - position: absolute; - top: 0; - left: 0; - bottom: 0; - height: 100%; - width: 100%; - border: 0; -} -.embed-responsive.embed-responsive-16by9 { - padding-bottom: 56.25%; -} -.embed-responsive.embed-responsive-4by3 { - padding-bottom: 75%; -} -.well { - min-height: 20px; - padding: 19px; - margin-bottom: 20px; - background-color: #f5f5f5; - border: 1px solid #e3e3e3; - border-radius: 3px; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); -} -.well blockquote { - border-color: #ddd; - border-color: rgba(0, 0, 0, 0.15); -} -.well-lg { - padding: 24px; - border-radius: 4px; -} -.well-sm { - padding: 9px; - border-radius: 2px; -} -.close { - float: right; - font-size: 19.5px; - font-weight: bold; - line-height: 1; - color: #000000; - text-shadow: 0 1px 0 #ffffff; - opacity: 0.2; - filter: alpha(opacity=20); -} -.close:hover, -.close:focus { - color: #000000; - text-decoration: none; - cursor: pointer; - opacity: 0.5; - filter: alpha(opacity=50); -} -button.close { - padding: 0; - cursor: pointer; - background: transparent; - border: 0; - -webkit-appearance: none; -} -.modal-open { - overflow: hidden; -} -.modal { - display: none; - overflow: hidden; - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1050; - -webkit-overflow-scrolling: touch; - outline: 0; -} -.modal.fade .modal-dialog { - -webkit-transform: translate3d(0, -25%, 0); - transform: translate3d(0, -25%, 0); - -webkit-transition: -webkit-transform 0.3s ease-out; - -moz-transition: -moz-transform 0.3s ease-out; - -o-transition: -o-transform 0.3s ease-out; - transition: transform 0.3s ease-out; -} -.modal.in .modal-dialog { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); -} -.modal-open .modal { - overflow-x: hidden; - overflow-y: auto; -} -.modal-dialog { - position: relative; - width: auto; - margin: 10px; -} -.modal-content { - position: relative; - background-color: #ffffff; - border: 1px solid #999999; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 4px; - -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); - box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); - background-clip: padding-box; - outline: 0; -} -.modal-backdrop { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1040; - background-color: #000000; -} -.modal-backdrop.fade { - opacity: 0; - filter: alpha(opacity=0); -} -.modal-backdrop.in { - opacity: 0.5; - filter: alpha(opacity=50); -} -.modal-header { - padding: 15px; - border-bottom: 1px solid #e5e5e5; - min-height: 16.3856px; -} -.modal-header .close { - margin-top: -2px; -} -.modal-title { - margin: 0; - line-height: 1.3856; -} -.modal-body { - position: relative; - padding: 15px; -} -.modal-footer { - padding: 15px; - text-align: right; - border-top: 1px solid #e5e5e5; -} -.modal-footer .btn + .btn { - margin-left: 5px; - margin-bottom: 0; -} -.modal-footer .btn-group .btn + .btn { - margin-left: -1px; -} -.modal-footer .btn-block + .btn-block { - margin-left: 0; -} -.modal-scrollbar-measure { - position: absolute; - top: -9999px; - width: 50px; - height: 50px; - overflow: scroll; -} -@media (min-width: 768px) { - .modal-dialog { - width: 600px; - margin: 30px auto; - } - .modal-content { - -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); - box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); - } - .modal-sm { - width: 300px; - } -} -@media (min-width: 992px) { - .modal-lg { - width: 900px; - } -} -.tooltip { - position: absolute; - z-index: 10000; - display: block; - visibility: visible; - font-size: 11px; - line-height: 1.4; - opacity: 0; - filter: alpha(opacity=0); -} -.tooltip.in { - opacity: 0.9; - filter: alpha(opacity=90); -} -.tooltip.top { - margin-top: -3px; - padding: 5px 0; -} -.tooltip.right { - margin-left: 3px; - padding: 0 5px; -} -.tooltip.bottom { - margin-top: 3px; - padding: 5px 0; -} -.tooltip.left { - margin-left: -3px; - padding: 0 5px; -} -.tooltip-inner { - max-width: 200px; - padding: 3px 8px; - color: #ffffff; - text-align: center; - text-decoration: none; - background-color: #000000; - border-radius: 3px; -} -.tooltip-arrow { - position: absolute; - width: 0; - height: 0; - border-color: transparent; - border-style: solid; -} -.tooltip.top .tooltip-arrow { - bottom: 0; - left: 50%; - margin-left: -5px; - border-width: 5px 5px 0; - border-top-color: #000000; -} -.tooltip.top-left .tooltip-arrow { - bottom: 0; - left: 5px; - border-width: 5px 5px 0; - border-top-color: #000000; -} -.tooltip.top-right .tooltip-arrow { - bottom: 0; - right: 5px; - border-width: 5px 5px 0; - border-top-color: #000000; -} -.tooltip.right .tooltip-arrow { - top: 50%; - left: 0; - margin-top: -5px; - border-width: 5px 5px 5px 0; - border-right-color: #000000; -} -.tooltip.left .tooltip-arrow { - top: 50%; - right: 0; - margin-top: -5px; - border-width: 5px 0 5px 5px; - border-left-color: #000000; -} -.tooltip.bottom .tooltip-arrow { - top: 0; - left: 50%; - margin-left: -5px; - border-width: 0 5px 5px; - border-bottom-color: #000000; -} -.tooltip.bottom-left .tooltip-arrow { - top: 0; - left: 5px; - border-width: 0 5px 5px; - border-bottom-color: #000000; -} -.tooltip.bottom-right .tooltip-arrow { - top: 0; - right: 5px; - border-width: 0 5px 5px; - border-bottom-color: #000000; -} -.popover { - position: absolute; - top: 0; - left: 0; - z-index: 1060; - display: none; - max-width: 276px; - padding: 1px; - text-align: left; - background-color: #ffffff; - background-clip: padding-box; - border: 1px solid #cccccc; - border: 1px solid rgba(0, 0, 0, 0.1); - border-radius: 4px; - -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); - box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); - white-space: normal; -} -.popover.top { - margin-top: -10px; -} -.popover.right { - margin-left: 10px; -} -.popover.bottom { - margin-top: 10px; -} -.popover.left { - margin-left: -10px; -} -.popover-title { - margin: 0; - padding: 8px 14px; - font-size: 13px; - font-weight: normal; - line-height: 18px; - background-color: #f7f7f7; - border-bottom: 1px solid #ebebeb; - border-radius: 3px 3px 0 0; -} -.popover-content { - padding: 9px 14px; -} -.popover > .arrow, -.popover > .arrow:after { - position: absolute; - display: block; - width: 0; - height: 0; - border-color: transparent; - border-style: solid; -} -.popover > .arrow { - border-width: 11px; -} -.popover > .arrow:after { - border-width: 10px; - content: ""; -} -.popover.top > .arrow { - left: 50%; - margin-left: -11px; - border-bottom-width: 0; - border-top-color: #999999; - border-top-color: rgba(0, 0, 0, 0.15); - bottom: -11px; -} -.popover.top > .arrow:after { - content: " "; - bottom: 1px; - margin-left: -10px; - border-bottom-width: 0; - border-top-color: #ffffff; -} -.popover.right > .arrow { - top: 50%; - left: -11px; - margin-top: -11px; - border-left-width: 0; - border-right-color: #999999; - border-right-color: rgba(0, 0, 0, 0.15); -} -.popover.right > .arrow:after { - content: " "; - left: 1px; - bottom: -10px; - border-left-width: 0; - border-right-color: #ffffff; -} -.popover.bottom > .arrow { - left: 50%; - margin-left: -11px; - border-top-width: 0; - border-bottom-color: #999999; - border-bottom-color: rgba(0, 0, 0, 0.15); - top: -11px; -} -.popover.bottom > .arrow:after { - content: " "; - top: 1px; - margin-left: -10px; - border-top-width: 0; - border-bottom-color: #ffffff; -} -.popover.left > .arrow { - top: 50%; - right: -11px; - margin-top: -11px; - border-right-width: 0; - border-left-color: #999999; - border-left-color: rgba(0, 0, 0, 0.15); -} -.popover.left > .arrow:after { - content: " "; - right: 1px; - border-right-width: 0; - border-left-color: #ffffff; - bottom: -10px; -} -.carousel { - position: relative; -} -.carousel-inner { - position: relative; - overflow: hidden; - width: 100%; -} -.carousel-inner > .item { - display: none; - position: relative; - -webkit-transition: 0.6s ease-in-out left; - -moz-transition: 0.6s ease-in-out left; - -ms-transition: 0.6s ease-in-out left; - -o-transition: 0.6s ease-in-out left; - transition: 0.6s ease-in-out left; -} -.carousel-inner > .item > img, -.carousel-inner > .item > a > img { - line-height: 1; -} -.carousel-inner > .active, -.carousel-inner > .next, -.carousel-inner > .prev { - display: block; -} -.carousel-inner > .active { - left: 0; -} -.carousel-inner > .next, -.carousel-inner > .prev { - position: absolute; - top: 0; - width: 100%; -} -.carousel-inner > .next { - left: 100%; -} -.carousel-inner > .prev { - left: -100%; -} -.carousel-inner > .next.left, -.carousel-inner > .prev.right { - left: 0; -} -.carousel-inner > .active.left { - left: -100%; -} -.carousel-inner > .active.right { - left: 100%; -} -.carousel-control { - position: absolute; - top: 0; - left: 0; - bottom: 0; - width: 15%; - opacity: 0.5; - filter: alpha(opacity=50); - font-size: 20px; - color: #ffffff; - text-align: center; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); -} -.carousel-control.left { - background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); - background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); - background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); -} -.carousel-control.right { - left: auto; - right: 0; - background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); - background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); - background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); -} -.carousel-control:hover, -.carousel-control:focus { - outline: 0; - color: #ffffff; - text-decoration: none; - opacity: 0.9; - filter: alpha(opacity=90); -} -.carousel-control .icon-prev, -.carousel-control .icon-next, -.carousel-control .glyphicon-chevron-left, -.carousel-control .glyphicon-chevron-right { - position: absolute; - top: 50%; - z-index: 5; - display: inline-block; -} -.carousel-control .icon-prev, -.carousel-control .glyphicon-chevron-left { - left: 50%; - margin-left: -10px; -} -.carousel-control .icon-next, -.carousel-control .glyphicon-chevron-right { - right: 50%; - margin-right: -10px; -} -.carousel-control .icon-prev, -.carousel-control .icon-next { - width: 20px; - height: 20px; - margin-top: -10px; - font-family: serif; -} -.carousel-control .icon-prev:before { - content: '\2039'; -} -.carousel-control .icon-next:before { - content: '\203a'; -} -.carousel-indicators { - position: absolute; - bottom: 10px; - left: 50%; - z-index: 15; - width: 60%; - margin-left: -30%; - padding-left: 0; - list-style: none; - text-align: center; -} -.carousel-indicators li { - display: inline-block; - width: 10px; - height: 10px; - margin: 1px; - text-indent: -999px; - border: 1px solid #ffffff; - border-radius: 10px; - cursor: pointer; - background-color: #000 \9; - background-color: rgba(0, 0, 0, 0); -} -.carousel-indicators .active { - margin: 0; - width: 12px; - height: 12px; - background-color: #ffffff; -} -.carousel-caption { - position: absolute; - left: 15%; - right: 15%; - bottom: 20px; - z-index: 10; - padding-top: 20px; - padding-bottom: 20px; - color: #ffffff; - text-align: center; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); -} -.carousel-caption .btn { - text-shadow: none; -} -@media screen and (min-width: 768px) { - .carousel-control .glyphicon-chevron-left, - .carousel-control .glyphicon-chevron-right, - .carousel-control .icon-prev, - .carousel-control .icon-next { - width: 30px; - height: 30px; - margin-top: -15px; - font-size: 30px; - } - .carousel-control .glyphicon-chevron-left, - .carousel-control .icon-prev { - margin-left: -15px; - } - .carousel-control .glyphicon-chevron-right, - .carousel-control .icon-next { - margin-right: -15px; - } - .carousel-caption { - left: 20%; - right: 20%; - padding-bottom: 30px; - } - .carousel-indicators { - bottom: 20px; - } -} -.clearfix:before, -.clearfix:after, -.dl-horizontal dd:before, -.dl-horizontal dd:after, -.container:before, -.container:after, -.container-fluid:before, -.container-fluid:after, -.row:before, -.row:after, -.form-horizontal .form-group:before, -.form-horizontal .form-group:after, -.btn-toolbar:before, -.btn-toolbar:after, -.btn-group-vertical > .btn-group:before, -.btn-group-vertical > .btn-group:after, -.nav:before, -.nav:after, -.navbar:before, -.navbar:after, -.navbar-header:before, -.navbar-header:after, -.navbar-collapse:before, -.navbar-collapse:after, -.pager:before, -.pager:after, -.panel-body:before, -.panel-body:after, -.modal-footer:before, -.modal-footer:after { - content: " "; - display: table; -} -.clearfix:after, -.dl-horizontal dd:after, -.container:after, -.container-fluid:after, -.row:after, -.form-horizontal .form-group:after, -.btn-toolbar:after, -.btn-group-vertical > .btn-group:after, -.nav:after, -.navbar:after, -.navbar-header:after, -.navbar-collapse:after, -.pager:after, -.panel-body:after, -.modal-footer:after { - clear: both; -} -.center-block { - display: block; - margin-left: auto; - margin-right: auto; -} -.pull-right { - float: right !important; -} -.pull-left { - float: left !important; -} -.hide { - display: none !important; -} -.show { - display: block !important; -} -.invisible { - visibility: hidden; -} -.text-hide { - font: 0/0 a; - color: transparent; - text-shadow: none; - background-color: transparent; - border: 0; -} -.hidden { - display: none !important; - visibility: hidden !important; -} -.affix { - position: fixed; - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); -} -@-ms-viewport { - width: device-width; -} -.visible-xs, -.visible-sm, -.visible-md, -.visible-lg { - display: none !important; -} -.visible-xs-block, -.visible-xs-inline, -.visible-xs-inline-block, -.visible-sm-block, -.visible-sm-inline, -.visible-sm-inline-block, -.visible-md-block, -.visible-md-inline, -.visible-md-inline-block, -.visible-lg-block, -.visible-lg-inline, -.visible-lg-inline-block { - display: none !important; -} -@media (max-width: 767px) { - .visible-xs { - display: block !important; - } - table.visible-xs { - display: table; - } - tr.visible-xs { - display: table-row !important; - } - th.visible-xs, - td.visible-xs { - display: table-cell !important; - } -} -@media (max-width: 767px) { - .visible-xs-block { - display: block !important; - } -} -@media (max-width: 767px) { - .visible-xs-inline { - display: inline !important; - } -} -@media (max-width: 767px) { - .visible-xs-inline-block { - display: inline-block !important; - } -} -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm { - display: block !important; - } - table.visible-sm { - display: table; - } - tr.visible-sm { - display: table-row !important; - } - th.visible-sm, - td.visible-sm { - display: table-cell !important; - } -} -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm-block { - display: block !important; - } -} -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm-inline { - display: inline !important; - } -} -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm-inline-block { - display: inline-block !important; - } -} -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md { - display: block !important; - } - table.visible-md { - display: table; - } - tr.visible-md { - display: table-row !important; - } - th.visible-md, - td.visible-md { - display: table-cell !important; - } -} -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md-block { - display: block !important; - } -} -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md-inline { - display: inline !important; - } -} -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md-inline-block { - display: inline-block !important; - } -} -@media (min-width: 1200px) { - .visible-lg { - display: block !important; - } - table.visible-lg { - display: table; - } - tr.visible-lg { - display: table-row !important; - } - th.visible-lg, - td.visible-lg { - display: table-cell !important; - } -} -@media (min-width: 1200px) { - .visible-lg-block { - display: block !important; - } -} -@media (min-width: 1200px) { - .visible-lg-inline { - display: inline !important; - } -} -@media (min-width: 1200px) { - .visible-lg-inline-block { - display: inline-block !important; - } -} -@media (max-width: 767px) { - .hidden-xs { - display: none !important; - } -} -@media (min-width: 768px) and (max-width: 991px) { - .hidden-sm { - display: none !important; - } -} -@media (min-width: 992px) and (max-width: 1199px) { - .hidden-md { - display: none !important; - } -} -@media (min-width: 1200px) { - .hidden-lg { - display: none !important; - } -} -.visible-print { - display: none !important; -} -@media print { - .visible-print { - display: block !important; - } - table.visible-print { - display: table; - } - tr.visible-print { - display: table-row !important; - } - th.visible-print, - td.visible-print { - display: table-cell !important; - } -} -.visible-print-block { - display: none !important; -} -@media print { - .visible-print-block { - display: block !important; - } -} -.visible-print-inline { - display: none !important; -} -@media print { - .visible-print-inline { - display: inline !important; - } -} -.visible-print-inline-block { - display: none !important; -} -@media print { - .visible-print-inline-block { - display: inline-block !important; - } -} -@media print { - .hidden-print { - display: none !important; - } -} -/*! - * bootstrap-vertical-tabs - v1.1.0 - * https://dbtek.github.io/bootstrap-vertical-tabs - * 2014-06-06 - * Copyright (c) 2014 İsmail Demirbilek - * License: MIT - */ -.tabs-left, -.tabs-right { - border-bottom: none; - padding-top: 2px; - box-shadow: none; - -webkit-box-shadow: none; -} -.tabs-left { - border-right: 1px solid #ddd; - padding-right: 0 !important; -} -.tabs-right { - border-left: 1px solid #ddd; - padding-left: 0 !important; -} -.tabs-left > li, -.tabs-right > li { - float: none; - margin-bottom: 2px; -} -.tabs-left > li { - margin-right: -1px; -} -.tabs-right > li { - margin-left: -1px; -} -.tabs-left > li.active > a, -.tabs-left > li.active > a:hover, -.tabs-left > li.active > a:focus { - border-bottom-color: #ddd; - border-right-color: transparent; -} -.tabs-right > li.active > a, -.tabs-right > li.active > a:hover, -.tabs-right > li.active > a:focus { - border-bottom: 1px solid #ddd; - border-left-color: transparent; -} -.tabs-left > li > a { - border-radius: 4px 0 0 4px; - margin-right: 0; - display: block; -} -.tabs-right > li > a { - border-radius: 0 4px 4px 0; - margin-right: 0; -} -.vertical-text { - margin-top: 50px; - border: none; - position: relative; -} -.vertical-text > li { - height: 20px; - width: 120px; - margin-bottom: 100px; -} -.vertical-text > li > a { - border-bottom: 1px solid #ddd; - border-right-color: transparent; - text-align: center; - border-radius: 4px 4px 0px 0px; -} -.vertical-text > li.active > a, -.vertical-text > li.active > a:hover, -.vertical-text > li.active > a:focus { - border-bottom-color: transparent; - border-right-color: #ddd; - border-left-color: #ddd; -} -.vertical-text.tabs-left { - left: -50px; -} -.vertical-text.tabs-right { - right: -50px; -} -.vertical-text.tabs-right > li { - -webkit-transform: rotate(90deg); - -moz-transform: rotate(90deg); - -ms-transform: rotate(90deg); - -o-transform: rotate(90deg); - transform: rotate(90deg); -} -.vertical-text.tabs-left > li { - -webkit-transform: rotate(-90deg); - -moz-transform: rotate(-90deg); - -ms-transform: rotate(-90deg); - -o-transform: rotate(-90deg); - transform: rotate(-90deg); -} -/* distance between stacked modals*/ -/* The first modal translateZ value*/ -.container { - margin: 5em auto; -} -.modal.in { - -webkit-perspective: 2000px; - -moz-perspective: 2000px; - -ms-perspective: 2000px; - -o-perspective: 2000px; - perspective: 2000px; -} -.modal.in .modal-dialog.aside { - -webkit-transform: scale(0.8) rotateY(45deg) translateZ(-340px); - -ms-transform: scale(0.8) rotateY(45deg) translateZ(-340px); - -o-transform: scale(0.8) rotateY(45deg) translateZ(-340px); - transform: scale(0.8) rotateY(45deg) translateZ(-340px); - -webkit-transform-style: preserve-3d; - -ms-transform-style: preserve-3d; - -o-transform-style: preserve-3d; - transform-style: preserve-3d; -} -.modal.in .modal-dialog.aside.aside-1 { - -webkit-transform: scale(0.8) rotateY(45deg) translateZ(calc(-300px)); - -ms-transform: scale(0.8) rotateY(45deg) translateZ(calc(-300px)); - -o-transform: scale(0.8) rotateY(45deg) translateZ(calc(-300px)); - transform: scale(0.8) rotateY(45deg) translateZ(calc(-300px)); -} -.modal.in .modal-dialog.aside.aside-2 { - -webkit-transform: scale(0.8) rotateY(45deg) translateZ(calc(-260px)); - -ms-transform: scale(0.8) rotateY(45deg) translateZ(calc(-260px)); - -o-transform: scale(0.8) rotateY(45deg) translateZ(calc(-260px)); - transform: scale(0.8) rotateY(45deg) translateZ(calc(-260px)); -} -.modal.in .modal-dialog.aside.aside-3 { - -webkit-transform: scale(0.8) rotateY(45deg) translateZ(calc(-220px)); - -ms-transform: scale(0.8) rotateY(45deg) translateZ(calc(-220px)); - -o-transform: scale(0.8) rotateY(45deg) translateZ(calc(-220px)); - transform: scale(0.8) rotateY(45deg) translateZ(calc(-220px)); -} -.modal.in .modal-dialog.aside.aside-4 { - -webkit-transform: scale(0.8) rotateY(45deg) translateZ(calc(-180px)); - -ms-transform: scale(0.8) rotateY(45deg) translateZ(calc(-180px)); - -o-transform: scale(0.8) rotateY(45deg) translateZ(calc(-180px)); - transform: scale(0.8) rotateY(45deg) translateZ(calc(-180px)); -} -.modal.in .modal-dialog.aside.aside-5 { - -webkit-transform: scale(0.8) rotateY(45deg) translateZ(calc(-140px)); - -ms-transform: scale(0.8) rotateY(45deg) translateZ(calc(-140px)); - -o-transform: scale(0.8) rotateY(45deg) translateZ(calc(-140px)); - transform: scale(0.8) rotateY(45deg) translateZ(calc(-140px)); -} -/*! - * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome - * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) - */ -/* FONT PATH - * -------------------------- */ -@font-face { - font-family: 'FontAwesome'; - src: url('font-awesome/fonts/fontawesome-webfont.eot?v=4.7.0'); - src: url('font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('font-awesome/fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'), url('font-awesome/fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('font-awesome/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg'); - font-weight: normal; - font-style: normal; -} -.fa { - display: inline-block; - font: normal normal normal 14px/1 FontAwesome; - font-size: inherit; - text-rendering: auto; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} -/* makes the font 33% larger relative to the icon container */ -.fa-lg { - font-size: 1.33333333em; - line-height: 0.75em; - vertical-align: -15%; -} -.fa-2x { - font-size: 2em; -} -.fa-3x { - font-size: 3em; -} -.fa-4x { - font-size: 4em; -} -.fa-5x { - font-size: 5em; -} -.fa-fw { - width: 1.28571429em; - text-align: center; -} -.fa-ul { - padding-left: 0; - margin-left: 2.14285714em; - list-style-type: none; -} -.fa-ul > li { - position: relative; -} -.fa-li { - position: absolute; - left: -2.14285714em; - width: 2.14285714em; - top: 0.14285714em; - text-align: center; -} -.fa-li.fa-lg { - left: -1.85714286em; -} -.fa-border { - padding: .2em .25em .15em; - border: solid 0.08em #eeeeee; - border-radius: .1em; -} -.fa-pull-left { - float: left; -} -.fa-pull-right { - float: right; -} -.fa.fa-pull-left { - margin-right: .3em; -} -.fa.fa-pull-right { - margin-left: .3em; -} -/* Deprecated as of 4.4.0 */ -.pull-right { - float: right; -} -.pull-left { - float: left; -} -.fa.pull-left { - margin-right: .3em; -} -.fa.pull-right { - margin-left: .3em; -} -.fa-spin { - -webkit-animation: fa-spin 2s infinite linear; - animation: fa-spin 2s infinite linear; -} -.fa-pulse { - -webkit-animation: fa-spin 1s infinite steps(8); - animation: fa-spin 1s infinite steps(8); -} -@-webkit-keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(359deg); - transform: rotate(359deg); - } -} -@keyframes fa-spin { - 0% { - -webkit-transform: rotate(0deg); - transform: rotate(0deg); - } - 100% { - -webkit-transform: rotate(359deg); - transform: rotate(359deg); - } -} -.fa-rotate-90 { - -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"; - -webkit-transform: rotate(90deg); - -ms-transform: rotate(90deg); - transform: rotate(90deg); -} -.fa-rotate-180 { - -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"; - -webkit-transform: rotate(180deg); - -ms-transform: rotate(180deg); - transform: rotate(180deg); -} -.fa-rotate-270 { - -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)"; - -webkit-transform: rotate(270deg); - -ms-transform: rotate(270deg); - transform: rotate(270deg); -} -.fa-flip-horizontal { - -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)"; - -webkit-transform: scale(-1, 1); - -ms-transform: scale(-1, 1); - transform: scale(-1, 1); -} -.fa-flip-vertical { - -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; - -webkit-transform: scale(1, -1); - -ms-transform: scale(1, -1); - transform: scale(1, -1); -} -:root .fa-rotate-90, -:root .fa-rotate-180, -:root .fa-rotate-270, -:root .fa-flip-horizontal, -:root .fa-flip-vertical { - filter: none; -} -.fa-stack { - position: relative; - display: inline-block; - width: 2em; - height: 2em; - line-height: 2em; - vertical-align: middle; -} -.fa-stack-1x, -.fa-stack-2x { - position: absolute; - left: 0; - width: 100%; - text-align: center; -} -.fa-stack-1x { - line-height: inherit; -} -.fa-stack-2x { - font-size: 2em; -} -.fa-inverse { - color: #ffffff; -} -/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen - readers do not read off random characters that represent icons */ -.fa-glass:before { - content: "\f000"; -} -.fa-music:before { - content: "\f001"; -} -.fa-search:before { - content: "\f002"; -} -.fa-envelope-o:before { - content: "\f003"; -} -.fa-heart:before { - content: "\f004"; -} -.fa-star:before { - content: "\f005"; -} -.fa-star-o:before { - content: "\f006"; -} -.fa-user:before { - content: "\f007"; -} -.fa-film:before { - content: "\f008"; -} -.fa-th-large:before { - content: "\f009"; -} -.fa-th:before { - content: "\f00a"; -} -.fa-th-list:before { - content: "\f00b"; -} -.fa-check:before { - content: "\f00c"; -} -.fa-remove:before, -.fa-close:before, -.fa-times:before { - content: "\f00d"; -} -.fa-search-plus:before { - content: "\f00e"; -} -.fa-search-minus:before { - content: "\f010"; -} -.fa-power-off:before { - content: "\f011"; -} -.fa-signal:before { - content: "\f012"; -} -.fa-gear:before, -.fa-cog:before { - content: "\f013"; -} -.fa-trash-o:before { - content: "\f014"; -} -.fa-home:before { - content: "\f015"; -} -.fa-file-o:before { - content: "\f016"; -} -.fa-clock-o:before { - content: "\f017"; -} -.fa-road:before { - content: "\f018"; -} -.fa-download:before { - content: "\f019"; -} -.fa-arrow-circle-o-down:before { - content: "\f01a"; -} -.fa-arrow-circle-o-up:before { - content: "\f01b"; -} -.fa-inbox:before { - content: "\f01c"; -} -.fa-play-circle-o:before { - content: "\f01d"; -} -.fa-rotate-right:before, -.fa-repeat:before { - content: "\f01e"; -} -.fa-refresh:before { - content: "\f021"; -} -.fa-list-alt:before { - content: "\f022"; -} -.fa-lock:before { - content: "\f023"; -} -.fa-flag:before { - content: "\f024"; -} -.fa-headphones:before { - content: "\f025"; -} -.fa-volume-off:before { - content: "\f026"; -} -.fa-volume-down:before { - content: "\f027"; -} -.fa-volume-up:before { - content: "\f028"; -} -.fa-qrcode:before { - content: "\f029"; -} -.fa-barcode:before { - content: "\f02a"; -} -.fa-tag:before { - content: "\f02b"; -} -.fa-tags:before { - content: "\f02c"; -} -.fa-book:before { - content: "\f02d"; -} -.fa-bookmark:before { - content: "\f02e"; -} -.fa-print:before { - content: "\f02f"; -} -.fa-camera:before { - content: "\f030"; -} -.fa-font:before { - content: "\f031"; -} -.fa-bold:before { - content: "\f032"; -} -.fa-italic:before { - content: "\f033"; -} -.fa-text-height:before { - content: "\f034"; -} -.fa-text-width:before { - content: "\f035"; -} -.fa-align-left:before { - content: "\f036"; -} -.fa-align-center:before { - content: "\f037"; -} -.fa-align-right:before { - content: "\f038"; -} -.fa-align-justify:before { - content: "\f039"; -} -.fa-list:before { - content: "\f03a"; -} -.fa-dedent:before, -.fa-outdent:before { - content: "\f03b"; -} -.fa-indent:before { - content: "\f03c"; -} -.fa-video-camera:before { - content: "\f03d"; -} -.fa-photo:before, -.fa-image:before, -.fa-picture-o:before { - content: "\f03e"; -} -.fa-pencil:before { - content: "\f040"; -} -.fa-map-marker:before { - content: "\f041"; -} -.fa-adjust:before { - content: "\f042"; -} -.fa-tint:before { - content: "\f043"; -} -.fa-edit:before, -.fa-pencil-square-o:before { - content: "\f044"; -} -.fa-share-square-o:before { - content: "\f045"; -} -.fa-check-square-o:before { - content: "\f046"; -} -.fa-arrows:before { - content: "\f047"; -} -.fa-step-backward:before { - content: "\f048"; -} -.fa-fast-backward:before { - content: "\f049"; -} -.fa-backward:before { - content: "\f04a"; -} -.fa-play:before { - content: "\f04b"; -} -.fa-pause:before { - content: "\f04c"; -} -.fa-stop:before { - content: "\f04d"; -} -.fa-forward:before { - content: "\f04e"; -} -.fa-fast-forward:before { - content: "\f050"; -} -.fa-step-forward:before { - content: "\f051"; -} -.fa-eject:before { - content: "\f052"; -} -.fa-chevron-left:before { - content: "\f053"; -} -.fa-chevron-right:before { - content: "\f054"; -} -.fa-plus-circle:before { - content: "\f055"; -} -.fa-minus-circle:before { - content: "\f056"; -} -.fa-times-circle:before { - content: "\f057"; -} -.fa-check-circle:before { - content: "\f058"; -} -.fa-question-circle:before { - content: "\f059"; -} -.fa-info-circle:before { - content: "\f05a"; -} -.fa-crosshairs:before { - content: "\f05b"; -} -.fa-times-circle-o:before { - content: "\f05c"; -} -.fa-check-circle-o:before { - content: "\f05d"; -} -.fa-ban:before { - content: "\f05e"; -} -.fa-arrow-left:before { - content: "\f060"; -} -.fa-arrow-right:before { - content: "\f061"; -} -.fa-arrow-up:before { - content: "\f062"; -} -.fa-arrow-down:before { - content: "\f063"; -} -.fa-mail-forward:before, -.fa-share:before { - content: "\f064"; -} -.fa-expand:before { - content: "\f065"; -} -.fa-compress:before { - content: "\f066"; -} -.fa-plus:before { - content: "\f067"; -} -.fa-minus:before { - content: "\f068"; -} -.fa-asterisk:before { - content: "\f069"; -} -.fa-exclamation-circle:before { - content: "\f06a"; -} -.fa-gift:before { - content: "\f06b"; -} -.fa-leaf:before { - content: "\f06c"; -} -.fa-fire:before { - content: "\f06d"; -} -.fa-eye:before { - content: "\f06e"; -} -.fa-eye-slash:before { - content: "\f070"; -} -.fa-warning:before, -.fa-exclamation-triangle:before { - content: "\f071"; -} -.fa-plane:before { - content: "\f072"; -} -.fa-calendar:before { - content: "\f073"; -} -.fa-random:before { - content: "\f074"; -} -.fa-comment:before { - content: "\f075"; -} -.fa-magnet:before { - content: "\f076"; -} -.fa-chevron-up:before { - content: "\f077"; -} -.fa-chevron-down:before { - content: "\f078"; -} -.fa-retweet:before { - content: "\f079"; -} -.fa-shopping-cart:before { - content: "\f07a"; -} -.fa-folder:before { - content: "\f07b"; -} -.fa-folder-open:before { - content: "\f07c"; -} -.fa-arrows-v:before { - content: "\f07d"; -} -.fa-arrows-h:before { - content: "\f07e"; -} -.fa-bar-chart-o:before, -.fa-bar-chart:before { - content: "\f080"; -} -.fa-twitter-square:before { - content: "\f081"; -} -.fa-facebook-square:before { - content: "\f082"; -} -.fa-camera-retro:before { - content: "\f083"; -} -.fa-key:before { - content: "\f084"; -} -.fa-gears:before, -.fa-cogs:before { - content: "\f085"; -} -.fa-comments:before { - content: "\f086"; -} -.fa-thumbs-o-up:before { - content: "\f087"; -} -.fa-thumbs-o-down:before { - content: "\f088"; -} -.fa-star-half:before { - content: "\f089"; -} -.fa-heart-o:before { - content: "\f08a"; -} -.fa-sign-out:before { - content: "\f08b"; -} -.fa-linkedin-square:before { - content: "\f08c"; -} -.fa-thumb-tack:before { - content: "\f08d"; -} -.fa-external-link:before { - content: "\f08e"; -} -.fa-sign-in:before { - content: "\f090"; -} -.fa-trophy:before { - content: "\f091"; -} -.fa-github-square:before { - content: "\f092"; -} -.fa-upload:before { - content: "\f093"; -} -.fa-lemon-o:before { - content: "\f094"; -} -.fa-phone:before { - content: "\f095"; -} -.fa-square-o:before { - content: "\f096"; -} -.fa-bookmark-o:before { - content: "\f097"; -} -.fa-phone-square:before { - content: "\f098"; -} -.fa-twitter:before { - content: "\f099"; -} -.fa-facebook-f:before, -.fa-facebook:before { - content: "\f09a"; -} -.fa-github:before { - content: "\f09b"; -} -.fa-unlock:before { - content: "\f09c"; -} -.fa-credit-card:before { - content: "\f09d"; -} -.fa-feed:before, -.fa-rss:before { - content: "\f09e"; -} -.fa-hdd-o:before { - content: "\f0a0"; -} -.fa-bullhorn:before { - content: "\f0a1"; -} -.fa-bell:before { - content: "\f0f3"; -} -.fa-certificate:before { - content: "\f0a3"; -} -.fa-hand-o-right:before { - content: "\f0a4"; -} -.fa-hand-o-left:before { - content: "\f0a5"; -} -.fa-hand-o-up:before { - content: "\f0a6"; -} -.fa-hand-o-down:before { - content: "\f0a7"; -} -.fa-arrow-circle-left:before { - content: "\f0a8"; -} -.fa-arrow-circle-right:before { - content: "\f0a9"; -} -.fa-arrow-circle-up:before { - content: "\f0aa"; -} -.fa-arrow-circle-down:before { - content: "\f0ab"; -} -.fa-globe:before { - content: "\f0ac"; -} -.fa-wrench:before { - content: "\f0ad"; -} -.fa-tasks:before { - content: "\f0ae"; -} -.fa-filter:before { - content: "\f0b0"; -} -.fa-briefcase:before { - content: "\f0b1"; -} -.fa-arrows-alt:before { - content: "\f0b2"; -} -.fa-group:before, -.fa-users:before { - content: "\f0c0"; -} -.fa-chain:before, -.fa-link:before { - content: "\f0c1"; -} -.fa-cloud:before { - content: "\f0c2"; -} -.fa-flask:before { - content: "\f0c3"; -} -.fa-cut:before, -.fa-scissors:before { - content: "\f0c4"; -} -.fa-copy:before, -.fa-files-o:before { - content: "\f0c5"; -} -.fa-paperclip:before { - content: "\f0c6"; -} -.fa-save:before, -.fa-floppy-o:before { - content: "\f0c7"; -} -.fa-square:before { - content: "\f0c8"; -} -.fa-navicon:before, -.fa-reorder:before, -.fa-bars:before { - content: "\f0c9"; -} -.fa-list-ul:before { - content: "\f0ca"; -} -.fa-list-ol:before { - content: "\f0cb"; -} -.fa-strikethrough:before { - content: "\f0cc"; -} -.fa-underline:before { - content: "\f0cd"; -} -.fa-table:before { - content: "\f0ce"; -} -.fa-magic:before { - content: "\f0d0"; -} -.fa-truck:before { - content: "\f0d1"; -} -.fa-pinterest:before { - content: "\f0d2"; -} -.fa-pinterest-square:before { - content: "\f0d3"; -} -.fa-google-plus-square:before { - content: "\f0d4"; -} -.fa-google-plus:before { - content: "\f0d5"; -} -.fa-money:before { - content: "\f0d6"; -} -.fa-caret-down:before { - content: "\f0d7"; -} -.fa-caret-up:before { - content: "\f0d8"; -} -.fa-caret-left:before { - content: "\f0d9"; -} -.fa-caret-right:before { - content: "\f0da"; -} -.fa-columns:before { - content: "\f0db"; -} -.fa-unsorted:before, -.fa-sort:before { - content: "\f0dc"; -} -.fa-sort-down:before, -.fa-sort-desc:before { - content: "\f0dd"; -} -.fa-sort-up:before, -.fa-sort-asc:before { - content: "\f0de"; -} -.fa-envelope:before { - content: "\f0e0"; -} -.fa-linkedin:before { - content: "\f0e1"; -} -.fa-rotate-left:before, -.fa-undo:before { - content: "\f0e2"; -} -.fa-legal:before, -.fa-gavel:before { - content: "\f0e3"; -} -.fa-dashboard:before, -.fa-tachometer:before { - content: "\f0e4"; -} -.fa-comment-o:before { - content: "\f0e5"; -} -.fa-comments-o:before { - content: "\f0e6"; -} -.fa-flash:before, -.fa-bolt:before { - content: "\f0e7"; -} -.fa-sitemap:before { - content: "\f0e8"; -} -.fa-umbrella:before { - content: "\f0e9"; -} -.fa-paste:before, -.fa-clipboard:before { - content: "\f0ea"; -} -.fa-lightbulb-o:before { - content: "\f0eb"; -} -.fa-exchange:before { - content: "\f0ec"; -} -.fa-cloud-download:before { - content: "\f0ed"; -} -.fa-cloud-upload:before { - content: "\f0ee"; -} -.fa-user-md:before { - content: "\f0f0"; -} -.fa-stethoscope:before { - content: "\f0f1"; -} -.fa-suitcase:before { - content: "\f0f2"; -} -.fa-bell-o:before { - content: "\f0a2"; -} -.fa-coffee:before { - content: "\f0f4"; -} -.fa-cutlery:before { - content: "\f0f5"; -} -.fa-file-text-o:before { - content: "\f0f6"; -} -.fa-building-o:before { - content: "\f0f7"; -} -.fa-hospital-o:before { - content: "\f0f8"; -} -.fa-ambulance:before { - content: "\f0f9"; -} -.fa-medkit:before { - content: "\f0fa"; -} -.fa-fighter-jet:before { - content: "\f0fb"; -} -.fa-beer:before { - content: "\f0fc"; -} -.fa-h-square:before { - content: "\f0fd"; -} -.fa-plus-square:before { - content: "\f0fe"; -} -.fa-angle-double-left:before { - content: "\f100"; -} -.fa-angle-double-right:before { - content: "\f101"; -} -.fa-angle-double-up:before { - content: "\f102"; -} -.fa-angle-double-down:before { - content: "\f103"; -} -.fa-angle-left:before { - content: "\f104"; -} -.fa-angle-right:before { - content: "\f105"; -} -.fa-angle-up:before { - content: "\f106"; -} -.fa-angle-down:before { - content: "\f107"; -} -.fa-desktop:before { - content: "\f108"; -} -.fa-laptop:before { - content: "\f109"; -} -.fa-tablet:before { - content: "\f10a"; -} -.fa-mobile-phone:before, -.fa-mobile:before { - content: "\f10b"; -} -.fa-circle-o:before { - content: "\f10c"; -} -.fa-quote-left:before { - content: "\f10d"; -} -.fa-quote-right:before { - content: "\f10e"; -} -.fa-spinner:before { - content: "\f110"; -} -.fa-circle:before { - content: "\f111"; -} -.fa-mail-reply:before, -.fa-reply:before { - content: "\f112"; -} -.fa-github-alt:before { - content: "\f113"; -} -.fa-folder-o:before { - content: "\f114"; -} -.fa-folder-open-o:before { - content: "\f115"; -} -.fa-smile-o:before { - content: "\f118"; -} -.fa-frown-o:before { - content: "\f119"; -} -.fa-meh-o:before { - content: "\f11a"; -} -.fa-gamepad:before { - content: "\f11b"; -} -.fa-keyboard-o:before { - content: "\f11c"; -} -.fa-flag-o:before { - content: "\f11d"; -} -.fa-flag-checkered:before { - content: "\f11e"; -} -.fa-terminal:before { - content: "\f120"; -} -.fa-code:before { - content: "\f121"; -} -.fa-mail-reply-all:before, -.fa-reply-all:before { - content: "\f122"; -} -.fa-star-half-empty:before, -.fa-star-half-full:before, -.fa-star-half-o:before { - content: "\f123"; -} -.fa-location-arrow:before { - content: "\f124"; -} -.fa-crop:before { - content: "\f125"; -} -.fa-code-fork:before { - content: "\f126"; -} -.fa-unlink:before, -.fa-chain-broken:before { - content: "\f127"; -} -.fa-question:before { - content: "\f128"; -} -.fa-info:before { - content: "\f129"; -} -.fa-exclamation:before { - content: "\f12a"; -} -.fa-superscript:before { - content: "\f12b"; -} -.fa-subscript:before { - content: "\f12c"; -} -.fa-eraser:before { - content: "\f12d"; -} -.fa-puzzle-piece:before { - content: "\f12e"; -} -.fa-microphone:before { - content: "\f130"; -} -.fa-microphone-slash:before { - content: "\f131"; -} -.fa-shield:before { - content: "\f132"; -} -.fa-calendar-o:before { - content: "\f133"; -} -.fa-fire-extinguisher:before { - content: "\f134"; -} -.fa-rocket:before { - content: "\f135"; -} -.fa-maxcdn:before { - content: "\f136"; -} -.fa-chevron-circle-left:before { - content: "\f137"; -} -.fa-chevron-circle-right:before { - content: "\f138"; -} -.fa-chevron-circle-up:before { - content: "\f139"; -} -.fa-chevron-circle-down:before { - content: "\f13a"; -} -.fa-html5:before { - content: "\f13b"; -} -.fa-css3:before { - content: "\f13c"; -} -.fa-anchor:before { - content: "\f13d"; -} -.fa-unlock-alt:before { - content: "\f13e"; -} -.fa-bullseye:before { - content: "\f140"; -} -.fa-ellipsis-h:before { - content: "\f141"; -} -.fa-ellipsis-v:before { - content: "\f142"; -} -.fa-rss-square:before { - content: "\f143"; -} -.fa-play-circle:before { - content: "\f144"; -} -.fa-ticket:before { - content: "\f145"; -} -.fa-minus-square:before { - content: "\f146"; -} -.fa-minus-square-o:before { - content: "\f147"; -} -.fa-level-up:before { - content: "\f148"; -} -.fa-level-down:before { - content: "\f149"; -} -.fa-check-square:before { - content: "\f14a"; -} -.fa-pencil-square:before { - content: "\f14b"; -} -.fa-external-link-square:before { - content: "\f14c"; -} -.fa-share-square:before { - content: "\f14d"; -} -.fa-compass:before { - content: "\f14e"; -} -.fa-toggle-down:before, -.fa-caret-square-o-down:before { - content: "\f150"; -} -.fa-toggle-up:before, -.fa-caret-square-o-up:before { - content: "\f151"; -} -.fa-toggle-right:before, -.fa-caret-square-o-right:before { - content: "\f152"; -} -.fa-euro:before, -.fa-eur:before { - content: "\f153"; -} -.fa-gbp:before { - content: "\f154"; -} -.fa-dollar:before, -.fa-usd:before { - content: "\f155"; -} -.fa-rupee:before, -.fa-inr:before { - content: "\f156"; -} -.fa-cny:before, -.fa-rmb:before, -.fa-yen:before, -.fa-jpy:before { - content: "\f157"; -} -.fa-ruble:before, -.fa-rouble:before, -.fa-rub:before { - content: "\f158"; -} -.fa-won:before, -.fa-krw:before { - content: "\f159"; -} -.fa-bitcoin:before, -.fa-btc:before { - content: "\f15a"; -} -.fa-file:before { - content: "\f15b"; -} -.fa-file-text:before { - content: "\f15c"; -} -.fa-sort-alpha-asc:before { - content: "\f15d"; -} -.fa-sort-alpha-desc:before { - content: "\f15e"; -} -.fa-sort-amount-asc:before { - content: "\f160"; -} -.fa-sort-amount-desc:before { - content: "\f161"; -} -.fa-sort-numeric-asc:before { - content: "\f162"; -} -.fa-sort-numeric-desc:before { - content: "\f163"; -} -.fa-thumbs-up:before { - content: "\f164"; -} -.fa-thumbs-down:before { - content: "\f165"; -} -.fa-youtube-square:before { - content: "\f166"; -} -.fa-youtube:before { - content: "\f167"; -} -.fa-xing:before { - content: "\f168"; -} -.fa-xing-square:before { - content: "\f169"; -} -.fa-youtube-play:before { - content: "\f16a"; -} -.fa-dropbox:before { - content: "\f16b"; -} -.fa-stack-overflow:before { - content: "\f16c"; -} -.fa-instagram:before { - content: "\f16d"; -} -.fa-flickr:before { - content: "\f16e"; -} -.fa-adn:before { - content: "\f170"; -} -.fa-bitbucket:before { - content: "\f171"; -} -.fa-bitbucket-square:before { - content: "\f172"; -} -.fa-tumblr:before { - content: "\f173"; -} -.fa-tumblr-square:before { - content: "\f174"; -} -.fa-long-arrow-down:before { - content: "\f175"; -} -.fa-long-arrow-up:before { - content: "\f176"; -} -.fa-long-arrow-left:before { - content: "\f177"; -} -.fa-long-arrow-right:before { - content: "\f178"; -} -.fa-apple:before { - content: "\f179"; -} -.fa-windows:before { - content: "\f17a"; -} -.fa-android:before { - content: "\f17b"; -} -.fa-linux:before { - content: "\f17c"; -} -.fa-dribbble:before { - content: "\f17d"; -} -.fa-skype:before { - content: "\f17e"; -} -.fa-foursquare:before { - content: "\f180"; -} -.fa-trello:before { - content: "\f181"; -} -.fa-female:before { - content: "\f182"; -} -.fa-male:before { - content: "\f183"; -} -.fa-gittip:before, -.fa-gratipay:before { - content: "\f184"; -} -.fa-sun-o:before { - content: "\f185"; -} -.fa-moon-o:before { - content: "\f186"; -} -.fa-archive:before { - content: "\f187"; -} -.fa-bug:before { - content: "\f188"; -} -.fa-vk:before { - content: "\f189"; -} -.fa-weibo:before { - content: "\f18a"; -} -.fa-renren:before { - content: "\f18b"; -} -.fa-pagelines:before { - content: "\f18c"; -} -.fa-stack-exchange:before { - content: "\f18d"; -} -.fa-arrow-circle-o-right:before { - content: "\f18e"; -} -.fa-arrow-circle-o-left:before { - content: "\f190"; -} -.fa-toggle-left:before, -.fa-caret-square-o-left:before { - content: "\f191"; -} -.fa-dot-circle-o:before { - content: "\f192"; -} -.fa-wheelchair:before { - content: "\f193"; -} -.fa-vimeo-square:before { - content: "\f194"; -} -.fa-turkish-lira:before, -.fa-try:before { - content: "\f195"; -} -.fa-plus-square-o:before { - content: "\f196"; -} -.fa-space-shuttle:before { - content: "\f197"; -} -.fa-slack:before { - content: "\f198"; -} -.fa-envelope-square:before { - content: "\f199"; -} -.fa-wordpress:before { - content: "\f19a"; -} -.fa-openid:before { - content: "\f19b"; -} -.fa-institution:before, -.fa-bank:before, -.fa-university:before { - content: "\f19c"; -} -.fa-mortar-board:before, -.fa-graduation-cap:before { - content: "\f19d"; -} -.fa-yahoo:before { - content: "\f19e"; -} -.fa-google:before { - content: "\f1a0"; -} -.fa-reddit:before { - content: "\f1a1"; -} -.fa-reddit-square:before { - content: "\f1a2"; -} -.fa-stumbleupon-circle:before { - content: "\f1a3"; -} -.fa-stumbleupon:before { - content: "\f1a4"; -} -.fa-delicious:before { - content: "\f1a5"; -} -.fa-digg:before { - content: "\f1a6"; -} -.fa-pied-piper-pp:before { - content: "\f1a7"; -} -.fa-pied-piper-alt:before { - content: "\f1a8"; -} -.fa-drupal:before { - content: "\f1a9"; -} -.fa-joomla:before { - content: "\f1aa"; -} -.fa-language:before { - content: "\f1ab"; -} -.fa-fax:before { - content: "\f1ac"; -} -.fa-building:before { - content: "\f1ad"; -} -.fa-child:before { - content: "\f1ae"; -} -.fa-paw:before { - content: "\f1b0"; -} -.fa-spoon:before { - content: "\f1b1"; -} -.fa-cube:before { - content: "\f1b2"; -} -.fa-cubes:before { - content: "\f1b3"; -} -.fa-behance:before { - content: "\f1b4"; -} -.fa-behance-square:before { - content: "\f1b5"; -} -.fa-steam:before { - content: "\f1b6"; -} -.fa-steam-square:before { - content: "\f1b7"; -} -.fa-recycle:before { - content: "\f1b8"; -} -.fa-automobile:before, -.fa-car:before { - content: "\f1b9"; -} -.fa-cab:before, -.fa-taxi:before { - content: "\f1ba"; -} -.fa-tree:before { - content: "\f1bb"; -} -.fa-spotify:before { - content: "\f1bc"; -} -.fa-deviantart:before { - content: "\f1bd"; -} -.fa-soundcloud:before { - content: "\f1be"; -} -.fa-database:before { - content: "\f1c0"; -} -.fa-file-pdf-o:before { - content: "\f1c1"; -} -.fa-file-word-o:before { - content: "\f1c2"; -} -.fa-file-excel-o:before { - content: "\f1c3"; -} -.fa-file-powerpoint-o:before { - content: "\f1c4"; -} -.fa-file-photo-o:before, -.fa-file-picture-o:before, -.fa-file-image-o:before { - content: "\f1c5"; -} -.fa-file-zip-o:before, -.fa-file-archive-o:before { - content: "\f1c6"; -} -.fa-file-sound-o:before, -.fa-file-audio-o:before { - content: "\f1c7"; -} -.fa-file-movie-o:before, -.fa-file-video-o:before { - content: "\f1c8"; -} -.fa-file-code-o:before { - content: "\f1c9"; -} -.fa-vine:before { - content: "\f1ca"; -} -.fa-codepen:before { - content: "\f1cb"; -} -.fa-jsfiddle:before { - content: "\f1cc"; -} -.fa-life-bouy:before, -.fa-life-buoy:before, -.fa-life-saver:before, -.fa-support:before, -.fa-life-ring:before { - content: "\f1cd"; -} -.fa-circle-o-notch:before { - content: "\f1ce"; -} -.fa-ra:before, -.fa-resistance:before, -.fa-rebel:before { - content: "\f1d0"; -} -.fa-ge:before, -.fa-empire:before { - content: "\f1d1"; -} -.fa-git-square:before { - content: "\f1d2"; -} -.fa-git:before { - content: "\f1d3"; -} -.fa-y-combinator-square:before, -.fa-yc-square:before, -.fa-hacker-news:before { - content: "\f1d4"; -} -.fa-tencent-weibo:before { - content: "\f1d5"; -} -.fa-qq:before { - content: "\f1d6"; -} -.fa-wechat:before, -.fa-weixin:before { - content: "\f1d7"; -} -.fa-send:before, -.fa-paper-plane:before { - content: "\f1d8"; -} -.fa-send-o:before, -.fa-paper-plane-o:before { - content: "\f1d9"; -} -.fa-history:before { - content: "\f1da"; -} -.fa-circle-thin:before { - content: "\f1db"; -} -.fa-header:before { - content: "\f1dc"; -} -.fa-paragraph:before { - content: "\f1dd"; -} -.fa-sliders:before { - content: "\f1de"; -} -.fa-share-alt:before { - content: "\f1e0"; -} -.fa-share-alt-square:before { - content: "\f1e1"; -} -.fa-bomb:before { - content: "\f1e2"; -} -.fa-soccer-ball-o:before, -.fa-futbol-o:before { - content: "\f1e3"; -} -.fa-tty:before { - content: "\f1e4"; -} -.fa-binoculars:before { - content: "\f1e5"; -} -.fa-plug:before { - content: "\f1e6"; -} -.fa-slideshare:before { - content: "\f1e7"; -} -.fa-twitch:before { - content: "\f1e8"; -} -.fa-yelp:before { - content: "\f1e9"; -} -.fa-newspaper-o:before { - content: "\f1ea"; -} -.fa-wifi:before { - content: "\f1eb"; -} -.fa-calculator:before { - content: "\f1ec"; -} -.fa-paypal:before { - content: "\f1ed"; -} -.fa-google-wallet:before { - content: "\f1ee"; -} -.fa-cc-visa:before { - content: "\f1f0"; -} -.fa-cc-mastercard:before { - content: "\f1f1"; -} -.fa-cc-discover:before { - content: "\f1f2"; -} -.fa-cc-amex:before { - content: "\f1f3"; -} -.fa-cc-paypal:before { - content: "\f1f4"; -} -.fa-cc-stripe:before { - content: "\f1f5"; -} -.fa-bell-slash:before { - content: "\f1f6"; -} -.fa-bell-slash-o:before { - content: "\f1f7"; -} -.fa-trash:before { - content: "\f1f8"; -} -.fa-copyright:before { - content: "\f1f9"; -} -.fa-at:before { - content: "\f1fa"; -} -.fa-eyedropper:before { - content: "\f1fb"; -} -.fa-paint-brush:before { - content: "\f1fc"; -} -.fa-birthday-cake:before { - content: "\f1fd"; -} -.fa-area-chart:before { - content: "\f1fe"; -} -.fa-pie-chart:before { - content: "\f200"; -} -.fa-line-chart:before { - content: "\f201"; -} -.fa-lastfm:before { - content: "\f202"; -} -.fa-lastfm-square:before { - content: "\f203"; -} -.fa-toggle-off:before { - content: "\f204"; -} -.fa-toggle-on:before { - content: "\f205"; -} -.fa-bicycle:before { - content: "\f206"; -} -.fa-bus:before { - content: "\f207"; -} -.fa-ioxhost:before { - content: "\f208"; -} -.fa-angellist:before { - content: "\f209"; -} -.fa-cc:before { - content: "\f20a"; -} -.fa-shekel:before, -.fa-sheqel:before, -.fa-ils:before { - content: "\f20b"; -} -.fa-meanpath:before { - content: "\f20c"; -} -.fa-buysellads:before { - content: "\f20d"; -} -.fa-connectdevelop:before { - content: "\f20e"; -} -.fa-dashcube:before { - content: "\f210"; -} -.fa-forumbee:before { - content: "\f211"; -} -.fa-leanpub:before { - content: "\f212"; -} -.fa-sellsy:before { - content: "\f213"; -} -.fa-shirtsinbulk:before { - content: "\f214"; -} -.fa-simplybuilt:before { - content: "\f215"; -} -.fa-skyatlas:before { - content: "\f216"; -} -.fa-cart-plus:before { - content: "\f217"; -} -.fa-cart-arrow-down:before { - content: "\f218"; -} -.fa-diamond:before { - content: "\f219"; -} -.fa-ship:before { - content: "\f21a"; -} -.fa-user-secret:before { - content: "\f21b"; -} -.fa-motorcycle:before { - content: "\f21c"; -} -.fa-street-view:before { - content: "\f21d"; -} -.fa-heartbeat:before { - content: "\f21e"; -} -.fa-venus:before { - content: "\f221"; -} -.fa-mars:before { - content: "\f222"; -} -.fa-mercury:before { - content: "\f223"; -} -.fa-intersex:before, -.fa-transgender:before { - content: "\f224"; -} -.fa-transgender-alt:before { - content: "\f225"; -} -.fa-venus-double:before { - content: "\f226"; -} -.fa-mars-double:before { - content: "\f227"; -} -.fa-venus-mars:before { - content: "\f228"; -} -.fa-mars-stroke:before { - content: "\f229"; -} -.fa-mars-stroke-v:before { - content: "\f22a"; -} -.fa-mars-stroke-h:before { - content: "\f22b"; -} -.fa-neuter:before { - content: "\f22c"; -} -.fa-genderless:before { - content: "\f22d"; -} -.fa-facebook-official:before { - content: "\f230"; -} -.fa-pinterest-p:before { - content: "\f231"; -} -.fa-whatsapp:before { - content: "\f232"; -} -.fa-server:before { - content: "\f233"; -} -.fa-user-plus:before { - content: "\f234"; -} -.fa-user-times:before { - content: "\f235"; -} -.fa-hotel:before, -.fa-bed:before { - content: "\f236"; -} -.fa-viacoin:before { - content: "\f237"; -} -.fa-train:before { - content: "\f238"; -} -.fa-subway:before { - content: "\f239"; -} -.fa-medium:before { - content: "\f23a"; -} -.fa-yc:before, -.fa-y-combinator:before { - content: "\f23b"; -} -.fa-optin-monster:before { - content: "\f23c"; -} -.fa-opencart:before { - content: "\f23d"; -} -.fa-expeditedssl:before { - content: "\f23e"; -} -.fa-battery-4:before, -.fa-battery:before, -.fa-battery-full:before { - content: "\f240"; -} -.fa-battery-3:before, -.fa-battery-three-quarters:before { - content: "\f241"; -} -.fa-battery-2:before, -.fa-battery-half:before { - content: "\f242"; -} -.fa-battery-1:before, -.fa-battery-quarter:before { - content: "\f243"; -} -.fa-battery-0:before, -.fa-battery-empty:before { - content: "\f244"; -} -.fa-mouse-pointer:before { - content: "\f245"; -} -.fa-i-cursor:before { - content: "\f246"; -} -.fa-object-group:before { - content: "\f247"; -} -.fa-object-ungroup:before { - content: "\f248"; -} -.fa-sticky-note:before { - content: "\f249"; -} -.fa-sticky-note-o:before { - content: "\f24a"; -} -.fa-cc-jcb:before { - content: "\f24b"; -} -.fa-cc-diners-club:before { - content: "\f24c"; -} -.fa-clone:before { - content: "\f24d"; -} -.fa-balance-scale:before { - content: "\f24e"; -} -.fa-hourglass-o:before { - content: "\f250"; -} -.fa-hourglass-1:before, -.fa-hourglass-start:before { - content: "\f251"; -} -.fa-hourglass-2:before, -.fa-hourglass-half:before { - content: "\f252"; -} -.fa-hourglass-3:before, -.fa-hourglass-end:before { - content: "\f253"; -} -.fa-hourglass:before { - content: "\f254"; -} -.fa-hand-grab-o:before, -.fa-hand-rock-o:before { - content: "\f255"; -} -.fa-hand-stop-o:before, -.fa-hand-paper-o:before { - content: "\f256"; -} -.fa-hand-scissors-o:before { - content: "\f257"; -} -.fa-hand-lizard-o:before { - content: "\f258"; -} -.fa-hand-spock-o:before { - content: "\f259"; -} -.fa-hand-pointer-o:before { - content: "\f25a"; -} -.fa-hand-peace-o:before { - content: "\f25b"; -} -.fa-trademark:before { - content: "\f25c"; -} -.fa-registered:before { - content: "\f25d"; -} -.fa-creative-commons:before { - content: "\f25e"; -} -.fa-gg:before { - content: "\f260"; -} -.fa-gg-circle:before { - content: "\f261"; -} -.fa-tripadvisor:before { - content: "\f262"; -} -.fa-odnoklassniki:before { - content: "\f263"; -} -.fa-odnoklassniki-square:before { - content: "\f264"; -} -.fa-get-pocket:before { - content: "\f265"; -} -.fa-wikipedia-w:before { - content: "\f266"; -} -.fa-safari:before { - content: "\f267"; -} -.fa-chrome:before { - content: "\f268"; -} -.fa-firefox:before { - content: "\f269"; -} -.fa-opera:before { - content: "\f26a"; -} -.fa-internet-explorer:before { - content: "\f26b"; -} -.fa-tv:before, -.fa-television:before { - content: "\f26c"; -} -.fa-contao:before { - content: "\f26d"; -} -.fa-500px:before { - content: "\f26e"; -} -.fa-amazon:before { - content: "\f270"; -} -.fa-calendar-plus-o:before { - content: "\f271"; -} -.fa-calendar-minus-o:before { - content: "\f272"; -} -.fa-calendar-times-o:before { - content: "\f273"; -} -.fa-calendar-check-o:before { - content: "\f274"; -} -.fa-industry:before { - content: "\f275"; -} -.fa-map-pin:before { - content: "\f276"; -} -.fa-map-signs:before { - content: "\f277"; -} -.fa-map-o:before { - content: "\f278"; -} -.fa-map:before { - content: "\f279"; -} -.fa-commenting:before { - content: "\f27a"; -} -.fa-commenting-o:before { - content: "\f27b"; -} -.fa-houzz:before { - content: "\f27c"; -} -.fa-vimeo:before { - content: "\f27d"; -} -.fa-black-tie:before { - content: "\f27e"; -} -.fa-fonticons:before { - content: "\f280"; -} -.fa-reddit-alien:before { - content: "\f281"; -} -.fa-edge:before { - content: "\f282"; -} -.fa-credit-card-alt:before { - content: "\f283"; -} -.fa-codiepie:before { - content: "\f284"; -} -.fa-modx:before { - content: "\f285"; -} -.fa-fort-awesome:before { - content: "\f286"; -} -.fa-usb:before { - content: "\f287"; -} -.fa-product-hunt:before { - content: "\f288"; -} -.fa-mixcloud:before { - content: "\f289"; -} -.fa-scribd:before { - content: "\f28a"; -} -.fa-pause-circle:before { - content: "\f28b"; -} -.fa-pause-circle-o:before { - content: "\f28c"; -} -.fa-stop-circle:before { - content: "\f28d"; -} -.fa-stop-circle-o:before { - content: "\f28e"; -} -.fa-shopping-bag:before { - content: "\f290"; -} -.fa-shopping-basket:before { - content: "\f291"; -} -.fa-hashtag:before { - content: "\f292"; -} -.fa-bluetooth:before { - content: "\f293"; -} -.fa-bluetooth-b:before { - content: "\f294"; -} -.fa-percent:before { - content: "\f295"; -} -.fa-gitlab:before { - content: "\f296"; -} -.fa-wpbeginner:before { - content: "\f297"; -} -.fa-wpforms:before { - content: "\f298"; -} -.fa-envira:before { - content: "\f299"; -} -.fa-universal-access:before { - content: "\f29a"; -} -.fa-wheelchair-alt:before { - content: "\f29b"; -} -.fa-question-circle-o:before { - content: "\f29c"; -} -.fa-blind:before { - content: "\f29d"; -} -.fa-audio-description:before { - content: "\f29e"; -} -.fa-volume-control-phone:before { - content: "\f2a0"; -} -.fa-braille:before { - content: "\f2a1"; -} -.fa-assistive-listening-systems:before { - content: "\f2a2"; -} -.fa-asl-interpreting:before, -.fa-american-sign-language-interpreting:before { - content: "\f2a3"; -} -.fa-deafness:before, -.fa-hard-of-hearing:before, -.fa-deaf:before { - content: "\f2a4"; -} -.fa-glide:before { - content: "\f2a5"; -} -.fa-glide-g:before { - content: "\f2a6"; -} -.fa-signing:before, -.fa-sign-language:before { - content: "\f2a7"; -} -.fa-low-vision:before { - content: "\f2a8"; -} -.fa-viadeo:before { - content: "\f2a9"; -} -.fa-viadeo-square:before { - content: "\f2aa"; -} -.fa-snapchat:before { - content: "\f2ab"; -} -.fa-snapchat-ghost:before { - content: "\f2ac"; -} -.fa-snapchat-square:before { - content: "\f2ad"; -} -.fa-pied-piper:before { - content: "\f2ae"; -} -.fa-first-order:before { - content: "\f2b0"; -} -.fa-yoast:before { - content: "\f2b1"; -} -.fa-themeisle:before { - content: "\f2b2"; -} -.fa-google-plus-circle:before, -.fa-google-plus-official:before { - content: "\f2b3"; -} -.fa-fa:before, -.fa-font-awesome:before { - content: "\f2b4"; -} -.fa-handshake-o:before { - content: "\f2b5"; -} -.fa-envelope-open:before { - content: "\f2b6"; -} -.fa-envelope-open-o:before { - content: "\f2b7"; -} -.fa-linode:before { - content: "\f2b8"; -} -.fa-address-book:before { - content: "\f2b9"; -} -.fa-address-book-o:before { - content: "\f2ba"; -} -.fa-vcard:before, -.fa-address-card:before { - content: "\f2bb"; -} -.fa-vcard-o:before, -.fa-address-card-o:before { - content: "\f2bc"; -} -.fa-user-circle:before { - content: "\f2bd"; -} -.fa-user-circle-o:before { - content: "\f2be"; -} -.fa-user-o:before { - content: "\f2c0"; -} -.fa-id-badge:before { - content: "\f2c1"; -} -.fa-drivers-license:before, -.fa-id-card:before { - content: "\f2c2"; -} -.fa-drivers-license-o:before, -.fa-id-card-o:before { - content: "\f2c3"; -} -.fa-quora:before { - content: "\f2c4"; -} -.fa-free-code-camp:before { - content: "\f2c5"; -} -.fa-telegram:before { - content: "\f2c6"; -} -.fa-thermometer-4:before, -.fa-thermometer:before, -.fa-thermometer-full:before { - content: "\f2c7"; -} -.fa-thermometer-3:before, -.fa-thermometer-three-quarters:before { - content: "\f2c8"; -} -.fa-thermometer-2:before, -.fa-thermometer-half:before { - content: "\f2c9"; -} -.fa-thermometer-1:before, -.fa-thermometer-quarter:before { - content: "\f2ca"; -} -.fa-thermometer-0:before, -.fa-thermometer-empty:before { - content: "\f2cb"; -} -.fa-shower:before { - content: "\f2cc"; -} -.fa-bathtub:before, -.fa-s15:before, -.fa-bath:before { - content: "\f2cd"; -} -.fa-podcast:before { - content: "\f2ce"; -} -.fa-window-maximize:before { - content: "\f2d0"; -} -.fa-window-minimize:before { - content: "\f2d1"; -} -.fa-window-restore:before { - content: "\f2d2"; -} -.fa-times-rectangle:before, -.fa-window-close:before { - content: "\f2d3"; -} -.fa-times-rectangle-o:before, -.fa-window-close-o:before { - content: "\f2d4"; -} -.fa-bandcamp:before { - content: "\f2d5"; -} -.fa-grav:before { - content: "\f2d6"; -} -.fa-etsy:before { - content: "\f2d7"; -} -.fa-imdb:before { - content: "\f2d8"; -} -.fa-ravelry:before { - content: "\f2d9"; -} -.fa-eercast:before { - content: "\f2da"; -} -.fa-microchip:before { - content: "\f2db"; -} -.fa-snowflake-o:before { - content: "\f2dc"; -} -.fa-superpowers:before { - content: "\f2dd"; -} -.fa-wpexplorer:before { - content: "\f2de"; -} -.fa-meetup:before { - content: "\f2e0"; -} -.sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - border: 0; -} -.sr-only-focusable:active, -.sr-only-focusable:focus { - position: static; - width: auto; - height: auto; - margin: 0; - overflow: visible; - clip: auto; -} -.sr-only-focusable:active, -.sr-only-focusable:focus { - position: static; - width: auto; - height: auto; - margin: 0; - overflow: visible; - clip: auto; -} -.chosen-select { - width: 100%; -} -.chosen-select-deselect { - width: 100%; -} -.chosen-container { - display: inline-block; - font-size: 13px; - position: relative; - vertical-align: middle; -} -.chosen-container .group-name { - margin-right: 2px; -} -.chosen-container .chosen-drop { - background: #ffffff; - border: 1px solid #d5d5d5; - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; - -webkit-box-shadow: 0 8px 8px rgba(0, 0, 0, .25); - box-shadow: 0 8px 8px rgba(0, 0, 0, .25); - margin-top: -1px; - position: absolute; - top: 100%; - left: -9000px; - z-index: 1060; -} -.chosen-container.chosen-with-drop .chosen-drop { - left: 0; - right: 0; -} -.chosen-container .chosen-results { - color: #596776; - margin: 0 4px 4px 0; - max-height: 240px; - padding: 0 0 0 4px; - position: relative; - overflow-x: hidden; - overflow-y: auto; - -webkit-overflow-scrolling: touch; -} -.chosen-container .chosen-results li { - display: none; - line-height: 1.3856; - list-style: none; - margin: 0; - padding: 5px 6px; -} -.chosen-container .chosen-results li em { - background: #feffde; - font-style: normal; -} -.chosen-container .chosen-results li.group-result { - display: list-item; - cursor: default; - color: #999; - font-weight: bold; -} -.chosen-container .chosen-results li.group-option { - padding-left: 15px; -} -.chosen-container .chosen-results li.active-result { - cursor: pointer; - display: list-item; -} -.chosen-container .chosen-results li.highlighted { - background-color: {{mautic_primary}}; - background-image: none; - color: white; -} -.chosen-container .chosen-results li.highlighted em { - background: transparent; -} -.chosen-container .chosen-results li.disabled-result { - display: list-item; - color: #a0acb8; -} -.chosen-container .chosen-results .no-results { - background: #ebedf0; - display: list-item; -} -.chosen-container .chosen-results-scroll { - background: white; - margin: 0 4px; - position: absolute; - text-align: center; - width: 321px; - z-index: 1; -} -.chosen-container .chosen-results-scroll span { - display: inline-block; - height: 1.3856; - text-indent: -5000px; - width: 9px; -} -.chosen-container .chosen-results-scroll-down { - bottom: 0; -} -.chosen-container .chosen-results-scroll-down span { - background: url("chosen/chosen-sprite.png") no-repeat -4px -3px; -} -.chosen-container .chosen-results-scroll-up span { - background: url("chosen/chosen-sprite.png") no-repeat -22px -3px; -} -.chosen-container-single .chosen-single { - background-color: #ffffff; - -webkit-background-clip: padding-box; - -moz-background-clip: padding; - background-clip: padding-box; - border: 1px solid #d5d5d5; - border-top-right-radius: 3px; - border-top-left-radius: 3px; - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); - color: #596776; - display: block; - height: 32px; - overflow: hidden; - line-height: 32px; - padding: 0 0 0 8px; - position: relative; - text-decoration: none; - white-space: nowrap; -} -.chosen-container-single .chosen-single span { - display: block; - margin-right: 26px; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} -.chosen-container-single .chosen-single abbr { - background: url("chosen/chosen-sprite.png") right top no-repeat; - display: block; - font-size: 1px; - height: 10px; - position: absolute; - right: 26px; - top: 11px; - width: 12px; -} -.chosen-container-single .chosen-single abbr:hover { - background-position: right -11px; -} -.chosen-container-single .chosen-single.chosen-disabled .chosen-single abbr:hover { - background-position: right 2px; -} -.chosen-container-single .chosen-single div { - display: block; - height: 100%; - position: absolute; - top: 0; - right: 0; - width: 18px; -} -.chosen-container-single .chosen-single div b { - background: url("chosen/chosen-sprite.png") no-repeat 0 7px; - display: block; - height: 100%; - width: 100%; -} -.chosen-container-single .chosen-search { - margin: 0; - padding: 3px 4px; - position: relative; - white-space: nowrap; - z-index: 1000; -} -.chosen-container-single .chosen-search input[type="text"] { - background: url("chosen/chosen-sprite.png") no-repeat 100% -20px, #ffffff; - border: 1px solid #d5d5d5; - border-top-right-radius: 3px; - border-top-left-radius: 3px; - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); - margin: 1px 0; - padding: 4px 20px 4px 4px; - width: 100%; -} -.chosen-container-single .chosen-drop { - margin-top: -1px; - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; - -webkit-background-clip: padding-box; - -moz-background-clip: padding; - background-clip: padding-box; -} -.chosen-container-single-nosearch .chosen-search input { - position: absolute; - left: -9000px; -} -.chosen-container-multi .chosen-choices { - background-color: #ffffff; - border: 1px solid #d5d5d5; - border-top-right-radius: 3px; - border-top-left-radius: 3px; - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); - cursor: text; - height: auto !important; - height: 1%; - margin: 0; - overflow: hidden; - padding: 0; - position: relative; -} -.chosen-container-multi .chosen-choices li { - float: left; - list-style: none; -} -.chosen-container-multi .chosen-choices .search-field { - margin: 0; - padding: 0; - white-space: nowrap; -} -.chosen-container-multi .chosen-choices .search-field input[type="text"] { - background: transparent !important; - border: 0 !important; - -webkit-box-shadow: none; - box-shadow: none; - color: #596776; - height: 30px; - margin: 0; - padding: 4px; - outline: 0; -} -.chosen-container-multi .chosen-choices .search-choice { - -webkit-background-clip: padding-box; - -moz-background-clip: padding; - background-clip: padding-box; - background-color: #ebedf0; - border: 1px solid #d5d5d5; - border-top-right-radius: 3px; - border-top-left-radius: 3px; - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); - color: #3c4650; - cursor: default; - line-height: 13px; - margin: 6px 0 3px 5px; - padding: 3px 20px 3px 5px; - position: relative; -} -.chosen-container-multi .chosen-choices .search-choice .search-choice-close { - background: url("chosen/chosen-sprite.png") right top no-repeat; - display: block; - font-size: 1px; - height: 10px; - position: absolute; - right: 4px; - top: 5px; - width: 12px; - cursor: pointer; -} -.chosen-container-multi .chosen-choices .search-choice .search-choice-close:hover { - background-position: right -11px; -} -.chosen-container-multi .chosen-choices .search-choice-focus { - background: #d4d4d4; -} -.chosen-container-multi .chosen-choices .search-choice-focus .search-choice-close { - background-position: right -11px; -} -.chosen-container-multi .chosen-results { - margin: 0 0 0 0; - padding: 0; -} -.chosen-container-multi .chosen-drop .result-selected { - display: none; -} -.chosen-container-active .chosen-single { - border: 1px solid #bcbcbc; - -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset, 0 0 8px rgba(82, 168, 236, .6); - box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset, 0 0 8px rgba(82, 168, 236, .6); - -webkit-transition: border linear .2s, box-shadow linear .2s; - -moz-transition: border linear .2s, box-shadow linear .2s; - -ms-transition: border linear .2s, box-shadow linear .2s; - -o-transition: border linear .2s, box-shadow linear .2s; - transition: border linear .2s, box-shadow linear .2s; -} -.chosen-container-active.chosen-with-drop .chosen-single { - background-color: #ffffff; - border: 1px solid #bcbcbc; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; - -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset, 0 0 8px rgba(82, 168, 236, .6); - box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset, 0 0 8px rgba(82, 168, 236, .6); - -webkit-transition: border linear .2s, box-shadow linear .2s; - -moz-transition: border linear .2s, box-shadow linear .2s; - -ms-transition: border linear .2s, box-shadow linear .2s; - -o-transition: border linear .2s, box-shadow linear .2s; - transition: border linear .2s, box-shadow linear .2s; -} -.chosen-container-active.chosen-with-drop .chosen-single div { - background: transparent; - border-left: none; -} -.chosen-container-active.chosen-with-drop .chosen-single div b { - background-position: -18px 7px; -} -.chosen-container-active .chosen-choices { - border: 1px solid #bcbcbc; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; - -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset, 0 0 8px rgba(82, 168, 236, .6); - box-shadow: 0 1px 1px rgba(0, 0, 0, .075) inset, 0 0 8px rgba(82, 168, 236, .6); - -webkit-transition: border linear .2s, box-shadow linear .2s; - -moz-transition: border linear .2s, box-shadow linear .2s; - -ms-transition: border linear .2s, box-shadow linear .2s; - -o-transition: border linear .2s, box-shadow linear .2s; - transition: border linear .2s, box-shadow linear .2s; -} -.chosen-container-active .chosen-choices .search-field input[type="text"] { - color: #111 !important; -} -.chosen-container-active.chosen-with-drop .chosen-choices { - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} -.chosen-disabled { - cursor: default; - opacity: 0.5 !important; -} -.chosen-disabled .chosen-single { - cursor: default; -} -.chosen-disabled .chosen-choices .search-choice .search-choice-close { - cursor: default; -} -.chosen-rtl { - text-align: right; -} -.chosen-rtl .chosen-single { - padding: 0 8px 0 0; - overflow: visible; -} -.chosen-rtl .chosen-single span { - margin-left: 26px; - margin-right: 0; - direction: rtl; -} -.chosen-rtl .chosen-single div { - left: 7px; - right: auto; -} -.chosen-rtl .chosen-single abbr { - left: 26px; - right: auto; -} -.chosen-rtl .chosen-choices .search-field input[type="text"] { - direction: rtl; -} -.chosen-rtl .chosen-choices li { - float: right; -} -.chosen-rtl .chosen-choices .search-choice { - margin: 6px 5px 3px 0; - padding: 3px 5px 3px 19px; -} -.chosen-rtl .chosen-choices .search-choice .search-choice-close { - background-position: right top; - left: 4px; - right: auto; -} -.chosen-rtl.chosen-container-single .chosen-results { - margin: 0 0 4px 4px; - padding: 0 4px 0 0; -} -.chosen-rtl .chosen-results .group-option { - padding-left: 0; - padding-right: 15px; -} -.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div { - border-right: none; -} -.chosen-rtl .chosen-search input[type="text"] { - background: url("chosen/chosen-sprite.png") no-repeat -28px -20px, #ffffff; - direction: rtl; - padding: 4px 5px 4px 20px; -} -.input-group .chosen-container:last-child .chosen-single, -.input-group .chosen-container:last-child .chosen-default, -.input-group .chosen-container:last-child .chosen-choices { - border-top-left-radius: 0px; - border-bottom-left-radius: 0px; -} -.input-group .chosen-container:not(:last-child) .chosen-single, -.input-group .chosen-container:not(:last-child) .chosen-default, -.input-group .chosen-container:not(:last-child) .chosen-choices { - border-top-right-radius: 0px; - border-bottom-right-radius: 0px; -} -.form-inline .chosen-container { - display: inline-table; - vertical-align: middle; - min-width: 200px; -} -.chosen-container .default, -.chosen-container .chosen-default { - color: #a0acb8 !important; -} -@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 2dppx) { - .chosen-rtl .chosen-search input[type="text"], - .chosen-container-single .chosen-single abbr, - .chosen-container-single .chosen-single div b, - .chosen-container-single .chosen-search input[type="text"], - .chosen-container-multi .chosen-choices .search-choice .search-choice-close, - .chosen-container .chosen-results-scroll-down span, - .chosen-container .chosen-results-scroll-up span { - background-image: url("chosen/chosen-sprite@2x.png") !important; - background-size: 52px 37px !important; - background-repeat: no-repeat !important; - } -} -.has-error select.form-control + .chosen-container.chosen-container-single .chosen-single, -.has-error select.form-control + .chosen-container-multi .chosen-choices { - border-color: #a94442; -} -.has-error select.form-control + .chosen-container.chosen-container-single .chosen-single, -.has-error select.form-control + .chosen-container-multi .chosen-choices { - border-color: #a94442; -} -.ms-container { - background: transparent url('multiselect/switch.png') no-repeat 50% 50%; - /*width: 370px;*/ -} -.ms-container:after { - content: "."; - display: block; - height: 0; - line-height: 0; - font-size: 0; - clear: both; - min-height: 0; - visibility: hidden; -} -.ms-container .ms-selectable, -.ms-container .ms-selection { - background: #fff; - color: #555555; - float: left; - width: 45%; -} -.ms-container .ms-selection { - float: right; -} -.ms-container .ms-list { - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - -webkit-transition: border linear 0.2s, box-shadow linear 0.2s; - -moz-transition: border linear 0.2s, box-shadow linear 0.2s; - -ms-transition: border linear 0.2s, box-shadow linear 0.2s; - -o-transition: border linear 0.2s, box-shadow linear 0.2s; - transition: border linear 0.2s, box-shadow linear 0.2s; - border: 1px solid #ccc; - -webkit-border-radius: 3px; - -moz-border-radius: 3px; - border-radius: 3px; - position: relative; - height: 200px; - padding: 0; - overflow-y: auto; - overflow-x: hidden; -} -.ms-container .ms-list.ms-focus { - border-color: #4e5e9e; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), rgba(78, 94, 158, 0.6); - -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(78, 94, 158, 0.6); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(78, 94, 158, 0.6); - outline: 0; - outline: thin dotted \9; -} -.ms-container ul { - margin: 0; - list-style-type: none; - padding: 0; -} -.ms-container .ms-optgroup-container { - width: 100%; -} -.ms-container .ms-optgroup-label { - margin: 0; - padding: 5px 0px 0px 5px; - cursor: pointer; - color: #999; -} -.ms-container .ms-selectable li.ms-elem-selectable, -.ms-container .ms-selection li.ms-elem-selection { - border-bottom: 1px #eee solid; - padding: 2px 10px; - color: #555; - font-size: 14px; -} -.ms-container .ms-selectable li.ms-hover, -.ms-container .ms-selection li.ms-hover { - cursor: pointer; - color: #fff; - text-decoration: none; - background-color: #4e5e9e; -} -.ms-container .ms-selectable li.disabled, -.ms-container .ms-selection li.disabled { - background-color: #eee; - color: #aaa; - cursor: text; -} -.ms-search { - width: 100%; - margin-bottom: 5px; - height: auto; -} -.minicolors { - position: relative; -} -.minicolors-sprite { - background-image: url(data:image/png;base64,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); -} -.minicolors-no-data-uris .minicolors-sprite { - background-image: url("minicolors/img/jquery.minicolors.png"); -} -.minicolors-swatch { - position: absolute; - vertical-align: middle; - background-position: -80px 0; - border: solid 1px #ccc; - cursor: text; - padding: 0; - margin: 0; - display: inline-block; -} -.minicolors-swatch-color { - position: absolute; - top: 0; - left: 0; - right: 0; - bottom: 0; -} -.minicolors input[type=hidden] + .minicolors-swatch { - width: 28px; - position: static; - cursor: pointer; -} -.minicolors input[type=hidden][disabled] + .minicolors-swatch { - cursor: default; -} -/* Panel */ -.minicolors-panel { - position: absolute; - width: 173px; - height: 152px; - background: white; - border: solid 1px #CCC; - box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); - z-index: 99999; - -moz-box-sizing: content-box; - -webkit-box-sizing: content-box; - box-sizing: content-box; - display: none; -} -.minicolors-panel.minicolors-visible { - display: block; -} -/* Panel positioning */ -.minicolors-position-top .minicolors-panel { - top: -154px; -} -.minicolors-position-right .minicolors-panel { - right: 0; -} -.minicolors-position-bottom .minicolors-panel { - top: auto; -} -.minicolors-position-left .minicolors-panel { - left: 0; -} -.minicolors-with-opacity .minicolors-panel { - width: 194px; -} -.minicolors .minicolors-grid { - position: absolute; - top: 1px; - left: 1px; - width: 150px; - height: 150px; - background-position: -120px 0; - cursor: crosshair; -} -.minicolors .minicolors-grid-inner { - position: absolute; - top: 0; - left: 0; - width: 150px; - height: 150px; -} -.minicolors-slider-saturation .minicolors-grid { - background-position: -420px 0; -} -.minicolors-slider-saturation .minicolors-grid-inner { - background-position: -270px 0; - background-image: inherit; -} -.minicolors-slider-brightness .minicolors-grid { - background-position: -570px 0; -} -.minicolors-slider-brightness .minicolors-grid-inner { - background-color: black; -} -.minicolors-slider-wheel .minicolors-grid { - background-position: -720px 0; -} -.minicolors-slider, -.minicolors-opacity-slider { - position: absolute; - top: 1px; - left: 152px; - width: 20px; - height: 150px; - background-color: white; - background-position: 0 0; - cursor: row-resize; -} -.minicolors-slider-saturation .minicolors-slider { - background-position: -60px 0; -} -.minicolors-slider-brightness .minicolors-slider { - background-position: -20px 0; -} -.minicolors-slider-wheel .minicolors-slider { - background-position: -20px 0; -} -.minicolors-opacity-slider { - left: 173px; - background-position: -40px 0; - display: none; -} -.minicolors-with-opacity .minicolors-opacity-slider { - display: block; -} -/* Pickers */ -.minicolors-grid .minicolors-picker { - position: absolute; - top: 70px; - left: 70px; - width: 12px; - height: 12px; - border: solid 1px black; - border-radius: 10px; - margin-top: -6px; - margin-left: -6px; - background: none; -} -.minicolors-grid .minicolors-picker > div { - position: absolute; - top: 0; - left: 0; - width: 8px; - height: 8px; - border-radius: 8px; - border: solid 2px white; - -moz-box-sizing: content-box; - -webkit-box-sizing: content-box; - box-sizing: content-box; -} -.minicolors-picker { - position: absolute; - top: 0; - left: 0; - width: 18px; - height: 2px; - background: white; - border: solid 1px black; - margin-top: -2px; - -moz-box-sizing: content-box; - -webkit-box-sizing: content-box; - box-sizing: content-box; -} -/* Inline controls */ -.minicolors-inline { - display: inline-block; -} -.minicolors-inline .minicolors-input { - display: none !important; -} -.minicolors-inline .minicolors-panel { - position: relative; - top: auto; - left: auto; - box-shadow: none; - z-index: auto; - display: inline-block; -} -/* Default theme */ -.minicolors-theme-default .minicolors-swatch { - top: 5px; - left: 5px; - width: 18px; - height: 18px; -} -.minicolors-theme-default.minicolors-position-right .minicolors-swatch { - left: auto; - right: 5px; -} -.minicolors-theme-default.minicolors { - width: auto; - display: inline-block; -} -.minicolors-theme-default .minicolors-input { - height: 20px; - width: auto; - display: inline-block; - padding-left: 26px; -} -.minicolors-theme-default.minicolors-position-right .minicolors-input { - padding-right: 26px; - padding-left: inherit; -} -/* Bootstrap theme */ -.minicolors-theme-bootstrap .minicolors-swatch { - z-index: 2; - top: 2px; - left: 3px; - width: 28px; - height: 28px; - border-radius: 3px; -} -.minicolors-theme-bootstrap .minicolors-swatch-color { - border-radius: inherit; -} -.minicolors-theme-bootstrap.minicolors-position-right .minicolors-swatch { - left: auto; - right: 3px; -} -.minicolors-theme-bootstrap .minicolors-input { - float: none; - padding-left: 44px; -} -.minicolors-theme-bootstrap.minicolors-position-right .minicolors-input { - padding-right: 44px; - padding-left: 12px; -} -.minicolors-theme-bootstrap .minicolors-input.input-lg + .minicolors-swatch { - top: 4px; - left: 4px; - width: 37px; - height: 37px; - border-radius: 5px; -} -.minicolors-theme-bootstrap .minicolors-input.input-sm + .minicolors-swatch { - width: 24px; - height: 24px; -} -.input-group .minicolors-theme-bootstrap:not(:first-child) .minicolors-input { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} -span.emoji-sizer { - line-height: 1.013em; - font-size: 1.375em; - margin: -0.05em 0; -} -span.emoji-outer { - display: -moz-inline-box; - display: inline-block; - *display: inline; - height: 1em; - width: 1em; -} -span.emoji-inner { - background: url(emoji/emoji.png); - /*background-size: 3500% !important; */ - display: -moz-inline-box; - display: inline-block; - text-indent: -9999px; - width: 100%; - height: 100%; - vertical-align: baseline; - *vertical-align: auto; - *zoom: 1; -} -span.emoji-inner { - background-size: 4100%; -} -.emojia9 { - background-position: 0% 0% !important; -} -.emojiae { - background-position: 0% 2.5% !important; -} -.emoji203c { - background-position: 0% 5% !important; -} -.emoji2049 { - background-position: 0% 7.5% !important; -} -.emoji2122 { - background-position: 0% 10% !important; -} -.emoji2139 { - background-position: 0% 12.5% !important; -} -.emoji2194 { - background-position: 0% 15% !important; -} -.emoji2195 { - background-position: 0% 17.5% !important; -} -.emoji2196 { - background-position: 0% 20% !important; -} -.emoji2197 { - background-position: 0% 22.5% !important; -} -.emoji2198 { - background-position: 0% 25% !important; -} -.emoji2199 { - background-position: 0% 27.5% !important; -} -.emoji21a9 { - background-position: 0% 30% !important; -} -.emoji21aa { - background-position: 0% 32.5% !important; -} -.emoji231a { - background-position: 0% 35% !important; -} -.emoji231b { - background-position: 0% 37.5% !important; -} -.emoji2328 { - background-position: 0% 40% !important; -} -.emoji23e9 { - background-position: 0% 42.5% !important; -} -.emoji23ea { - background-position: 0% 45% !important; -} -.emoji23eb { - background-position: 0% 47.5% !important; -} -.emoji23ec { - background-position: 0% 50% !important; -} -.emoji23ed { - background-position: 0% 52.5% !important; -} -.emoji23ee { - background-position: 0% 55% !important; -} -.emoji23ef { - background-position: 0% 57.5% !important; -} -.emoji23f0 { - background-position: 0% 60% !important; -} -.emoji23f1 { - background-position: 0% 62.5% !important; -} -.emoji23f2 { - background-position: 0% 65% !important; -} -.emoji23f3 { - background-position: 0% 67.5% !important; -} -.emoji23f8 { - background-position: 0% 70% !important; -} -.emoji23f9 { - background-position: 0% 72.5% !important; -} -.emoji23fa { - background-position: 0% 75% !important; -} -.emoji24c2 { - background-position: 0% 77.5% !important; -} -.emoji25aa { - background-position: 0% 80% !important; -} -.emoji25ab { - background-position: 0% 82.5% !important; -} -.emoji25b6 { - background-position: 0% 85% !important; -} -.emoji25c0 { - background-position: 0% 87.5% !important; -} -.emoji25fb { - background-position: 0% 90% !important; -} -.emoji25fc { - background-position: 0% 92.5% !important; -} -.emoji25fd { - background-position: 0% 95% !important; -} -.emoji25fe { - background-position: 0% 97.5% !important; -} -.emoji2600 { - background-position: 0% 100% !important; -} -.emoji2601 { - background-position: 2.5% 0% !important; -} -.emoji2602 { - background-position: 2.5% 2.5% !important; -} -.emoji2603 { - background-position: 2.5% 5% !important; -} -.emoji2604 { - background-position: 2.5% 7.5% !important; -} -.emoji260e { - background-position: 2.5% 10% !important; -} -.emoji2611 { - background-position: 2.5% 12.5% !important; -} -.emoji2614 { - background-position: 2.5% 15% !important; -} -.emoji2615 { - background-position: 2.5% 17.5% !important; -} -.emoji2618 { - background-position: 2.5% 20% !important; -} -.emoji261d { - background-position: 2.5% 22.5% !important; -} -.emoji2620 { - background-position: 2.5% 37.5% !important; -} -.emoji2622 { - background-position: 2.5% 40% !important; -} -.emoji2623 { - background-position: 2.5% 42.5% !important; -} -.emoji2626 { - background-position: 2.5% 45% !important; -} -.emoji262a { - background-position: 2.5% 47.5% !important; -} -.emoji262e { - background-position: 2.5% 50% !important; -} -.emoji262f { - background-position: 2.5% 52.5% !important; -} -.emoji2638 { - background-position: 2.5% 55% !important; -} -.emoji2639 { - background-position: 2.5% 57.5% !important; -} -.emoji263a { - background-position: 2.5% 60% !important; -} -.emoji2648 { - background-position: 2.5% 62.5% !important; -} -.emoji2649 { - background-position: 2.5% 65% !important; -} -.emoji264a { - background-position: 2.5% 67.5% !important; -} -.emoji264b { - background-position: 2.5% 70% !important; -} -.emoji264c { - background-position: 2.5% 72.5% !important; -} -.emoji264d { - background-position: 2.5% 75% !important; -} -.emoji264e { - background-position: 2.5% 77.5% !important; -} -.emoji264f { - background-position: 2.5% 80% !important; -} -.emoji2650 { - background-position: 2.5% 82.5% !important; -} -.emoji2651 { - background-position: 2.5% 85% !important; -} -.emoji2652 { - background-position: 2.5% 87.5% !important; -} -.emoji2653 { - background-position: 2.5% 90% !important; -} -.emoji2660 { - background-position: 2.5% 92.5% !important; -} -.emoji2663 { - background-position: 2.5% 95% !important; -} -.emoji2665 { - background-position: 2.5% 97.5% !important; -} -.emoji2666 { - background-position: 2.5% 100% !important; -} -.emoji2668 { - background-position: 5% 0% !important; -} -.emoji267b { - background-position: 5% 2.5% !important; -} -.emoji267f { - background-position: 5% 5% !important; -} -.emoji2692 { - background-position: 5% 7.5% !important; -} -.emoji2693 { - background-position: 5% 10% !important; -} -.emoji2694 { - background-position: 5% 12.5% !important; -} -.emoji2696 { - background-position: 5% 15% !important; -} -.emoji2697 { - background-position: 5% 17.5% !important; -} -.emoji2699 { - background-position: 5% 20% !important; -} -.emoji269b { - background-position: 5% 22.5% !important; -} -.emoji269c { - background-position: 5% 25% !important; -} -.emoji26a0 { - background-position: 5% 27.5% !important; -} -.emoji26a1 { - background-position: 5% 30% !important; -} -.emoji26aa { - background-position: 5% 32.5% !important; -} -.emoji26ab { - background-position: 5% 35% !important; -} -.emoji26b0 { - background-position: 5% 37.5% !important; -} -.emoji26b1 { - background-position: 5% 40% !important; -} -.emoji26bd { - background-position: 5% 42.5% !important; -} -.emoji26be { - background-position: 5% 45% !important; -} -.emoji26c4 { - background-position: 5% 47.5% !important; -} -.emoji26c5 { - background-position: 5% 50% !important; -} -.emoji26c8 { - background-position: 5% 52.5% !important; -} -.emoji26ce { - background-position: 5% 55% !important; -} -.emoji26cf { - background-position: 5% 57.5% !important; -} -.emoji26d1 { - background-position: 5% 60% !important; -} -.emoji26d3 { - background-position: 5% 62.5% !important; -} -.emoji26d4 { - background-position: 5% 65% !important; -} -.emoji26e9 { - background-position: 5% 67.5% !important; -} -.emoji26ea { - background-position: 5% 70% !important; -} -.emoji26f0 { - background-position: 5% 72.5% !important; -} -.emoji26f1 { - background-position: 5% 75% !important; -} -.emoji26f2 { - background-position: 5% 77.5% !important; -} -.emoji26f3 { - background-position: 5% 80% !important; -} -.emoji26f4 { - background-position: 5% 82.5% !important; -} -.emoji26f5 { - background-position: 5% 85% !important; -} -.emoji26f7 { - background-position: 5% 87.5% !important; -} -.emoji26f8 { - background-position: 5% 90% !important; -} -.emoji26f9 { - background-position: 5% 92.5% !important; -} -.emoji26fa { - background-position: 7.5% 5% !important; -} -.emoji26fd { - background-position: 7.5% 7.5% !important; -} -.emoji2702 { - background-position: 7.5% 10% !important; -} -.emoji2705 { - background-position: 7.5% 12.5% !important; -} -.emoji2708 { - background-position: 7.5% 15% !important; -} -.emoji2709 { - background-position: 7.5% 17.5% !important; -} -.emoji270a { - background-position: 7.5% 20% !important; -} -.emoji270b { - background-position: 7.5% 35% !important; -} -.emoji270c { - background-position: 7.5% 50% !important; -} -.emoji270d { - background-position: 7.5% 65% !important; -} -.emoji270f { - background-position: 7.5% 80% !important; -} -.emoji2712 { - background-position: 7.5% 82.5% !important; -} -.emoji2714 { - background-position: 7.5% 85% !important; -} -.emoji2716 { - background-position: 7.5% 87.5% !important; -} -.emoji271d { - background-position: 7.5% 90% !important; -} -.emoji2721 { - background-position: 7.5% 92.5% !important; -} -.emoji2728 { - background-position: 7.5% 95% !important; -} -.emoji2733 { - background-position: 7.5% 97.5% !important; -} -.emoji2734 { - background-position: 7.5% 100% !important; -} -.emoji2744 { - background-position: 10% 0% !important; -} -.emoji2747 { - background-position: 10% 2.5% !important; -} -.emoji274c { - background-position: 10% 5% !important; -} -.emoji274e { - background-position: 10% 7.5% !important; -} -.emoji2753 { - background-position: 10% 10% !important; -} -.emoji2754 { - background-position: 10% 12.5% !important; -} -.emoji2755 { - background-position: 10% 15% !important; -} -.emoji2757 { - background-position: 10% 17.5% !important; -} -.emoji2763 { - background-position: 10% 20% !important; -} -.emoji2764 { - background-position: 10% 22.5% !important; -} -.emoji2795 { - background-position: 10% 25% !important; -} -.emoji2796 { - background-position: 10% 27.5% !important; -} -.emoji2797 { - background-position: 10% 30% !important; -} -.emoji27a1 { - background-position: 10% 32.5% !important; -} -.emoji27b0 { - background-position: 10% 35% !important; -} -.emoji27bf { - background-position: 10% 37.5% !important; -} -.emoji2934 { - background-position: 10% 40% !important; -} -.emoji2935 { - background-position: 10% 42.5% !important; -} -.emoji2b05 { - background-position: 10% 45% !important; -} -.emoji2b06 { - background-position: 10% 47.5% !important; -} -.emoji2b07 { - background-position: 10% 50% !important; -} -.emoji2b1b { - background-position: 10% 52.5% !important; -} -.emoji2b1c { - background-position: 10% 55% !important; -} -.emoji2b50 { - background-position: 10% 57.5% !important; -} -.emoji2b55 { - background-position: 10% 60% !important; -} -.emoji3030 { - background-position: 10% 62.5% !important; -} -.emoji303d { - background-position: 10% 65% !important; -} -.emoji3297 { - background-position: 10% 67.5% !important; -} -.emoji3299 { - background-position: 10% 70% !important; -} -.emoji1f004 { - background-position: 10% 72.5% !important; -} -.emoji1f0cf { - background-position: 10% 75% !important; -} -.emoji1f170 { - background-position: 10% 77.5% !important; -} -.emoji1f171 { - background-position: 10% 80% !important; -} -.emoji1f17e { - background-position: 10% 82.5% !important; -} -.emoji1f17f { - background-position: 10% 85% !important; -} -.emoji1f18e { - background-position: 10% 87.5% !important; -} -.emoji1f191 { - background-position: 10% 90% !important; -} -.emoji1f192 { - background-position: 10% 92.5% !important; -} -.emoji1f193 { - background-position: 10% 95% !important; -} -.emoji1f194 { - background-position: 10% 97.5% !important; -} -.emoji1f195 { - background-position: 10% 100% !important; -} -.emoji1f196 { - background-position: 12.5% 0% !important; -} -.emoji1f197 { - background-position: 12.5% 2.5% !important; -} -.emoji1f198 { - background-position: 12.5% 5% !important; -} -.emoji1f199 { - background-position: 12.5% 7.5% !important; -} -.emoji1f19a { - background-position: 12.5% 10% !important; -} -.emoji1f201 { - background-position: 12.5% 12.5% !important; -} -.emoji1f202 { - background-position: 12.5% 15% !important; -} -.emoji1f21a { - background-position: 12.5% 17.5% !important; -} -.emoji1f22f { - background-position: 12.5% 20% !important; -} -.emoji1f232 { - background-position: 12.5% 22.5% !important; -} -.emoji1f233 { - background-position: 12.5% 25% !important; -} -.emoji1f234 { - background-position: 12.5% 27.5% !important; -} -.emoji1f235 { - background-position: 12.5% 30% !important; -} -.emoji1f236 { - background-position: 12.5% 32.5% !important; -} -.emoji1f237 { - background-position: 12.5% 35% !important; -} -.emoji1f238 { - background-position: 12.5% 37.5% !important; -} -.emoji1f239 { - background-position: 12.5% 40% !important; -} -.emoji1f23a { - background-position: 12.5% 42.5% !important; -} -.emoji1f250 { - background-position: 12.5% 45% !important; -} -.emoji1f251 { - background-position: 12.5% 47.5% !important; -} -.emoji1f300 { - background-position: 12.5% 50% !important; -} -.emoji1f301 { - background-position: 12.5% 52.5% !important; -} -.emoji1f302 { - background-position: 12.5% 55% !important; -} -.emoji1f303 { - background-position: 12.5% 57.5% !important; -} -.emoji1f304 { - background-position: 12.5% 60% !important; -} -.emoji1f305 { - background-position: 12.5% 62.5% !important; -} -.emoji1f306 { - background-position: 12.5% 65% !important; -} -.emoji1f307 { - background-position: 12.5% 67.5% !important; -} -.emoji1f308 { - background-position: 12.5% 70% !important; -} -.emoji1f309 { - background-position: 12.5% 72.5% !important; -} -.emoji1f30a { - background-position: 12.5% 75% !important; -} -.emoji1f30b { - background-position: 12.5% 77.5% !important; -} -.emoji1f30c { - background-position: 12.5% 80% !important; -} -.emoji1f30d { - background-position: 12.5% 82.5% !important; -} -.emoji1f30e { - background-position: 12.5% 85% !important; -} -.emoji1f30f { - background-position: 12.5% 87.5% !important; -} -.emoji1f310 { - background-position: 12.5% 90% !important; -} -.emoji1f311 { - background-position: 12.5% 92.5% !important; -} -.emoji1f312 { - background-position: 12.5% 95% !important; -} -.emoji1f313 { - background-position: 12.5% 97.5% !important; -} -.emoji1f314 { - background-position: 12.5% 100% !important; -} -.emoji1f315 { - background-position: 15% 0% !important; -} -.emoji1f316 { - background-position: 15% 2.5% !important; -} -.emoji1f317 { - background-position: 15% 5% !important; -} -.emoji1f318 { - background-position: 15% 7.5% !important; -} -.emoji1f319 { - background-position: 15% 10% !important; -} -.emoji1f31a { - background-position: 15% 12.5% !important; -} -.emoji1f31b { - background-position: 15% 15% !important; -} -.emoji1f31c { - background-position: 15% 17.5% !important; -} -.emoji1f31d { - background-position: 15% 20% !important; -} -.emoji1f31e { - background-position: 15% 22.5% !important; -} -.emoji1f31f { - background-position: 15% 25% !important; -} -.emoji1f320 { - background-position: 15% 27.5% !important; -} -.emoji1f321 { - background-position: 15% 30% !important; -} -.emoji1f324 { - background-position: 15% 32.5% !important; -} -.emoji1f325 { - background-position: 15% 35% !important; -} -.emoji1f326 { - background-position: 15% 37.5% !important; -} -.emoji1f327 { - background-position: 15% 40% !important; -} -.emoji1f328 { - background-position: 15% 42.5% !important; -} -.emoji1f329 { - background-position: 15% 45% !important; -} -.emoji1f32a { - background-position: 15% 47.5% !important; -} -.emoji1f32b { - background-position: 15% 50% !important; -} -.emoji1f32c { - background-position: 15% 52.5% !important; -} -.emoji1f32d { - background-position: 15% 55% !important; -} -.emoji1f32e { - background-position: 15% 57.5% !important; -} -.emoji1f32f { - background-position: 15% 60% !important; -} -.emoji1f330 { - background-position: 15% 62.5% !important; -} -.emoji1f331 { - background-position: 15% 65% !important; -} -.emoji1f332 { - background-position: 15% 67.5% !important; -} -.emoji1f333 { - background-position: 15% 70% !important; -} -.emoji1f334 { - background-position: 15% 72.5% !important; -} -.emoji1f335 { - background-position: 15% 75% !important; -} -.emoji1f336 { - background-position: 15% 77.5% !important; -} -.emoji1f337 { - background-position: 15% 80% !important; -} -.emoji1f338 { - background-position: 15% 82.5% !important; -} -.emoji1f339 { - background-position: 15% 85% !important; -} -.emoji1f33a { - background-position: 15% 87.5% !important; -} -.emoji1f33b { - background-position: 15% 90% !important; -} -.emoji1f33c { - background-position: 15% 92.5% !important; -} -.emoji1f33d { - background-position: 15% 95% !important; -} -.emoji1f33e { - background-position: 15% 97.5% !important; -} -.emoji1f33f { - background-position: 15% 100% !important; -} -.emoji1f340 { - background-position: 17.5% 0% !important; -} -.emoji1f341 { - background-position: 17.5% 2.5% !important; -} -.emoji1f342 { - background-position: 17.5% 5% !important; -} -.emoji1f343 { - background-position: 17.5% 7.5% !important; -} -.emoji1f344 { - background-position: 17.5% 10% !important; -} -.emoji1f345 { - background-position: 17.5% 12.5% !important; -} -.emoji1f346 { - background-position: 17.5% 15% !important; -} -.emoji1f347 { - background-position: 17.5% 17.5% !important; -} -.emoji1f348 { - background-position: 17.5% 20% !important; -} -.emoji1f349 { - background-position: 17.5% 22.5% !important; -} -.emoji1f34a { - background-position: 17.5% 25% !important; -} -.emoji1f34b { - background-position: 17.5% 27.5% !important; -} -.emoji1f34c { - background-position: 17.5% 30% !important; -} -.emoji1f34d { - background-position: 17.5% 32.5% !important; -} -.emoji1f34e { - background-position: 17.5% 35% !important; -} -.emoji1f34f { - background-position: 17.5% 37.5% !important; -} -.emoji1f350 { - background-position: 17.5% 40% !important; -} -.emoji1f351 { - background-position: 17.5% 42.5% !important; -} -.emoji1f352 { - background-position: 17.5% 45% !important; -} -.emoji1f353 { - background-position: 17.5% 47.5% !important; -} -.emoji1f354 { - background-position: 17.5% 50% !important; -} -.emoji1f355 { - background-position: 17.5% 52.5% !important; -} -.emoji1f356 { - background-position: 17.5% 55% !important; -} -.emoji1f357 { - background-position: 17.5% 57.5% !important; -} -.emoji1f358 { - background-position: 17.5% 60% !important; -} -.emoji1f359 { - background-position: 17.5% 62.5% !important; -} -.emoji1f35a { - background-position: 17.5% 65% !important; -} -.emoji1f35b { - background-position: 17.5% 67.5% !important; -} -.emoji1f35c { - background-position: 17.5% 70% !important; -} -.emoji1f35d { - background-position: 17.5% 72.5% !important; -} -.emoji1f35e { - background-position: 17.5% 75% !important; -} -.emoji1f35f { - background-position: 17.5% 77.5% !important; -} -.emoji1f360 { - background-position: 17.5% 80% !important; -} -.emoji1f361 { - background-position: 17.5% 82.5% !important; -} -.emoji1f362 { - background-position: 17.5% 85% !important; -} -.emoji1f363 { - background-position: 17.5% 87.5% !important; -} -.emoji1f364 { - background-position: 17.5% 90% !important; -} -.emoji1f365 { - background-position: 17.5% 92.5% !important; -} -.emoji1f366 { - background-position: 17.5% 95% !important; -} -.emoji1f367 { - background-position: 17.5% 97.5% !important; -} -.emoji1f368 { - background-position: 17.5% 100% !important; -} -.emoji1f369 { - background-position: 20% 0% !important; -} -.emoji1f36a { - background-position: 20% 2.5% !important; -} -.emoji1f36b { - background-position: 20% 5% !important; -} -.emoji1f36c { - background-position: 20% 7.5% !important; -} -.emoji1f36d { - background-position: 20% 10% !important; -} -.emoji1f36e { - background-position: 20% 12.5% !important; -} -.emoji1f36f { - background-position: 20% 15% !important; -} -.emoji1f370 { - background-position: 20% 17.5% !important; -} -.emoji1f371 { - background-position: 20% 20% !important; -} -.emoji1f372 { - background-position: 20% 22.5% !important; -} -.emoji1f373 { - background-position: 20% 25% !important; -} -.emoji1f374 { - background-position: 20% 27.5% !important; -} -.emoji1f375 { - background-position: 20% 30% !important; -} -.emoji1f376 { - background-position: 20% 32.5% !important; -} -.emoji1f377 { - background-position: 20% 35% !important; -} -.emoji1f378 { - background-position: 20% 37.5% !important; -} -.emoji1f379 { - background-position: 20% 40% !important; -} -.emoji1f37a { - background-position: 20% 42.5% !important; -} -.emoji1f37b { - background-position: 20% 45% !important; -} -.emoji1f37c { - background-position: 20% 47.5% !important; -} -.emoji1f37d { - background-position: 20% 50% !important; -} -.emoji1f37e { - background-position: 20% 52.5% !important; -} -.emoji1f37f { - background-position: 20% 55% !important; -} -.emoji1f380 { - background-position: 20% 57.5% !important; -} -.emoji1f381 { - background-position: 20% 60% !important; -} -.emoji1f382 { - background-position: 20% 62.5% !important; -} -.emoji1f383 { - background-position: 20% 65% !important; -} -.emoji1f384 { - background-position: 20% 67.5% !important; -} -.emoji1f385 { - background-position: 20% 70% !important; -} -.emoji1f386 { - background-position: 20% 85% !important; -} -.emoji1f387 { - background-position: 20% 87.5% !important; -} -.emoji1f388 { - background-position: 20% 90% !important; -} -.emoji1f389 { - background-position: 20% 92.5% !important; -} -.emoji1f38a { - background-position: 20% 95% !important; -} -.emoji1f38b { - background-position: 20% 97.5% !important; -} -.emoji1f38c { - background-position: 20% 100% !important; -} -.emoji1f38d { - background-position: 22.5% 0% !important; -} -.emoji1f38e { - background-position: 22.5% 2.5% !important; -} -.emoji1f38f { - background-position: 22.5% 5% !important; -} -.emoji1f390 { - background-position: 22.5% 7.5% !important; -} -.emoji1f391 { - background-position: 22.5% 10% !important; -} -.emoji1f392 { - background-position: 22.5% 12.5% !important; -} -.emoji1f393 { - background-position: 22.5% 15% !important; -} -.emoji1f396 { - background-position: 22.5% 17.5% !important; -} -.emoji1f397 { - background-position: 22.5% 20% !important; -} -.emoji1f399 { - background-position: 22.5% 22.5% !important; -} -.emoji1f39a { - background-position: 22.5% 25% !important; -} -.emoji1f39b { - background-position: 22.5% 27.5% !important; -} -.emoji1f39e { - background-position: 22.5% 30% !important; -} -.emoji1f39f { - background-position: 22.5% 32.5% !important; -} -.emoji1f3a0 { - background-position: 22.5% 35% !important; -} -.emoji1f3a1 { - background-position: 22.5% 37.5% !important; -} -.emoji1f3a2 { - background-position: 22.5% 40% !important; -} -.emoji1f3a3 { - background-position: 22.5% 42.5% !important; -} -.emoji1f3a4 { - background-position: 22.5% 45% !important; -} -.emoji1f3a5 { - background-position: 22.5% 47.5% !important; -} -.emoji1f3a6 { - background-position: 22.5% 50% !important; -} -.emoji1f3a7 { - background-position: 22.5% 52.5% !important; -} -.emoji1f3a8 { - background-position: 22.5% 55% !important; -} -.emoji1f3a9 { - background-position: 22.5% 57.5% !important; -} -.emoji1f3aa { - background-position: 22.5% 60% !important; -} -.emoji1f3ab { - background-position: 22.5% 62.5% !important; -} -.emoji1f3ac { - background-position: 22.5% 65% !important; -} -.emoji1f3ad { - background-position: 22.5% 67.5% !important; -} -.emoji1f3ae { - background-position: 22.5% 70% !important; -} -.emoji1f3af { - background-position: 22.5% 72.5% !important; -} -.emoji1f3b0 { - background-position: 22.5% 75% !important; -} -.emoji1f3b1 { - background-position: 22.5% 77.5% !important; -} -.emoji1f3b2 { - background-position: 22.5% 80% !important; -} -.emoji1f3b3 { - background-position: 22.5% 82.5% !important; -} -.emoji1f3b4 { - background-position: 22.5% 85% !important; -} -.emoji1f3b5 { - background-position: 22.5% 87.5% !important; -} -.emoji1f3b6 { - background-position: 22.5% 90% !important; -} -.emoji1f3b7 { - background-position: 22.5% 92.5% !important; -} -.emoji1f3b8 { - background-position: 22.5% 95% !important; -} -.emoji1f3b9 { - background-position: 22.5% 97.5% !important; -} -.emoji1f3ba { - background-position: 22.5% 100% !important; -} -.emoji1f3bb { - background-position: 25% 0% !important; -} -.emoji1f3bc { - background-position: 25% 2.5% !important; -} -.emoji1f3bd { - background-position: 25% 5% !important; -} -.emoji1f3be { - background-position: 25% 7.5% !important; -} -.emoji1f3bf { - background-position: 25% 10% !important; -} -.emoji1f3c0 { - background-position: 25% 12.5% !important; -} -.emoji1f3c1 { - background-position: 25% 15% !important; -} -.emoji1f3c2 { - background-position: 25% 17.5% !important; -} -.emoji1f3c3 { - background-position: 25% 20% !important; -} -.emoji1f3c4 { - background-position: 25% 35% !important; -} -.emoji1f3c5 { - background-position: 25% 50% !important; -} -.emoji1f3c6 { - background-position: 25% 52.5% !important; -} -.emoji1f3c7 { - background-position: 25% 55% !important; -} -.emoji1f3c8 { - background-position: 25% 70% !important; -} -.emoji1f3c9 { - background-position: 25% 72.5% !important; -} -.emoji1f3ca { - background-position: 25% 75% !important; -} -.emoji1f3cb { - background-position: 25% 90% !important; -} -.emoji1f3cc { - background-position: 27.5% 2.5% !important; -} -.emoji1f3cd { - background-position: 27.5% 5% !important; -} -.emoji1f3ce { - background-position: 27.5% 7.5% !important; -} -.emoji1f3cf { - background-position: 27.5% 10% !important; -} -.emoji1f3d0 { - background-position: 27.5% 12.5% !important; -} -.emoji1f3d1 { - background-position: 27.5% 15% !important; -} -.emoji1f3d2 { - background-position: 27.5% 17.5% !important; -} -.emoji1f3d3 { - background-position: 27.5% 20% !important; -} -.emoji1f3d4 { - background-position: 27.5% 22.5% !important; -} -.emoji1f3d5 { - background-position: 27.5% 25% !important; -} -.emoji1f3d6 { - background-position: 27.5% 27.5% !important; -} -.emoji1f3d7 { - background-position: 27.5% 30% !important; -} -.emoji1f3d8 { - background-position: 27.5% 32.5% !important; -} -.emoji1f3d9 { - background-position: 27.5% 35% !important; -} -.emoji1f3da { - background-position: 27.5% 37.5% !important; -} -.emoji1f3db { - background-position: 27.5% 40% !important; -} -.emoji1f3dc { - background-position: 27.5% 42.5% !important; -} -.emoji1f3dd { - background-position: 27.5% 45% !important; -} -.emoji1f3de { - background-position: 27.5% 47.5% !important; -} -.emoji1f3df { - background-position: 27.5% 50% !important; -} -.emoji1f3e0 { - background-position: 27.5% 52.5% !important; -} -.emoji1f3e1 { - background-position: 27.5% 55% !important; -} -.emoji1f3e2 { - background-position: 27.5% 57.5% !important; -} -.emoji1f3e3 { - background-position: 27.5% 60% !important; -} -.emoji1f3e4 { - background-position: 27.5% 62.5% !important; -} -.emoji1f3e5 { - background-position: 27.5% 65% !important; -} -.emoji1f3e6 { - background-position: 27.5% 67.5% !important; -} -.emoji1f3e7 { - background-position: 27.5% 70% !important; -} -.emoji1f3e8 { - background-position: 27.5% 72.5% !important; -} -.emoji1f3e9 { - background-position: 27.5% 75% !important; -} -.emoji1f3ea { - background-position: 27.5% 77.5% !important; -} -.emoji1f3eb { - background-position: 27.5% 80% !important; -} -.emoji1f3ec { - background-position: 27.5% 82.5% !important; -} -.emoji1f3ed { - background-position: 27.5% 85% !important; -} -.emoji1f3ee { - background-position: 27.5% 87.5% !important; -} -.emoji1f3ef { - background-position: 27.5% 90% !important; -} -.emoji1f3f0 { - background-position: 27.5% 92.5% !important; -} -.emoji1f3f3 { - background-position: 27.5% 95% !important; -} -.emoji1f3f4 { - background-position: 27.5% 97.5% !important; -} -.emoji1f3f5 { - background-position: 27.5% 100% !important; -} -.emoji1f3f7 { - background-position: 30% 0% !important; -} -.emoji1f3f8 { - background-position: 30% 2.5% !important; -} -.emoji1f3f9 { - background-position: 30% 5% !important; -} -.emoji1f3fa { - background-position: 30% 7.5% !important; -} -.emoji1f3fb { - background-position: 30% 10% !important; -} -.emoji1f3fc { - background-position: 30% 12.5% !important; -} -.emoji1f3fd { - background-position: 30% 15% !important; -} -.emoji1f3fe { - background-position: 30% 17.5% !important; -} -.emoji1f3ff { - background-position: 30% 20% !important; -} -.emoji1f400 { - background-position: 30% 22.5% !important; -} -.emoji1f401 { - background-position: 30% 25% !important; -} -.emoji1f402 { - background-position: 30% 27.5% !important; -} -.emoji1f403 { - background-position: 30% 30% !important; -} -.emoji1f404 { - background-position: 30% 32.5% !important; -} -.emoji1f405 { - background-position: 30% 35% !important; -} -.emoji1f406 { - background-position: 30% 37.5% !important; -} -.emoji1f407 { - background-position: 30% 40% !important; -} -.emoji1f408 { - background-position: 30% 42.5% !important; -} -.emoji1f409 { - background-position: 30% 45% !important; -} -.emoji1f40a { - background-position: 30% 47.5% !important; -} -.emoji1f40b { - background-position: 30% 50% !important; -} -.emoji1f40c { - background-position: 30% 52.5% !important; -} -.emoji1f40d { - background-position: 30% 55% !important; -} -.emoji1f40e { - background-position: 30% 57.5% !important; -} -.emoji1f40f { - background-position: 30% 60% !important; -} -.emoji1f410 { - background-position: 30% 62.5% !important; -} -.emoji1f411 { - background-position: 30% 65% !important; -} -.emoji1f412 { - background-position: 30% 67.5% !important; -} -.emoji1f413 { - background-position: 30% 70% !important; -} -.emoji1f414 { - background-position: 30% 72.5% !important; -} -.emoji1f415 { - background-position: 30% 75% !important; -} -.emoji1f416 { - background-position: 30% 77.5% !important; -} -.emoji1f417 { - background-position: 30% 80% !important; -} -.emoji1f418 { - background-position: 30% 82.5% !important; -} -.emoji1f419 { - background-position: 30% 85% !important; -} -.emoji1f41a { - background-position: 30% 87.5% !important; -} -.emoji1f41b { - background-position: 30% 90% !important; -} -.emoji1f41c { - background-position: 30% 92.5% !important; -} -.emoji1f41d { - background-position: 30% 95% !important; -} -.emoji1f41e { - background-position: 30% 97.5% !important; -} -.emoji1f41f { - background-position: 30% 100% !important; -} -.emoji1f420 { - background-position: 32.5% 0% !important; -} -.emoji1f421 { - background-position: 32.5% 2.5% !important; -} -.emoji1f422 { - background-position: 32.5% 5% !important; -} -.emoji1f423 { - background-position: 32.5% 7.5% !important; -} -.emoji1f424 { - background-position: 32.5% 10% !important; -} -.emoji1f425 { - background-position: 32.5% 12.5% !important; -} -.emoji1f426 { - background-position: 32.5% 15% !important; -} -.emoji1f427 { - background-position: 32.5% 17.5% !important; -} -.emoji1f428 { - background-position: 32.5% 20% !important; -} -.emoji1f429 { - background-position: 32.5% 22.5% !important; -} -.emoji1f42a { - background-position: 32.5% 25% !important; -} -.emoji1f42b { - background-position: 32.5% 27.5% !important; -} -.emoji1f42c { - background-position: 32.5% 30% !important; -} -.emoji1f42d { - background-position: 32.5% 32.5% !important; -} -.emoji1f42e { - background-position: 32.5% 35% !important; -} -.emoji1f42f { - background-position: 32.5% 37.5% !important; -} -.emoji1f430 { - background-position: 32.5% 40% !important; -} -.emoji1f431 { - background-position: 32.5% 42.5% !important; -} -.emoji1f432 { - background-position: 32.5% 45% !important; -} -.emoji1f433 { - background-position: 32.5% 47.5% !important; -} -.emoji1f434 { - background-position: 32.5% 50% !important; -} -.emoji1f435 { - background-position: 32.5% 52.5% !important; -} -.emoji1f436 { - background-position: 32.5% 55% !important; -} -.emoji1f437 { - background-position: 32.5% 57.5% !important; -} -.emoji1f438 { - background-position: 32.5% 60% !important; -} -.emoji1f439 { - background-position: 32.5% 62.5% !important; -} -.emoji1f43a { - background-position: 32.5% 65% !important; -} -.emoji1f43b { - background-position: 32.5% 67.5% !important; -} -.emoji1f43c { - background-position: 32.5% 70% !important; -} -.emoji1f43d { - background-position: 32.5% 72.5% !important; -} -.emoji1f43e { - background-position: 32.5% 75% !important; -} -.emoji1f43f { - background-position: 32.5% 77.5% !important; -} -.emoji1f440 { - background-position: 32.5% 80% !important; -} -.emoji1f441 { - background-position: 32.5% 82.5% !important; -} -.emoji1f442 { - background-position: 32.5% 85% !important; -} -.emoji1f443 { - background-position: 32.5% 100% !important; -} -.emoji1f444 { - background-position: 35% 12.5% !important; -} -.emoji1f445 { - background-position: 35% 15% !important; -} -.emoji1f446 { - background-position: 35% 17.5% !important; -} -.emoji1f447 { - background-position: 35% 32.5% !important; -} -.emoji1f448 { - background-position: 35% 47.5% !important; -} -.emoji1f449 { - background-position: 35% 62.5% !important; -} -.emoji1f44a { - background-position: 35% 77.5% !important; -} -.emoji1f44b { - background-position: 35% 92.5% !important; -} -.emoji1f44c { - background-position: 37.5% 5% !important; -} -.emoji1f44d { - background-position: 37.5% 20% !important; -} -.emoji1f44e { - background-position: 37.5% 35% !important; -} -.emoji1f44f { - background-position: 37.5% 50% !important; -} -.emoji1f450 { - background-position: 37.5% 65% !important; -} -.emoji1f451 { - background-position: 37.5% 80% !important; -} -.emoji1f452 { - background-position: 37.5% 82.5% !important; -} -.emoji1f453 { - background-position: 37.5% 85% !important; -} -.emoji1f454 { - background-position: 37.5% 87.5% !important; -} -.emoji1f455 { - background-position: 37.5% 90% !important; -} -.emoji1f456 { - background-position: 37.5% 92.5% !important; -} -.emoji1f457 { - background-position: 37.5% 95% !important; -} -.emoji1f458 { - background-position: 37.5% 97.5% !important; -} -.emoji1f459 { - background-position: 37.5% 100% !important; -} -.emoji1f45a { - background-position: 40% 0% !important; -} -.emoji1f45b { - background-position: 40% 2.5% !important; -} -.emoji1f45c { - background-position: 40% 5% !important; -} -.emoji1f45d { - background-position: 40% 7.5% !important; -} -.emoji1f45e { - background-position: 40% 10% !important; -} -.emoji1f45f { - background-position: 40% 12.5% !important; -} -.emoji1f460 { - background-position: 40% 15% !important; -} -.emoji1f461 { - background-position: 40% 17.5% !important; -} -.emoji1f462 { - background-position: 40% 20% !important; -} -.emoji1f463 { - background-position: 40% 22.5% !important; -} -.emoji1f464 { - background-position: 40% 25% !important; -} -.emoji1f465 { - background-position: 40% 27.5% !important; -} -.emoji1f466 { - background-position: 40% 30% !important; -} -.emoji1f467 { - background-position: 40% 45% !important; -} -.emoji1f468 { - background-position: 40% 60% !important; -} -.emoji1f469 { - background-position: 40% 75% !important; -} -.emoji1f46a { - background-position: 40% 90% !important; -} -.emoji1f46b { - background-position: 40% 92.5% !important; -} -.emoji1f46c { - background-position: 40% 95% !important; -} -.emoji1f46d { - background-position: 40% 97.5% !important; -} -.emoji1f46e { - background-position: 40% 100% !important; -} -.emoji1f46f { - background-position: 42.5% 12.5% !important; -} -.emoji1f470 { - background-position: 42.5% 15% !important; -} -.emoji1f471 { - background-position: 42.5% 30% !important; -} -.emoji1f472 { - background-position: 42.5% 45% !important; -} -.emoji1f473 { - background-position: 42.5% 60% !important; -} -.emoji1f474 { - background-position: 42.5% 75% !important; -} -.emoji1f475 { - background-position: 42.5% 90% !important; -} -.emoji1f476 { - background-position: 45% 2.5% !important; -} -.emoji1f477 { - background-position: 45% 17.5% !important; -} -.emoji1f478 { - background-position: 45% 32.5% !important; -} -.emoji1f479 { - background-position: 45% 47.5% !important; -} -.emoji1f47a { - background-position: 45% 50% !important; -} -.emoji1f47b { - background-position: 45% 52.5% !important; -} -.emoji1f47c { - background-position: 45% 55% !important; -} -.emoji1f47d { - background-position: 45% 70% !important; -} -.emoji1f47e { - background-position: 45% 72.5% !important; -} -.emoji1f47f { - background-position: 45% 75% !important; -} -.emoji1f480 { - background-position: 45% 77.5% !important; -} -.emoji1f481 { - background-position: 45% 80% !important; -} -.emoji1f482 { - background-position: 45% 95% !important; -} -.emoji1f483 { - background-position: 47.5% 7.5% !important; -} -.emoji1f484 { - background-position: 47.5% 22.5% !important; -} -.emoji1f485 { - background-position: 47.5% 25% !important; -} -.emoji1f486 { - background-position: 47.5% 40% !important; -} -.emoji1f487 { - background-position: 47.5% 55% !important; -} -.emoji1f488 { - background-position: 47.5% 70% !important; -} -.emoji1f489 { - background-position: 47.5% 72.5% !important; -} -.emoji1f48a { - background-position: 47.5% 75% !important; -} -.emoji1f48b { - background-position: 47.5% 77.5% !important; -} -.emoji1f48c { - background-position: 47.5% 80% !important; -} -.emoji1f48d { - background-position: 47.5% 82.5% !important; -} -.emoji1f48e { - background-position: 47.5% 85% !important; -} -.emoji1f48f { - background-position: 47.5% 87.5% !important; -} -.emoji1f490 { - background-position: 47.5% 90% !important; -} -.emoji1f491 { - background-position: 47.5% 92.5% !important; -} -.emoji1f492 { - background-position: 47.5% 95% !important; -} -.emoji1f493 { - background-position: 47.5% 97.5% !important; -} -.emoji1f494 { - background-position: 47.5% 100% !important; -} -.emoji1f495 { - background-position: 50% 0% !important; -} -.emoji1f496 { - background-position: 50% 2.5% !important; -} -.emoji1f497 { - background-position: 50% 5% !important; -} -.emoji1f498 { - background-position: 50% 7.5% !important; -} -.emoji1f499 { - background-position: 50% 10% !important; -} -.emoji1f49a { - background-position: 50% 12.5% !important; -} -.emoji1f49b { - background-position: 50% 15% !important; -} -.emoji1f49c { - background-position: 50% 17.5% !important; -} -.emoji1f49d { - background-position: 50% 20% !important; -} -.emoji1f49e { - background-position: 50% 22.5% !important; -} -.emoji1f49f { - background-position: 50% 25% !important; -} -.emoji1f4a0 { - background-position: 50% 27.5% !important; -} -.emoji1f4a1 { - background-position: 50% 30% !important; -} -.emoji1f4a2 { - background-position: 50% 32.5% !important; -} -.emoji1f4a3 { - background-position: 50% 35% !important; -} -.emoji1f4a4 { - background-position: 50% 37.5% !important; -} -.emoji1f4a5 { - background-position: 50% 40% !important; -} -.emoji1f4a6 { - background-position: 50% 42.5% !important; -} -.emoji1f4a7 { - background-position: 50% 45% !important; -} -.emoji1f4a8 { - background-position: 50% 47.5% !important; -} -.emoji1f4a9 { - background-position: 50% 50% !important; -} -.emoji1f4aa { - background-position: 50% 52.5% !important; -} -.emoji1f4ab { - background-position: 50% 67.5% !important; -} -.emoji1f4ac { - background-position: 50% 70% !important; -} -.emoji1f4ad { - background-position: 50% 72.5% !important; -} -.emoji1f4ae { - background-position: 50% 75% !important; -} -.emoji1f4af { - background-position: 50% 77.5% !important; -} -.emoji1f4b0 { - background-position: 50% 80% !important; -} -.emoji1f4b1 { - background-position: 50% 82.5% !important; -} -.emoji1f4b2 { - background-position: 50% 85% !important; -} -.emoji1f4b3 { - background-position: 50% 87.5% !important; -} -.emoji1f4b4 { - background-position: 50% 90% !important; -} -.emoji1f4b5 { - background-position: 50% 92.5% !important; -} -.emoji1f4b6 { - background-position: 50% 95% !important; -} -.emoji1f4b7 { - background-position: 50% 97.5% !important; -} -.emoji1f4b8 { - background-position: 50% 100% !important; -} -.emoji1f4b9 { - background-position: 52.5% 0% !important; -} -.emoji1f4ba { - background-position: 52.5% 2.5% !important; -} -.emoji1f4bb { - background-position: 52.5% 5% !important; -} -.emoji1f4bc { - background-position: 52.5% 7.5% !important; -} -.emoji1f4bd { - background-position: 52.5% 10% !important; -} -.emoji1f4be { - background-position: 52.5% 12.5% !important; -} -.emoji1f4bf { - background-position: 52.5% 15% !important; -} -.emoji1f4c0 { - background-position: 52.5% 17.5% !important; -} -.emoji1f4c1 { - background-position: 52.5% 20% !important; -} -.emoji1f4c2 { - background-position: 52.5% 22.5% !important; -} -.emoji1f4c3 { - background-position: 52.5% 25% !important; -} -.emoji1f4c4 { - background-position: 52.5% 27.5% !important; -} -.emoji1f4c5 { - background-position: 52.5% 30% !important; -} -.emoji1f4c6 { - background-position: 52.5% 32.5% !important; -} -.emoji1f4c7 { - background-position: 52.5% 35% !important; -} -.emoji1f4c8 { - background-position: 52.5% 37.5% !important; -} -.emoji1f4c9 { - background-position: 52.5% 40% !important; -} -.emoji1f4ca { - background-position: 52.5% 42.5% !important; -} -.emoji1f4cb { - background-position: 52.5% 45% !important; -} -.emoji1f4cc { - background-position: 52.5% 47.5% !important; -} -.emoji1f4cd { - background-position: 52.5% 50% !important; -} -.emoji1f4ce { - background-position: 52.5% 52.5% !important; -} -.emoji1f4cf { - background-position: 52.5% 55% !important; -} -.emoji1f4d0 { - background-position: 52.5% 57.5% !important; -} -.emoji1f4d1 { - background-position: 52.5% 60% !important; -} -.emoji1f4d2 { - background-position: 52.5% 62.5% !important; -} -.emoji1f4d3 { - background-position: 52.5% 65% !important; -} -.emoji1f4d4 { - background-position: 52.5% 67.5% !important; -} -.emoji1f4d5 { - background-position: 52.5% 70% !important; -} -.emoji1f4d6 { - background-position: 52.5% 72.5% !important; -} -.emoji1f4d7 { - background-position: 52.5% 75% !important; -} -.emoji1f4d8 { - background-position: 52.5% 77.5% !important; -} -.emoji1f4d9 { - background-position: 52.5% 80% !important; -} -.emoji1f4da { - background-position: 52.5% 82.5% !important; -} -.emoji1f4db { - background-position: 52.5% 85% !important; -} -.emoji1f4dc { - background-position: 52.5% 87.5% !important; -} -.emoji1f4dd { - background-position: 52.5% 90% !important; -} -.emoji1f4de { - background-position: 52.5% 92.5% !important; -} -.emoji1f4df { - background-position: 52.5% 95% !important; -} -.emoji1f4e0 { - background-position: 52.5% 97.5% !important; -} -.emoji1f4e1 { - background-position: 52.5% 100% !important; -} -.emoji1f4e2 { - background-position: 55% 0% !important; -} -.emoji1f4e3 { - background-position: 55% 2.5% !important; -} -.emoji1f4e4 { - background-position: 55% 5% !important; -} -.emoji1f4e5 { - background-position: 55% 7.5% !important; -} -.emoji1f4e6 { - background-position: 55% 10% !important; -} -.emoji1f4e7 { - background-position: 55% 12.5% !important; -} -.emoji1f4e8 { - background-position: 55% 15% !important; -} -.emoji1f4e9 { - background-position: 55% 17.5% !important; -} -.emoji1f4ea { - background-position: 55% 20% !important; -} -.emoji1f4eb { - background-position: 55% 22.5% !important; -} -.emoji1f4ec { - background-position: 55% 25% !important; -} -.emoji1f4ed { - background-position: 55% 27.5% !important; -} -.emoji1f4ee { - background-position: 55% 30% !important; -} -.emoji1f4ef { - background-position: 55% 32.5% !important; -} -.emoji1f4f0 { - background-position: 55% 35% !important; -} -.emoji1f4f1 { - background-position: 55% 37.5% !important; -} -.emoji1f4f2 { - background-position: 55% 40% !important; -} -.emoji1f4f3 { - background-position: 55% 42.5% !important; -} -.emoji1f4f4 { - background-position: 55% 45% !important; -} -.emoji1f4f5 { - background-position: 55% 47.5% !important; -} -.emoji1f4f6 { - background-position: 55% 50% !important; -} -.emoji1f4f7 { - background-position: 55% 52.5% !important; -} -.emoji1f4f8 { - background-position: 55% 55% !important; -} -.emoji1f4f9 { - background-position: 55% 57.5% !important; -} -.emoji1f4fa { - background-position: 55% 60% !important; -} -.emoji1f4fb { - background-position: 55% 62.5% !important; -} -.emoji1f4fc { - background-position: 55% 65% !important; -} -.emoji1f4fd { - background-position: 55% 67.5% !important; -} -.emoji1f4ff { - background-position: 55% 70% !important; -} -.emoji1f500 { - background-position: 55% 72.5% !important; -} -.emoji1f501 { - background-position: 55% 75% !important; -} -.emoji1f502 { - background-position: 55% 77.5% !important; -} -.emoji1f503 { - background-position: 55% 80% !important; -} -.emoji1f504 { - background-position: 55% 82.5% !important; -} -.emoji1f505 { - background-position: 55% 85% !important; -} -.emoji1f506 { - background-position: 55% 87.5% !important; -} -.emoji1f507 { - background-position: 55% 90% !important; -} -.emoji1f508 { - background-position: 55% 92.5% !important; -} -.emoji1f509 { - background-position: 55% 95% !important; -} -.emoji1f50a { - background-position: 55% 97.5% !important; -} -.emoji1f50b { - background-position: 55% 100% !important; -} -.emoji1f50c { - background-position: 57.5% 0% !important; -} -.emoji1f50d { - background-position: 57.5% 2.5% !important; -} -.emoji1f50e { - background-position: 57.5% 5% !important; -} -.emoji1f50f { - background-position: 57.5% 7.5% !important; -} -.emoji1f510 { - background-position: 57.5% 10% !important; -} -.emoji1f511 { - background-position: 57.5% 12.5% !important; -} -.emoji1f512 { - background-position: 57.5% 15% !important; -} -.emoji1f513 { - background-position: 57.5% 17.5% !important; -} -.emoji1f514 { - background-position: 57.5% 20% !important; -} -.emoji1f515 { - background-position: 57.5% 22.5% !important; -} -.emoji1f516 { - background-position: 57.5% 25% !important; -} -.emoji1f517 { - background-position: 57.5% 27.5% !important; -} -.emoji1f518 { - background-position: 57.5% 30% !important; -} -.emoji1f519 { - background-position: 57.5% 32.5% !important; -} -.emoji1f51a { - background-position: 57.5% 35% !important; -} -.emoji1f51b { - background-position: 57.5% 37.5% !important; -} -.emoji1f51c { - background-position: 57.5% 40% !important; -} -.emoji1f51d { - background-position: 57.5% 42.5% !important; -} -.emoji1f51e { - background-position: 57.5% 45% !important; -} -.emoji1f51f { - background-position: 57.5% 47.5% !important; -} -.emoji1f520 { - background-position: 57.5% 50% !important; -} -.emoji1f521 { - background-position: 57.5% 52.5% !important; -} -.emoji1f522 { - background-position: 57.5% 55% !important; -} -.emoji1f523 { - background-position: 57.5% 57.5% !important; -} -.emoji1f524 { - background-position: 57.5% 60% !important; -} -.emoji1f525 { - background-position: 57.5% 62.5% !important; -} -.emoji1f526 { - background-position: 57.5% 65% !important; -} -.emoji1f527 { - background-position: 57.5% 67.5% !important; -} -.emoji1f528 { - background-position: 57.5% 70% !important; -} -.emoji1f529 { - background-position: 57.5% 72.5% !important; -} -.emoji1f52a { - background-position: 57.5% 75% !important; -} -.emoji1f52b { - background-position: 57.5% 77.5% !important; -} -.emoji1f52c { - background-position: 57.5% 80% !important; -} -.emoji1f52d { - background-position: 57.5% 82.5% !important; -} -.emoji1f52e { - background-position: 57.5% 85% !important; -} -.emoji1f52f { - background-position: 57.5% 87.5% !important; -} -.emoji1f530 { - background-position: 57.5% 90% !important; -} -.emoji1f531 { - background-position: 57.5% 92.5% !important; -} -.emoji1f532 { - background-position: 57.5% 95% !important; -} -.emoji1f533 { - background-position: 57.5% 97.5% !important; -} -.emoji1f534 { - background-position: 57.5% 100% !important; -} -.emoji1f535 { - background-position: 60% 0% !important; -} -.emoji1f536 { - background-position: 60% 2.5% !important; -} -.emoji1f537 { - background-position: 60% 5% !important; -} -.emoji1f538 { - background-position: 60% 7.5% !important; -} -.emoji1f539 { - background-position: 60% 10% !important; -} -.emoji1f53a { - background-position: 60% 12.5% !important; -} -.emoji1f53b { - background-position: 60% 15% !important; -} -.emoji1f53c { - background-position: 60% 17.5% !important; -} -.emoji1f53d { - background-position: 60% 20% !important; -} -.emoji1f549 { - background-position: 60% 22.5% !important; -} -.emoji1f54a { - background-position: 60% 25% !important; -} -.emoji1f54b { - background-position: 60% 27.5% !important; -} -.emoji1f54c { - background-position: 60% 30% !important; -} -.emoji1f54d { - background-position: 60% 32.5% !important; -} -.emoji1f54e { - background-position: 60% 35% !important; -} -.emoji1f550 { - background-position: 60% 37.5% !important; -} -.emoji1f551 { - background-position: 60% 40% !important; -} -.emoji1f552 { - background-position: 60% 42.5% !important; -} -.emoji1f553 { - background-position: 60% 45% !important; -} -.emoji1f554 { - background-position: 60% 47.5% !important; -} -.emoji1f555 { - background-position: 60% 50% !important; -} -.emoji1f556 { - background-position: 60% 52.5% !important; -} -.emoji1f557 { - background-position: 60% 55% !important; -} -.emoji1f558 { - background-position: 60% 57.5% !important; -} -.emoji1f559 { - background-position: 60% 60% !important; -} -.emoji1f55a { - background-position: 60% 62.5% !important; -} -.emoji1f55b { - background-position: 60% 65% !important; -} -.emoji1f55c { - background-position: 60% 67.5% !important; -} -.emoji1f55d { - background-position: 60% 70% !important; -} -.emoji1f55e { - background-position: 60% 72.5% !important; -} -.emoji1f55f { - background-position: 60% 75% !important; -} -.emoji1f560 { - background-position: 60% 77.5% !important; -} -.emoji1f561 { - background-position: 60% 80% !important; -} -.emoji1f562 { - background-position: 60% 82.5% !important; -} -.emoji1f563 { - background-position: 60% 85% !important; -} -.emoji1f564 { - background-position: 60% 87.5% !important; -} -.emoji1f565 { - background-position: 60% 90% !important; -} -.emoji1f566 { - background-position: 60% 92.5% !important; -} -.emoji1f567 { - background-position: 60% 95% !important; -} -.emoji1f56f { - background-position: 60% 97.5% !important; -} -.emoji1f570 { - background-position: 60% 100% !important; -} -.emoji1f573 { - background-position: 62.5% 0% !important; -} -.emoji1f574 { - background-position: 62.5% 2.5% !important; -} -.emoji1f575 { - background-position: 62.5% 5% !important; -} -.emoji1f576 { - background-position: 62.5% 7.5% !important; -} -.emoji1f577 { - background-position: 62.5% 10% !important; -} -.emoji1f578 { - background-position: 62.5% 12.5% !important; -} -.emoji1f579 { - background-position: 62.5% 15% !important; -} -.emoji1f587 { - background-position: 62.5% 17.5% !important; -} -.emoji1f58a { - background-position: 62.5% 20% !important; -} -.emoji1f58b { - background-position: 62.5% 22.5% !important; -} -.emoji1f58c { - background-position: 62.5% 25% !important; -} -.emoji1f58d { - background-position: 62.5% 27.5% !important; -} -.emoji1f590 { - background-position: 62.5% 30% !important; -} -.emoji1f595 { - background-position: 62.5% 45% !important; -} -.emoji1f596 { - background-position: 62.5% 60% !important; -} -.emoji1f5a5 { - background-position: 62.5% 75% !important; -} -.emoji1f5a8 { - background-position: 62.5% 77.5% !important; -} -.emoji1f5b1 { - background-position: 62.5% 80% !important; -} -.emoji1f5b2 { - background-position: 62.5% 82.5% !important; -} -.emoji1f5bc { - background-position: 62.5% 85% !important; -} -.emoji1f5c2 { - background-position: 62.5% 87.5% !important; -} -.emoji1f5c3 { - background-position: 62.5% 90% !important; -} -.emoji1f5c4 { - background-position: 62.5% 92.5% !important; -} -.emoji1f5d1 { - background-position: 62.5% 95% !important; -} -.emoji1f5d2 { - background-position: 62.5% 97.5% !important; -} -.emoji1f5d3 { - background-position: 62.5% 100% !important; -} -.emoji1f5dc { - background-position: 65% 0% !important; -} -.emoji1f5dd { - background-position: 65% 2.5% !important; -} -.emoji1f5de { - background-position: 65% 5% !important; -} -.emoji1f5e1 { - background-position: 65% 7.5% !important; -} -.emoji1f5e3 { - background-position: 65% 10% !important; -} -.emoji1f5e8 { - background-position: 65% 12.5% !important; -} -.emoji1f5ef { - background-position: 65% 15% !important; -} -.emoji1f5f3 { - background-position: 65% 17.5% !important; -} -.emoji1f5fa { - background-position: 65% 20% !important; -} -.emoji1f5fb { - background-position: 65% 22.5% !important; -} -.emoji1f5fc { - background-position: 65% 25% !important; -} -.emoji1f5fd { - background-position: 65% 27.5% !important; -} -.emoji1f5fe { - background-position: 65% 30% !important; -} -.emoji1f5ff { - background-position: 65% 32.5% !important; -} -.emoji1f600 { - background-position: 65% 35% !important; -} -.emoji1f601 { - background-position: 65% 37.5% !important; -} -.emoji1f602 { - background-position: 65% 40% !important; -} -.emoji1f603 { - background-position: 65% 42.5% !important; -} -.emoji1f604 { - background-position: 65% 45% !important; -} -.emoji1f605 { - background-position: 65% 47.5% !important; -} -.emoji1f606 { - background-position: 65% 50% !important; -} -.emoji1f607 { - background-position: 65% 52.5% !important; -} -.emoji1f608 { - background-position: 65% 55% !important; -} -.emoji1f609 { - background-position: 65% 57.5% !important; -} -.emoji1f60a { - background-position: 65% 60% !important; -} -.emoji1f60b { - background-position: 65% 62.5% !important; -} -.emoji1f60c { - background-position: 65% 65% !important; -} -.emoji1f60d { - background-position: 65% 67.5% !important; -} -.emoji1f60e { - background-position: 65% 70% !important; -} -.emoji1f60f { - background-position: 65% 72.5% !important; -} -.emoji1f610 { - background-position: 65% 75% !important; -} -.emoji1f611 { - background-position: 65% 77.5% !important; -} -.emoji1f612 { - background-position: 65% 80% !important; -} -.emoji1f613 { - background-position: 65% 82.5% !important; -} -.emoji1f614 { - background-position: 65% 85% !important; -} -.emoji1f615 { - background-position: 65% 87.5% !important; -} -.emoji1f616 { - background-position: 65% 90% !important; -} -.emoji1f617 { - background-position: 65% 92.5% !important; -} -.emoji1f618 { - background-position: 65% 95% !important; -} -.emoji1f619 { - background-position: 65% 97.5% !important; -} -.emoji1f61a { - background-position: 65% 100% !important; -} -.emoji1f61b { - background-position: 67.5% 0% !important; -} -.emoji1f61c { - background-position: 67.5% 2.5% !important; -} -.emoji1f61d { - background-position: 67.5% 5% !important; -} -.emoji1f61e { - background-position: 67.5% 7.5% !important; -} -.emoji1f61f { - background-position: 67.5% 10% !important; -} -.emoji1f620 { - background-position: 67.5% 12.5% !important; -} -.emoji1f621 { - background-position: 67.5% 15% !important; -} -.emoji1f622 { - background-position: 67.5% 17.5% !important; -} -.emoji1f623 { - background-position: 67.5% 20% !important; -} -.emoji1f624 { - background-position: 67.5% 22.5% !important; -} -.emoji1f625 { - background-position: 67.5% 25% !important; -} -.emoji1f626 { - background-position: 67.5% 27.5% !important; -} -.emoji1f627 { - background-position: 67.5% 30% !important; -} -.emoji1f628 { - background-position: 67.5% 32.5% !important; -} -.emoji1f629 { - background-position: 67.5% 35% !important; -} -.emoji1f62a { - background-position: 67.5% 37.5% !important; -} -.emoji1f62b { - background-position: 67.5% 40% !important; -} -.emoji1f62c { - background-position: 67.5% 42.5% !important; -} -.emoji1f62d { - background-position: 67.5% 45% !important; -} -.emoji1f62e { - background-position: 67.5% 47.5% !important; -} -.emoji1f62f { - background-position: 67.5% 50% !important; -} -.emoji1f630 { - background-position: 67.5% 52.5% !important; -} -.emoji1f631 { - background-position: 67.5% 55% !important; -} -.emoji1f632 { - background-position: 67.5% 57.5% !important; -} -.emoji1f633 { - background-position: 67.5% 60% !important; -} -.emoji1f634 { - background-position: 67.5% 62.5% !important; -} -.emoji1f635 { - background-position: 67.5% 65% !important; -} -.emoji1f636 { - background-position: 67.5% 67.5% !important; -} -.emoji1f637 { - background-position: 67.5% 70% !important; -} -.emoji1f638 { - background-position: 67.5% 72.5% !important; -} -.emoji1f639 { - background-position: 67.5% 75% !important; -} -.emoji1f63a { - background-position: 67.5% 77.5% !important; -} -.emoji1f63b { - background-position: 67.5% 80% !important; -} -.emoji1f63c { - background-position: 67.5% 82.5% !important; -} -.emoji1f63d { - background-position: 67.5% 85% !important; -} -.emoji1f63e { - background-position: 67.5% 87.5% !important; -} -.emoji1f63f { - background-position: 67.5% 90% !important; -} -.emoji1f640 { - background-position: 67.5% 92.5% !important; -} -.emoji1f641 { - background-position: 67.5% 95% !important; -} -.emoji1f642 { - background-position: 67.5% 97.5% !important; -} -.emoji1f643 { - background-position: 67.5% 100% !important; -} -.emoji1f644 { - background-position: 70% 0% !important; -} -.emoji1f645 { - background-position: 70% 2.5% !important; -} -.emoji1f646 { - background-position: 70% 17.5% !important; -} -.emoji1f647 { - background-position: 70% 32.5% !important; -} -.emoji1f648 { - background-position: 70% 47.5% !important; -} -.emoji1f649 { - background-position: 70% 50% !important; -} -.emoji1f64a { - background-position: 70% 52.5% !important; -} -.emoji1f64b { - background-position: 70% 55% !important; -} -.emoji1f64c { - background-position: 70% 70% !important; -} -.emoji1f64d { - background-position: 70% 85% !important; -} -.emoji1f64e { - background-position: 70% 100% !important; -} -.emoji1f64f { - background-position: 72.5% 12.5% !important; -} -.emoji1f680 { - background-position: 72.5% 27.5% !important; -} -.emoji1f681 { - background-position: 72.5% 30% !important; -} -.emoji1f682 { - background-position: 72.5% 32.5% !important; -} -.emoji1f683 { - background-position: 72.5% 35% !important; -} -.emoji1f684 { - background-position: 72.5% 37.5% !important; -} -.emoji1f685 { - background-position: 72.5% 40% !important; -} -.emoji1f686 { - background-position: 72.5% 42.5% !important; -} -.emoji1f687 { - background-position: 72.5% 45% !important; -} -.emoji1f688 { - background-position: 72.5% 47.5% !important; -} -.emoji1f689 { - background-position: 72.5% 50% !important; -} -.emoji1f68a { - background-position: 72.5% 52.5% !important; -} -.emoji1f68b { - background-position: 72.5% 55% !important; -} -.emoji1f68c { - background-position: 72.5% 57.5% !important; -} -.emoji1f68d { - background-position: 72.5% 60% !important; -} -.emoji1f68e { - background-position: 72.5% 62.5% !important; -} -.emoji1f68f { - background-position: 72.5% 65% !important; -} -.emoji1f690 { - background-position: 72.5% 67.5% !important; -} -.emoji1f691 { - background-position: 72.5% 70% !important; -} -.emoji1f692 { - background-position: 72.5% 72.5% !important; -} -.emoji1f693 { - background-position: 72.5% 75% !important; -} -.emoji1f694 { - background-position: 72.5% 77.5% !important; -} -.emoji1f695 { - background-position: 72.5% 80% !important; -} -.emoji1f696 { - background-position: 72.5% 82.5% !important; -} -.emoji1f697 { - background-position: 72.5% 85% !important; -} -.emoji1f698 { - background-position: 72.5% 87.5% !important; -} -.emoji1f699 { - background-position: 72.5% 90% !important; -} -.emoji1f69a { - background-position: 72.5% 92.5% !important; -} -.emoji1f69b { - background-position: 72.5% 95% !important; -} -.emoji1f69c { - background-position: 72.5% 97.5% !important; -} -.emoji1f69d { - background-position: 72.5% 100% !important; -} -.emoji1f69e { - background-position: 75% 0% !important; -} -.emoji1f69f { - background-position: 75% 2.5% !important; -} -.emoji1f6a0 { - background-position: 75% 5% !important; -} -.emoji1f6a1 { - background-position: 75% 7.5% !important; -} -.emoji1f6a2 { - background-position: 75% 10% !important; -} -.emoji1f6a3 { - background-position: 75% 12.5% !important; -} -.emoji1f6a4 { - background-position: 75% 27.5% !important; -} -.emoji1f6a5 { - background-position: 75% 30% !important; -} -.emoji1f6a6 { - background-position: 75% 32.5% !important; -} -.emoji1f6a7 { - background-position: 75% 35% !important; -} -.emoji1f6a8 { - background-position: 75% 37.5% !important; -} -.emoji1f6a9 { - background-position: 75% 40% !important; -} -.emoji1f6aa { - background-position: 75% 42.5% !important; -} -.emoji1f6ab { - background-position: 75% 45% !important; -} -.emoji1f6ac { - background-position: 75% 47.5% !important; -} -.emoji1f6ad { - background-position: 75% 50% !important; -} -.emoji1f6ae { - background-position: 75% 52.5% !important; -} -.emoji1f6af { - background-position: 75% 55% !important; -} -.emoji1f6b0 { - background-position: 75% 57.5% !important; -} -.emoji1f6b1 { - background-position: 75% 60% !important; -} -.emoji1f6b2 { - background-position: 75% 62.5% !important; -} -.emoji1f6b3 { - background-position: 75% 65% !important; -} -.emoji1f6b4 { - background-position: 75% 67.5% !important; -} -.emoji1f6b5 { - background-position: 75% 82.5% !important; -} -.emoji1f6b6 { - background-position: 75% 97.5% !important; -} -.emoji1f6b7 { - background-position: 77.5% 10% !important; -} -.emoji1f6b8 { - background-position: 77.5% 12.5% !important; -} -.emoji1f6b9 { - background-position: 77.5% 15% !important; -} -.emoji1f6ba { - background-position: 77.5% 17.5% !important; -} -.emoji1f6bb { - background-position: 77.5% 20% !important; -} -.emoji1f6bc { - background-position: 77.5% 22.5% !important; -} -.emoji1f6bd { - background-position: 77.5% 25% !important; -} -.emoji1f6be { - background-position: 77.5% 27.5% !important; -} -.emoji1f6bf { - background-position: 77.5% 30% !important; -} -.emoji1f6c0 { - background-position: 77.5% 32.5% !important; -} -.emoji1f6c1 { - background-position: 77.5% 47.5% !important; -} -.emoji1f6c2 { - background-position: 77.5% 50% !important; -} -.emoji1f6c3 { - background-position: 77.5% 52.5% !important; -} -.emoji1f6c4 { - background-position: 77.5% 55% !important; -} -.emoji1f6c5 { - background-position: 77.5% 57.5% !important; -} -.emoji1f6cb { - background-position: 77.5% 60% !important; -} -.emoji1f6cc { - background-position: 77.5% 62.5% !important; -} -.emoji1f6cd { - background-position: 77.5% 65% !important; -} -.emoji1f6ce { - background-position: 77.5% 67.5% !important; -} -.emoji1f6cf { - background-position: 77.5% 70% !important; -} -.emoji1f6d0 { - background-position: 77.5% 72.5% !important; -} -.emoji1f6e0 { - background-position: 77.5% 75% !important; -} -.emoji1f6e1 { - background-position: 77.5% 77.5% !important; -} -.emoji1f6e2 { - background-position: 77.5% 80% !important; -} -.emoji1f6e3 { - background-position: 77.5% 82.5% !important; -} -.emoji1f6e4 { - background-position: 77.5% 85% !important; -} -.emoji1f6e5 { - background-position: 77.5% 87.5% !important; -} -.emoji1f6e9 { - background-position: 77.5% 90% !important; -} -.emoji1f6eb { - background-position: 77.5% 92.5% !important; -} -.emoji1f6ec { - background-position: 77.5% 95% !important; -} -.emoji1f6f0 { - background-position: 77.5% 97.5% !important; -} -.emoji1f6f3 { - background-position: 77.5% 100% !important; -} -.emoji1f910 { - background-position: 80% 0% !important; -} -.emoji1f911 { - background-position: 80% 2.5% !important; -} -.emoji1f912 { - background-position: 80% 5% !important; -} -.emoji1f913 { - background-position: 80% 7.5% !important; -} -.emoji1f914 { - background-position: 80% 10% !important; -} -.emoji1f915 { - background-position: 80% 12.5% !important; -} -.emoji1f916 { - background-position: 80% 15% !important; -} -.emoji1f917 { - background-position: 80% 17.5% !important; -} -.emoji1f918 { - background-position: 80% 20% !important; -} -.emoji1f980 { - background-position: 80% 35% !important; -} -.emoji1f981 { - background-position: 80% 37.5% !important; -} -.emoji1f982 { - background-position: 80% 40% !important; -} -.emoji1f983 { - background-position: 80% 42.5% !important; -} -.emoji1f984 { - background-position: 80% 45% !important; -} -.emoji1f9c0 { - background-position: 80% 47.5% !important; -} -.emoji2320e3 { - background-position: 80% 50% !important; -} -.emoji2a20e3 { - background-position: 80% 52.5% !important; -} -.emoji3020e3 { - background-position: 80% 55% !important; -} -.emoji3120e3 { - background-position: 80% 57.5% !important; -} -.emoji3220e3 { - background-position: 80% 60% !important; -} -.emoji3320e3 { - background-position: 80% 62.5% !important; -} -.emoji3420e3 { - background-position: 80% 65% !important; -} -.emoji3520e3 { - background-position: 80% 67.5% !important; -} -.emoji3620e3 { - background-position: 80% 70% !important; -} -.emoji3720e3 { - background-position: 80% 72.5% !important; -} -.emoji3820e3 { - background-position: 80% 75% !important; -} -.emoji3920e3 { - background-position: 80% 77.5% !important; -} -.emoji1f1e61f1e8 { - background-position: 80% 80% !important; -} -.emoji1f1e61f1e9 { - background-position: 80% 82.5% !important; -} -.emoji1f1e61f1ea { - background-position: 80% 85% !important; -} -.emoji1f1e61f1eb { - background-position: 80% 87.5% !important; -} -.emoji1f1e61f1ec { - background-position: 80% 90% !important; -} -.emoji1f1e61f1ee { - background-position: 80% 92.5% !important; -} -.emoji1f1e61f1f1 { - background-position: 80% 95% !important; -} -.emoji1f1e61f1f2 { - background-position: 80% 97.5% !important; -} -.emoji1f1e61f1f4 { - background-position: 80% 100% !important; -} -.emoji1f1e61f1f6 { - background-position: 82.5% 0% !important; -} -.emoji1f1e61f1f7 { - background-position: 82.5% 2.5% !important; -} -.emoji1f1e61f1f8 { - background-position: 82.5% 5% !important; -} -.emoji1f1e61f1f9 { - background-position: 82.5% 7.5% !important; -} -.emoji1f1e61f1fa { - background-position: 82.5% 10% !important; -} -.emoji1f1e61f1fc { - background-position: 82.5% 12.5% !important; -} -.emoji1f1e61f1fd { - background-position: 82.5% 15% !important; -} -.emoji1f1e61f1ff { - background-position: 82.5% 17.5% !important; -} -.emoji1f1e71f1e6 { - background-position: 82.5% 20% !important; -} -.emoji1f1e71f1e7 { - background-position: 82.5% 22.5% !important; -} -.emoji1f1e71f1e9 { - background-position: 82.5% 25% !important; -} -.emoji1f1e71f1ea { - background-position: 82.5% 27.5% !important; -} -.emoji1f1e71f1eb { - background-position: 82.5% 30% !important; -} -.emoji1f1e71f1ec { - background-position: 82.5% 32.5% !important; -} -.emoji1f1e71f1ed { - background-position: 82.5% 35% !important; -} -.emoji1f1e71f1ee { - background-position: 82.5% 37.5% !important; -} -.emoji1f1e71f1ef { - background-position: 82.5% 40% !important; -} -.emoji1f1e71f1f1 { - background-position: 82.5% 42.5% !important; -} -.emoji1f1e71f1f2 { - background-position: 82.5% 45% !important; -} -.emoji1f1e71f1f3 { - background-position: 82.5% 47.5% !important; -} -.emoji1f1e71f1f4 { - background-position: 82.5% 50% !important; -} -.emoji1f1e71f1f6 { - background-position: 82.5% 52.5% !important; -} -.emoji1f1e71f1f7 { - background-position: 82.5% 55% !important; -} -.emoji1f1e71f1f8 { - background-position: 82.5% 57.5% !important; -} -.emoji1f1e71f1f9 { - background-position: 82.5% 60% !important; -} -.emoji1f1e71f1fb { - background-position: 82.5% 62.5% !important; -} -.emoji1f1e71f1fc { - background-position: 82.5% 65% !important; -} -.emoji1f1e71f1fe { - background-position: 82.5% 67.5% !important; -} -.emoji1f1e71f1ff { - background-position: 82.5% 70% !important; -} -.emoji1f1e81f1e6 { - background-position: 82.5% 72.5% !important; -} -.emoji1f1e81f1e8 { - background-position: 82.5% 75% !important; -} -.emoji1f1e81f1e9 { - background-position: 82.5% 77.5% !important; -} -.emoji1f1e81f1eb { - background-position: 82.5% 80% !important; -} -.emoji1f1e81f1ec { - background-position: 82.5% 82.5% !important; -} -.emoji1f1e81f1ed { - background-position: 82.5% 85% !important; -} -.emoji1f1e81f1ee { - background-position: 82.5% 87.5% !important; -} -.emoji1f1e81f1f0 { - background-position: 82.5% 90% !important; -} -.emoji1f1e81f1f1 { - background-position: 82.5% 92.5% !important; -} -.emoji1f1e81f1f2 { - background-position: 82.5% 95% !important; -} -.emoji1f1e81f1f3 { - background-position: 82.5% 97.5% !important; -} -.emoji1f1e81f1f4 { - background-position: 82.5% 100% !important; -} -.emoji1f1e81f1f5 { - background-position: 85% 0% !important; -} -.emoji1f1e81f1f7 { - background-position: 85% 2.5% !important; -} -.emoji1f1e81f1fa { - background-position: 85% 5% !important; -} -.emoji1f1e81f1fb { - background-position: 85% 7.5% !important; -} -.emoji1f1e81f1fc { - background-position: 85% 10% !important; -} -.emoji1f1e81f1fd { - background-position: 85% 12.5% !important; -} -.emoji1f1e81f1fe { - background-position: 85% 15% !important; -} -.emoji1f1e81f1ff { - background-position: 85% 17.5% !important; -} -.emoji1f1e91f1ea { - background-position: 85% 20% !important; -} -.emoji1f1e91f1ec { - background-position: 85% 22.5% !important; -} -.emoji1f1e91f1ef { - background-position: 85% 25% !important; -} -.emoji1f1e91f1f0 { - background-position: 85% 27.5% !important; -} -.emoji1f1e91f1f2 { - background-position: 85% 30% !important; -} -.emoji1f1e91f1f4 { - background-position: 85% 32.5% !important; -} -.emoji1f1e91f1ff { - background-position: 85% 35% !important; -} -.emoji1f1ea1f1e6 { - background-position: 85% 37.5% !important; -} -.emoji1f1ea1f1e8 { - background-position: 85% 40% !important; -} -.emoji1f1ea1f1ea { - background-position: 85% 42.5% !important; -} -.emoji1f1ea1f1ec { - background-position: 85% 45% !important; -} -.emoji1f1ea1f1ed { - background-position: 85% 47.5% !important; -} -.emoji1f1ea1f1f7 { - background-position: 85% 50% !important; -} -.emoji1f1ea1f1f8 { - background-position: 85% 52.5% !important; -} -.emoji1f1ea1f1f9 { - background-position: 85% 55% !important; -} -.emoji1f1ea1f1fa { - background-position: 85% 57.5% !important; -} -.emoji1f1eb1f1ee { - background-position: 85% 60% !important; -} -.emoji1f1eb1f1ef { - background-position: 85% 62.5% !important; -} -.emoji1f1eb1f1f0 { - background-position: 85% 65% !important; -} -.emoji1f1eb1f1f2 { - background-position: 85% 67.5% !important; -} -.emoji1f1eb1f1f4 { - background-position: 85% 70% !important; -} -.emoji1f1eb1f1f7 { - background-position: 85% 72.5% !important; -} -.emoji1f1ec1f1e6 { - background-position: 85% 75% !important; -} -.emoji1f1ec1f1e7 { - background-position: 85% 77.5% !important; -} -.emoji1f1ec1f1e9 { - background-position: 85% 80% !important; -} -.emoji1f1ec1f1ea { - background-position: 85% 82.5% !important; -} -.emoji1f1ec1f1eb { - background-position: 85% 85% !important; -} -.emoji1f1ec1f1ec { - background-position: 85% 87.5% !important; -} -.emoji1f1ec1f1ed { - background-position: 85% 90% !important; -} -.emoji1f1ec1f1ee { - background-position: 85% 92.5% !important; -} -.emoji1f1ec1f1f1 { - background-position: 85% 95% !important; -} -.emoji1f1ec1f1f2 { - background-position: 85% 97.5% !important; -} -.emoji1f1ec1f1f3 { - background-position: 85% 100% !important; -} -.emoji1f1ec1f1f5 { - background-position: 87.5% 0% !important; -} -.emoji1f1ec1f1f6 { - background-position: 87.5% 2.5% !important; -} -.emoji1f1ec1f1f7 { - background-position: 87.5% 5% !important; -} -.emoji1f1ec1f1f8 { - background-position: 87.5% 7.5% !important; -} -.emoji1f1ec1f1f9 { - background-position: 87.5% 10% !important; -} -.emoji1f1ec1f1fa { - background-position: 87.5% 12.5% !important; -} -.emoji1f1ec1f1fc { - background-position: 87.5% 15% !important; -} -.emoji1f1ec1f1fe { - background-position: 87.5% 17.5% !important; -} -.emoji1f1ed1f1f0 { - background-position: 87.5% 20% !important; -} -.emoji1f1ed1f1f2 { - background-position: 87.5% 22.5% !important; -} -.emoji1f1ed1f1f3 { - background-position: 87.5% 25% !important; -} -.emoji1f1ed1f1f7 { - background-position: 87.5% 27.5% !important; -} -.emoji1f1ed1f1f9 { - background-position: 87.5% 30% !important; -} -.emoji1f1ed1f1fa { - background-position: 87.5% 32.5% !important; -} -.emoji1f1ee1f1e8 { - background-position: 87.5% 35% !important; -} -.emoji1f1ee1f1e9 { - background-position: 87.5% 37.5% !important; -} -.emoji1f1ee1f1ea { - background-position: 87.5% 40% !important; -} -.emoji1f1ee1f1f1 { - background-position: 87.5% 42.5% !important; -} -.emoji1f1ee1f1f2 { - background-position: 87.5% 45% !important; -} -.emoji1f1ee1f1f3 { - background-position: 87.5% 47.5% !important; -} -.emoji1f1ee1f1f4 { - background-position: 87.5% 50% !important; -} -.emoji1f1ee1f1f6 { - background-position: 87.5% 52.5% !important; -} -.emoji1f1ee1f1f7 { - background-position: 87.5% 55% !important; -} -.emoji1f1ee1f1f8 { - background-position: 87.5% 57.5% !important; -} -.emoji1f1ee1f1f9 { - background-position: 87.5% 60% !important; -} -.emoji1f1ef1f1ea { - background-position: 87.5% 62.5% !important; -} -.emoji1f1ef1f1f2 { - background-position: 87.5% 65% !important; -} -.emoji1f1ef1f1f4 { - background-position: 87.5% 67.5% !important; -} -.emoji1f1ef1f1f5 { - background-position: 87.5% 70% !important; -} -.emoji1f1f01f1ea { - background-position: 87.5% 72.5% !important; -} -.emoji1f1f01f1ec { - background-position: 87.5% 75% !important; -} -.emoji1f1f01f1ed { - background-position: 87.5% 77.5% !important; -} -.emoji1f1f01f1ee { - background-position: 87.5% 80% !important; -} -.emoji1f1f01f1f2 { - background-position: 87.5% 82.5% !important; -} -.emoji1f1f01f1f3 { - background-position: 87.5% 85% !important; -} -.emoji1f1f01f1f5 { - background-position: 87.5% 87.5% !important; -} -.emoji1f1f01f1f7 { - background-position: 87.5% 90% !important; -} -.emoji1f1f01f1fc { - background-position: 87.5% 92.5% !important; -} -.emoji1f1f01f1fe { - background-position: 87.5% 95% !important; -} -.emoji1f1f01f1ff { - background-position: 87.5% 97.5% !important; -} -.emoji1f1f11f1e6 { - background-position: 87.5% 100% !important; -} -.emoji1f1f11f1e7 { - background-position: 90% 0% !important; -} -.emoji1f1f11f1e8 { - background-position: 90% 2.5% !important; -} -.emoji1f1f11f1ee { - background-position: 90% 5% !important; -} -.emoji1f1f11f1f0 { - background-position: 90% 7.5% !important; -} -.emoji1f1f11f1f7 { - background-position: 90% 10% !important; -} -.emoji1f1f11f1f8 { - background-position: 90% 12.5% !important; -} -.emoji1f1f11f1f9 { - background-position: 90% 15% !important; -} -.emoji1f1f11f1fa { - background-position: 90% 17.5% !important; -} -.emoji1f1f11f1fb { - background-position: 90% 20% !important; -} -.emoji1f1f11f1fe { - background-position: 90% 22.5% !important; -} -.emoji1f1f21f1e6 { - background-position: 90% 25% !important; -} -.emoji1f1f21f1e8 { - background-position: 90% 27.5% !important; -} -.emoji1f1f21f1e9 { - background-position: 90% 30% !important; -} -.emoji1f1f21f1ea { - background-position: 90% 32.5% !important; -} -.emoji1f1f21f1eb { - background-position: 90% 35% !important; -} -.emoji1f1f21f1ec { - background-position: 90% 37.5% !important; -} -.emoji1f1f21f1ed { - background-position: 90% 40% !important; -} -.emoji1f1f21f1f0 { - background-position: 90% 42.5% !important; -} -.emoji1f1f21f1f1 { - background-position: 90% 45% !important; -} -.emoji1f1f21f1f2 { - background-position: 90% 47.5% !important; -} -.emoji1f1f21f1f3 { - background-position: 90% 50% !important; -} -.emoji1f1f21f1f4 { - background-position: 90% 52.5% !important; -} -.emoji1f1f21f1f5 { - background-position: 90% 55% !important; -} -.emoji1f1f21f1f6 { - background-position: 90% 57.5% !important; -} -.emoji1f1f21f1f7 { - background-position: 90% 60% !important; -} -.emoji1f1f21f1f8 { - background-position: 90% 62.5% !important; -} -.emoji1f1f21f1f9 { - background-position: 90% 65% !important; -} -.emoji1f1f21f1fa { - background-position: 90% 67.5% !important; -} -.emoji1f1f21f1fb { - background-position: 90% 70% !important; -} -.emoji1f1f21f1fc { - background-position: 90% 72.5% !important; -} -.emoji1f1f21f1fd { - background-position: 90% 75% !important; -} -.emoji1f1f21f1fe { - background-position: 90% 77.5% !important; -} -.emoji1f1f21f1ff { - background-position: 90% 80% !important; -} -.emoji1f1f31f1e6 { - background-position: 90% 82.5% !important; -} -.emoji1f1f31f1e8 { - background-position: 90% 85% !important; -} -.emoji1f1f31f1ea { - background-position: 90% 87.5% !important; -} -.emoji1f1f31f1eb { - background-position: 90% 90% !important; -} -.emoji1f1f31f1ec { - background-position: 90% 92.5% !important; -} -.emoji1f1f31f1ee { - background-position: 90% 95% !important; -} -.emoji1f1f31f1f1 { - background-position: 90% 97.5% !important; -} -.emoji1f1f31f1f4 { - background-position: 90% 100% !important; -} -.emoji1f1f31f1f5 { - background-position: 92.5% 0% !important; -} -.emoji1f1f31f1f7 { - background-position: 92.5% 2.5% !important; -} -.emoji1f1f31f1fa { - background-position: 92.5% 5% !important; -} -.emoji1f1f31f1ff { - background-position: 92.5% 7.5% !important; -} -.emoji1f1f41f1f2 { - background-position: 92.5% 10% !important; -} -.emoji1f1f51f1e6 { - background-position: 92.5% 12.5% !important; -} -.emoji1f1f51f1ea { - background-position: 92.5% 15% !important; -} -.emoji1f1f51f1eb { - background-position: 92.5% 17.5% !important; -} -.emoji1f1f51f1ec { - background-position: 92.5% 20% !important; -} -.emoji1f1f51f1ed { - background-position: 92.5% 22.5% !important; -} -.emoji1f1f51f1f0 { - background-position: 92.5% 25% !important; -} -.emoji1f1f51f1f1 { - background-position: 92.5% 27.5% !important; -} -.emoji1f1f51f1f2 { - background-position: 92.5% 30% !important; -} -.emoji1f1f51f1f3 { - background-position: 92.5% 32.5% !important; -} -.emoji1f1f51f1f7 { - background-position: 92.5% 35% !important; -} -.emoji1f1f51f1f8 { - background-position: 92.5% 37.5% !important; -} -.emoji1f1f51f1f9 { - background-position: 92.5% 40% !important; -} -.emoji1f1f51f1fc { - background-position: 92.5% 42.5% !important; -} -.emoji1f1f51f1fe { - background-position: 92.5% 45% !important; -} -.emoji1f1f61f1e6 { - background-position: 92.5% 47.5% !important; -} -.emoji1f1f71f1ea { - background-position: 92.5% 50% !important; -} -.emoji1f1f71f1f4 { - background-position: 92.5% 52.5% !important; -} -.emoji1f1f71f1f8 { - background-position: 92.5% 55% !important; -} -.emoji1f1f71f1fa { - background-position: 92.5% 57.5% !important; -} -.emoji1f1f71f1fc { - background-position: 92.5% 60% !important; -} -.emoji1f1f81f1e6 { - background-position: 92.5% 62.5% !important; -} -.emoji1f1f81f1e7 { - background-position: 92.5% 65% !important; -} -.emoji1f1f81f1e8 { - background-position: 92.5% 67.5% !important; -} -.emoji1f1f81f1e9 { - background-position: 92.5% 70% !important; -} -.emoji1f1f81f1ea { - background-position: 92.5% 72.5% !important; -} -.emoji1f1f81f1ec { - background-position: 92.5% 75% !important; -} -.emoji1f1f81f1ed { - background-position: 92.5% 77.5% !important; -} -.emoji1f1f81f1ee { - background-position: 92.5% 80% !important; -} -.emoji1f1f81f1ef { - background-position: 92.5% 82.5% !important; -} -.emoji1f1f81f1f0 { - background-position: 92.5% 85% !important; -} -.emoji1f1f81f1f1 { - background-position: 92.5% 87.5% !important; -} -.emoji1f1f81f1f2 { - background-position: 92.5% 90% !important; -} -.emoji1f1f81f1f3 { - background-position: 92.5% 92.5% !important; -} -.emoji1f1f81f1f4 { - background-position: 92.5% 95% !important; -} -.emoji1f1f81f1f7 { - background-position: 92.5% 97.5% !important; -} -.emoji1f1f81f1f8 { - background-position: 92.5% 100% !important; -} -.emoji1f1f81f1f9 { - background-position: 95% 0% !important; -} -.emoji1f1f81f1fb { - background-position: 95% 2.5% !important; -} -.emoji1f1f81f1fd { - background-position: 95% 5% !important; -} -.emoji1f1f81f1fe { - background-position: 95% 7.5% !important; -} -.emoji1f1f81f1ff { - background-position: 95% 10% !important; -} -.emoji1f1f91f1e6 { - background-position: 95% 12.5% !important; -} -.emoji1f1f91f1e8 { - background-position: 95% 15% !important; -} -.emoji1f1f91f1e9 { - background-position: 95% 17.5% !important; -} -.emoji1f1f91f1eb { - background-position: 95% 20% !important; -} -.emoji1f1f91f1ec { - background-position: 95% 22.5% !important; -} -.emoji1f1f91f1ed { - background-position: 95% 25% !important; -} -.emoji1f1f91f1ef { - background-position: 95% 27.5% !important; -} -.emoji1f1f91f1f0 { - background-position: 95% 30% !important; -} -.emoji1f1f91f1f1 { - background-position: 95% 32.5% !important; -} -.emoji1f1f91f1f2 { - background-position: 95% 35% !important; -} -.emoji1f1f91f1f3 { - background-position: 95% 37.5% !important; -} -.emoji1f1f91f1f4 { - background-position: 95% 40% !important; -} -.emoji1f1f91f1f7 { - background-position: 95% 42.5% !important; -} -.emoji1f1f91f1f9 { - background-position: 95% 45% !important; -} -.emoji1f1f91f1fb { - background-position: 95% 47.5% !important; -} -.emoji1f1f91f1fc { - background-position: 95% 50% !important; -} -.emoji1f1f91f1ff { - background-position: 95% 52.5% !important; -} -.emoji1f1fa1f1e6 { - background-position: 95% 55% !important; -} -.emoji1f1fa1f1ec { - background-position: 95% 57.5% !important; -} -.emoji1f1fa1f1f2 { - background-position: 95% 60% !important; -} -.emoji1f1fa1f1f8 { - background-position: 95% 62.5% !important; -} -.emoji1f1fa1f1fe { - background-position: 95% 65% !important; -} -.emoji1f1fa1f1ff { - background-position: 95% 67.5% !important; -} -.emoji1f1fb1f1e6 { - background-position: 95% 70% !important; -} -.emoji1f1fb1f1e8 { - background-position: 95% 72.5% !important; -} -.emoji1f1fb1f1ea { - background-position: 95% 75% !important; -} -.emoji1f1fb1f1ec { - background-position: 95% 77.5% !important; -} -.emoji1f1fb1f1ee { - background-position: 95% 80% !important; -} -.emoji1f1fb1f1f3 { - background-position: 95% 82.5% !important; -} -.emoji1f1fb1f1fa { - background-position: 95% 85% !important; -} -.emoji1f1fc1f1eb { - background-position: 95% 87.5% !important; -} -.emoji1f1fc1f1f8 { - background-position: 95% 90% !important; -} -.emoji1f1fd1f1f0 { - background-position: 95% 92.5% !important; -} -.emoji1f1fe1f1ea { - background-position: 95% 95% !important; -} -.emoji1f1fe1f1f9 { - background-position: 95% 97.5% !important; -} -.emoji1f1ff1f1e6 { - background-position: 95% 100% !important; -} -.emoji1f1ff1f1f2 { - background-position: 97.5% 0% !important; -} -.emoji1f1ff1f1fc { - background-position: 97.5% 2.5% !important; -} -.emoji1f468200d1f468200d1f466 { - background-position: 97.5% 5% !important; -} -.emoji1f468200d1f468200d1f466200d1f466 { - background-position: 97.5% 7.5% !important; -} -.emoji1f468200d1f468200d1f467 { - background-position: 97.5% 10% !important; -} -.emoji1f468200d1f468200d1f467200d1f466 { - background-position: 97.5% 12.5% !important; -} -.emoji1f468200d1f468200d1f467200d1f467 { - background-position: 97.5% 15% !important; -} -.emoji1f468200d1f469200d1f466200d1f466 { - background-position: 97.5% 17.5% !important; -} -.emoji1f468200d1f469200d1f467 { - background-position: 97.5% 20% !important; -} -.emoji1f468200d1f469200d1f467200d1f466 { - background-position: 97.5% 22.5% !important; -} -.emoji1f468200d1f469200d1f467200d1f467 { - background-position: 97.5% 25% !important; -} -.emoji1f468200d2764fe0f200d1f468 { - background-position: 97.5% 27.5% !important; -} -.emoji1f468200d2764fe0f200d1f48b200d1f468 { - background-position: 97.5% 30% !important; -} -.emoji1f469200d1f469200d1f466 { - background-position: 97.5% 32.5% !important; -} -.emoji1f469200d1f469200d1f466200d1f466 { - background-position: 97.5% 35% !important; -} -.emoji1f469200d1f469200d1f467 { - background-position: 97.5% 37.5% !important; -} -.emoji1f469200d1f469200d1f467200d1f466 { - background-position: 97.5% 40% !important; -} -.emoji1f469200d1f469200d1f467200d1f467 { - background-position: 97.5% 42.5% !important; -} -.emoji1f469200d2764fe0f200d1f469 { - background-position: 97.5% 45% !important; -} -.emoji1f469200d2764fe0f200d1f48b200d1f469 { - background-position: 97.5% 47.5% !important; -} -/* - * typehead.js-bootstrap3.less - * @version 0.2.3 - * https://github.com/hyspace/typeahead.js-bootstrap3.less - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - */ -.has-warning .twitter-typeahead .tt-input, -.has-warning .twitter-typeahead .tt-hint { - border-color: #8a6d3b; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -} -.has-warning .twitter-typeahead .tt-input:focus, -.has-warning .twitter-typeahead .tt-hint:focus { - border-color: #66512c; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; -} -.has-error .twitter-typeahead .tt-input, -.has-error .twitter-typeahead .tt-hint { - border-color: #a94442; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -} -.has-error .twitter-typeahead .tt-input:focus, -.has-error .twitter-typeahead .tt-hint:focus { - border-color: #843534; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; -} -.has-success .twitter-typeahead .tt-input, -.has-success .twitter-typeahead .tt-hint { - border-color: #3c763d; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -} -.has-success .twitter-typeahead .tt-input:focus, -.has-success .twitter-typeahead .tt-hint:focus { - border-color: #2b542c; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; -} -.input-group .twitter-typeahead:first-child .tt-input, -.input-group .twitter-typeahead:first-child .tt-hint { - border-bottom-left-radius: 3px; - border-top-left-radius: 3px; -} -.input-group .twitter-typeahead:last-child .tt-input, -.input-group .twitter-typeahead:last-child .tt-hint { - border-bottom-right-radius: 3px; - border-top-right-radius: 3px; -} -.input-group.input-group-sm .twitter-typeahead .tt-input, -.input-group.input-group-sm .twitter-typeahead .tt-hint { - height: 28px; - padding: 5px 10px; - font-size: 11px; - line-height: 1.456; - border-radius: 2px; -} -select.input-group.input-group-sm .twitter-typeahead .tt-input, -select.input-group.input-group-sm .twitter-typeahead .tt-hint { - height: 28px; - line-height: 28px; -} -textarea.input-group.input-group-sm .twitter-typeahead .tt-input, -textarea.input-group.input-group-sm .twitter-typeahead .tt-hint, -select[multiple].input-group.input-group-sm .twitter-typeahead .tt-input, -select[multiple].input-group.input-group-sm .twitter-typeahead .tt-hint { - height: auto; -} -.input-group.input-group-sm .twitter-typeahead:not(:first-child):not(:last-child) .tt-input, -.input-group.input-group-sm .twitter-typeahead:not(:first-child):not(:last-child) .tt-hint { - border-radius: 0; -} -.input-group.input-group-sm .twitter-typeahead:first-child .tt-input, -.input-group.input-group-sm .twitter-typeahead:first-child .tt-hint { - border-bottom-left-radius: 2px; - border-top-left-radius: 2px; - border-bottom-right-radius: 0; - border-top-right-radius: 0; -} -.input-group.input-group-sm .twitter-typeahead:last-child .tt-input, -.input-group.input-group-sm .twitter-typeahead:last-child .tt-hint { - border-bottom-left-radius: 0; - border-top-left-radius: 0; - border-bottom-right-radius: 2px; - border-top-right-radius: 2px; -} -.input-group.input-group-lg .twitter-typeahead .tt-input, -.input-group.input-group-lg .twitter-typeahead .tt-hint { - height: 42px; - padding: 10px 16px; - font-size: 16px; - line-height: 1.25; - border-radius: 4px; -} -select.input-group.input-group-lg .twitter-typeahead .tt-input, -select.input-group.input-group-lg .twitter-typeahead .tt-hint { - height: 42px; - line-height: 42px; -} -textarea.input-group.input-group-lg .twitter-typeahead .tt-input, -textarea.input-group.input-group-lg .twitter-typeahead .tt-hint, -select[multiple].input-group.input-group-lg .twitter-typeahead .tt-input, -select[multiple].input-group.input-group-lg .twitter-typeahead .tt-hint { - height: auto; -} -.input-group.input-group-lg .twitter-typeahead:not(:first-child):not(:last-child) .tt-input, -.input-group.input-group-lg .twitter-typeahead:not(:first-child):not(:last-child) .tt-hint { - border-radius: 0; -} -.input-group.input-group-lg .twitter-typeahead:first-child .tt-input, -.input-group.input-group-lg .twitter-typeahead:first-child .tt-hint { - border-bottom-left-radius: 4px; - border-top-left-radius: 4px; - border-bottom-right-radius: 0; - border-top-right-radius: 0; -} -.input-group.input-group-lg .twitter-typeahead:last-child .tt-input, -.input-group.input-group-lg .twitter-typeahead:last-child .tt-hint { - border-bottom-left-radius: 0; - border-top-left-radius: 0; - border-bottom-right-radius: 4px; - border-top-right-radius: 4px; -} -.twitter-typeahead { - width: 100%; - display: table-cell !important; - float: left; -} -.twitter-typeahead .tt-hint { - color: #a0acb8; -} -.twitter-typeahead .tt-input { - z-index: 2; -} -.twitter-typeahead .tt-input[disabled], -.twitter-typeahead .tt-input[readonly], -fieldset[disabled] .twitter-typeahead .tt-input { - cursor: not-allowed; - background-color: #ebedf0 !important; -} -.tt-dropdown-menu { - position: absolute; - top: 100%; - left: 0; - z-index: 1000; - min-width: 160px; - width: 100%; - padding: 5px 0; - margin: 2px 0 0; - list-style: none; - font-size: 13px; - background-color: #ffffff; - border: 1px solid #eeeeee; - border: 1px solid rgba(0, 0, 0, 0.06); - border-radius: 3px; - -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); - box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); - background-clip: padding-box; - *border-right-width: 2px; - *border-bottom-width: 2px; -} -.tt-dropdown-menu .tt-suggestion { - display: block; - padding: 3px 20px; - clear: both; - font-weight: normal; - line-height: 1.3856; - color: #47535f; - white-space: nowrap; -} -.tt-dropdown-menu .tt-suggestion.tt-cursor { - text-decoration: none; - outline: 0; - background-color: #f5f5f5; - color: #3c4650; -} -.tt-dropdown-menu .tt-suggestion.tt-cursor a { - color: #3c4650; -} -.tt-dropdown-menu .tt-suggestion p { - margin: 0; -} -.xdsoft_datetimepicker { - box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.506); - background: #fff; - border-bottom: 1px solid #bbb; - border-left: 1px solid #ccc; - border-right: 1px solid #ccc; - border-top: 1px solid #ccc; - color: #333; - font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; - padding: 8px; - padding-left: 0; - padding-top: 2px; - position: absolute; - z-index: 9999; - -moz-box-sizing: border-box; - box-sizing: border-box; - display: none; -} -.xdsoft_datetimepicker.xdsoft_rtl { - padding: 8px 0 8px 8px; -} -.xdsoft_datetimepicker iframe { - position: absolute; - left: 0; - top: 0; - width: 75px; - height: 210px; - background: transparent; - border: none; -} -/*For IE8 or lower*/ -.xdsoft_datetimepicker button { - border: none !important; -} -.xdsoft_noselect { - -webkit-touch-callout: none; - -webkit-user-select: none; - -khtml-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - -o-user-select: none; - user-select: none; -} -.xdsoft_noselect::selection { - background: transparent; -} -.xdsoft_noselect::-moz-selection { - background: transparent; -} -.xdsoft_datetimepicker.xdsoft_inline { - display: inline-block; - position: static; - box-shadow: none; -} -.xdsoft_datetimepicker * { - -moz-box-sizing: border-box; - box-sizing: border-box; - padding: 0; - margin: 0; -} -.xdsoft_datetimepicker .xdsoft_datepicker, -.xdsoft_datetimepicker .xdsoft_timepicker { - display: none; -} -.xdsoft_datetimepicker .xdsoft_datepicker.active, -.xdsoft_datetimepicker .xdsoft_timepicker.active { - display: block; -} -.xdsoft_datetimepicker .xdsoft_datepicker { - width: 224px; - float: left; - margin-left: 8px; -} -.xdsoft_datetimepicker.xdsoft_rtl .xdsoft_datepicker { - float: right; - margin-right: 8px; - margin-left: 0; -} -.xdsoft_datetimepicker.xdsoft_showweeks .xdsoft_datepicker { - width: 256px; -} -.xdsoft_datetimepicker .xdsoft_timepicker { - width: 58px; - float: left; - text-align: center; - margin-left: 8px; - margin-top: 0; -} -.xdsoft_datetimepicker.xdsoft_rtl .xdsoft_timepicker { - float: right; - margin-right: 8px; - margin-left: 0; -} -.xdsoft_datetimepicker .xdsoft_datepicker.active + .xdsoft_timepicker { - margin-top: 8px; - margin-bottom: 3px; -} -.xdsoft_datetimepicker .xdsoft_mounthpicker { - position: relative; - text-align: center; -} -.xdsoft_datetimepicker .xdsoft_label i, -.xdsoft_datetimepicker .xdsoft_prev, -.xdsoft_datetimepicker .xdsoft_next, -.xdsoft_datetimepicker .xdsoft_today_button { - background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAAeCAYAAADaW7vzAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6Q0NBRjI1NjM0M0UwMTFFNDk4NkFGMzJFQkQzQjEwRUIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6Q0NBRjI1NjQ0M0UwMTFFNDk4NkFGMzJFQkQzQjEwRUIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpDQ0FGMjU2MTQzRTAxMUU0OTg2QUYzMkVCRDNCMTBFQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpDQ0FGMjU2MjQzRTAxMUU0OTg2QUYzMkVCRDNCMTBFQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PoNEP54AAAIOSURBVHja7Jq9TsMwEMcxrZD4WpBYeKUCe+kTMCACHZh4BFfHO/AAIHZGFhYkBBsSEqxsLCAgXKhbXYOTxh9pfJVP+qutnZ5s/5Lz2Y5I03QhWji2GIcgAokWgfCxNvcOCCGKqiSqhUp0laHOne05vdEyGMfkdxJDVjgwDlEQgYQBgx+ULJaWSXXS6r/ER5FBVR8VfGftTKcITNs+a1XpcFoExREIDF14AVIFxgQUS+h520cdud6wNkC0UBw6BCO/HoCYwBhD8QCkQ/x1mwDyD4plh4D6DDV0TAGyo4HcawLIBBSLDkHeH0Mg2yVP3l4TQMZQDDsEOl/MgHQqhMNuE0D+oBh0CIr8MAKyazBH9WyBuKxDWgbXfjNf32TZ1KWm/Ap1oSk/R53UtQ5xTh3LUlMmT8gt6g51Q9p+SobxgJQ/qmsfZhWywGFSl0yBjCLJCMgXail3b7+rumdVJ2YRss4cN+r6qAHDkPWjPjdJCF4n9RmAD/V9A/Wp4NQassDjwlB6XBiCxcJQWmZZb8THFilfy/lfrTvLghq2TqTHrRMTKNJ0sIhdo15RT+RpyWwFdY96UZ/LdQKBGjcXpcc1AlSFEfLmouD+1knuxBDUVrvOBmoOC/rEcN7OQxKVeJTCiAdUzUJhA2Oez9QTkp72OTVcxDcXY8iKNkxGAJXmJCOQwOa6dhyXsOa6XwEGAKdeb5ET3rQdAAAAAElFTkSuQmCC); -} -.xdsoft_datetimepicker .xdsoft_label i { - opacity: 0.5; - background-position: -92px -19px; - display: inline-block; - width: 9px; - height: 20px; - vertical-align: middle; -} -.xdsoft_datetimepicker .xdsoft_prev { - float: left; - background-position: -20px 0; -} -.xdsoft_datetimepicker .xdsoft_today_button { - float: left; - background-position: -70px 0; - margin-left: 5px; -} -.xdsoft_datetimepicker .xdsoft_next { - float: right; - background-position: 0 0; -} -.xdsoft_datetimepicker .xdsoft_next, -.xdsoft_datetimepicker .xdsoft_prev, -.xdsoft_datetimepicker .xdsoft_today_button { - background-color: transparent; - background-repeat: no-repeat; - border: 0 none; - cursor: pointer; - display: block; - height: 30px; - opacity: 0.5; - -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; - outline: medium none; - overflow: hidden; - padding: 0; - position: relative; - text-indent: 100%; - white-space: nowrap; - width: 20px; - min-width: 0; -} -.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_prev, -.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_next { - float: none; - background-position: -40px -15px; - height: 15px; - width: 30px; - display: block; - margin-left: 14px; - margin-top: 7px; -} -.xdsoft_datetimepicker.xdsoft_rtl .xdsoft_timepicker .xdsoft_prev, -.xdsoft_datetimepicker.xdsoft_rtl .xdsoft_timepicker .xdsoft_next { - float: none; - margin-left: 0; - margin-right: 14px; -} -.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_prev { - background-position: -40px 0; - margin-bottom: 7px; - margin-top: 0; -} -.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box { - height: 151px; - overflow: hidden; - border-bottom: 1px solid #ddd; -} -.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div { - background: #f5f5f5; - border-top: 1px solid #ddd; - color: #666; - font-size: 12px; - text-align: center; - border-collapse: collapse; - cursor: pointer; - border-bottom-width: 0; - height: 25px; - line-height: 25px; -} -.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:first-child { - border-top-width: 0; -} -.xdsoft_datetimepicker .xdsoft_today_button:hover, -.xdsoft_datetimepicker .xdsoft_next:hover, -.xdsoft_datetimepicker .xdsoft_prev:hover { - opacity: 1; - -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; -} -.xdsoft_datetimepicker .xdsoft_label { - display: inline; - position: relative; - z-index: 9999; - margin: 0; - padding: 5px 3px; - font-size: 14px; - line-height: 20px; - font-weight: bold; - background-color: #fff; - float: left; - width: 182px; - text-align: center; - cursor: pointer; -} -.xdsoft_datetimepicker .xdsoft_label:hover > span { - text-decoration: underline; -} -.xdsoft_datetimepicker .xdsoft_label:hover i { - opacity: 1.0; -} -.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select { - border: 1px solid #ccc; - position: absolute; - right: 0; - top: 30px; - z-index: 101; - display: none; - background: #fff; - max-height: 160px; - overflow-y: hidden; -} -.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select.xdsoft_monthselect { - right: -7px; -} -.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select.xdsoft_yearselect { - right: 2px; -} -.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option:hover { - color: #fff; - background: #ff8000; -} -.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option { - padding: 2px 10px 2px 5px; - text-decoration: none !important; -} -.xdsoft_datetimepicker .xdsoft_label > .xdsoft_select > div > .xdsoft_option.xdsoft_current { - background: #33aaff; - box-shadow: #178fe5 0 1px 3px 0 inset; - color: #fff; - font-weight: 700; -} -.xdsoft_datetimepicker .xdsoft_month { - width: 100px; - text-align: right; -} -.xdsoft_datetimepicker .xdsoft_calendar { - clear: both; -} -.xdsoft_datetimepicker .xdsoft_year { - width: 48px; - margin-left: 5px; -} -.xdsoft_datetimepicker .xdsoft_calendar table { - border-collapse: collapse; - width: 100%; -} -.xdsoft_datetimepicker .xdsoft_calendar td > div { - padding-right: 5px; -} -.xdsoft_datetimepicker .xdsoft_calendar th { - height: 25px; -} -.xdsoft_datetimepicker .xdsoft_calendar td, -.xdsoft_datetimepicker .xdsoft_calendar th { - width: 14.2857142%; - background: #f5f5f5; - border: 1px solid #ddd; - color: #666; - font-size: 12px; - text-align: right; - vertical-align: middle; - padding: 0; - border-collapse: collapse; - cursor: pointer; - height: 25px; -} -.xdsoft_datetimepicker.xdsoft_showweeks .xdsoft_calendar td, -.xdsoft_datetimepicker.xdsoft_showweeks .xdsoft_calendar th { - width: 12.5%; -} -.xdsoft_datetimepicker .xdsoft_calendar th { - background: #f1f1f1; -} -.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_today { - color: #33aaff; -} -.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_highlighted_default { - background: #ffe9d2; - box-shadow: #ffb871 0 1px 4px 0 inset; - color: #000; -} -.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_highlighted_mint { - background: #c1ffc9; - box-shadow: #00dd1c 0 1px 4px 0 inset; - color: #000; -} -.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default, -.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current, -.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current { - background: #33aaff; - box-shadow: #178fe5 0 1px 3px 0 inset; - color: #fff; - font-weight: 700; -} -.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_other_month, -.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_disabled, -.xdsoft_datetimepicker .xdsoft_time_box > div > div.xdsoft_disabled { - opacity: 0.5; - -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; - cursor: default; -} -.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_other_month.xdsoft_disabled { - opacity: 0.2; - -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)"; -} -.xdsoft_datetimepicker .xdsoft_calendar td:hover, -.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover { - color: #fff !important; - background: #ff8000 !important; - box-shadow: none !important; -} -.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current.xdsoft_disabled:hover, -.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current.xdsoft_disabled:hover { - background: #33aaff !important; - box-shadow: #178fe5 0 1px 3px 0 inset !important; - color: #fff !important; -} -.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_disabled:hover, -.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_disabled:hover { - color: inherit !important; - background: inherit !important; - box-shadow: inherit !important; -} -.xdsoft_datetimepicker .xdsoft_calendar th { - font-weight: 700; - text-align: center; - color: #999; - cursor: default; -} -.xdsoft_datetimepicker .xdsoft_copyright { - color: #ccc !important; - font-size: 10px; - clear: both; - float: none; - margin-left: 8px; -} -.xdsoft_datetimepicker .xdsoft_copyright a { - color: #eeeeee !important; -} -.xdsoft_datetimepicker .xdsoft_copyright a:hover { - color: #aaaaaa !important; -} -.xdsoft_time_box { - position: relative; - border: 1px solid #ccc; -} -.xdsoft_scrollbar > .xdsoft_scroller { - background: #ccc !important; - height: 20px; - border-radius: 3px; -} -.xdsoft_scrollbar { - position: absolute; - width: 7px; - right: 0; - top: 0; - bottom: 0; - cursor: pointer; -} -.xdsoft_datetimepicker.xdsoft_rtl .xdsoft_scrollbar { - left: 0; - right: auto; -} -.xdsoft_scroller_box { - position: relative; -} -.xdsoft_datetimepicker.xdsoft_dark { - box-shadow: 0 5px 15px -5px rgba(255, 255, 255, 0.506); - background: #000; - border-bottom: 1px solid #444; - border-left: 1px solid #333; - border-right: 1px solid #333; - border-top: 1px solid #333; - color: #ccc; -} -.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box { - border-bottom: 1px solid #222; -} -.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box > div > div { - background: #0a0a0a; - border-top: 1px solid #222; - color: #999; -} -.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label { - background-color: #000; -} -.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label > .xdsoft_select { - border: 1px solid #333; - background: #000; -} -.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label > .xdsoft_select > div > .xdsoft_option:hover { - color: #000; - background: #007fff; -} -.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label > .xdsoft_select > div > .xdsoft_option.xdsoft_current { - background: #cc5500; - box-shadow: #b03e00 0 1px 3px 0 inset; - color: #000; -} -.xdsoft_datetimepicker.xdsoft_dark .xdsoft_label i, -.xdsoft_datetimepicker.xdsoft_dark .xdsoft_prev, -.xdsoft_datetimepicker.xdsoft_dark .xdsoft_next, -.xdsoft_datetimepicker.xdsoft_dark .xdsoft_today_button { - background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAAeCAYAAADaW7vzAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QUExQUUzOTA0M0UyMTFFNDlBM0FFQTJENTExRDVBODYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QUExQUUzOTE0M0UyMTFFNDlBM0FFQTJENTExRDVBODYiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpBQTFBRTM4RTQzRTIxMUU0OUEzQUVBMkQ1MTFENUE4NiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpBQTFBRTM4RjQzRTIxMUU0OUEzQUVBMkQ1MTFENUE4NiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pp0VxGEAAAIASURBVHja7JrNSgMxEMebtgh+3MSLr1T1Xn2CHoSKB08+QmR8Bx9A8e7RixdB9CKCoNdexIugxFlJa7rNZneTbLIpM/CnNLsdMvNjM8l0mRCiQ9Ye61IKCAgZAUnH+mU3MMZaHYChBnJUDzWOFZdVfc5+ZFLbrWDeXPwbxIqrLLfaeS0hEBVGIRQCEiZoHQwtlGSByCCdYBl8g8egTTAWoKQMRBRBcZxYlhzhKegqMOageErsCHVkk3hXIFooDgHB1KkHIHVgzKB4ADJQ/A1jAFmAYhkQqA5TOBtocrKrgXwQA8gcFIuAIO8sQSA7hidvPwaQGZSaAYHOUWJABhWWw2EMIH9QagQERU4SArJXo0ZZL18uvaxejXt/Em8xjVBXmvFr1KVm/AJ10tRe2XnraNqaJvKE3KHuUbfK1E+VHB0q40/y3sdQSxY4FHWeKJCunP8UyDdqJZenT3ntVV5jIYCAh20vT7ioP8tpf6E2lfEMwERe+whV1MHjwZB7PBiCxcGQWwKZKD62lfGNnP/1poFAA60T7rF1UgcKd2id3KDeUS+oLWV8DfWAepOfq00CgQabi9zjcgJVYVD7PVzQUAUGAQkbNJTBICDhgwYTjDYD6XeW08ZKh+A4pYkzenOxXUbvZcWz7E8ykRMnIHGX1XPl+1m2vPYpL+2qdb8CDAARlKFEz/ZVkAAAAABJRU5ErkJggg==); -} -.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td, -.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar th { - background: #0a0a0a; - border: 1px solid #222; - color: #999; -} -.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar th { - background: #0e0e0e; -} -.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_today { - color: #cc5500; -} -.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_highlighted_default { - background: #ffe9d2; - box-shadow: #ffb871 0 1px 4px 0 inset; - color: #000; -} -.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_highlighted_mint { - background: #c1ffc9; - box-shadow: #00dd1c 0 1px 4px 0 inset; - color: #000; -} -.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_default, -.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td.xdsoft_current, -.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current { - background: #cc5500; - box-shadow: #b03e00 0 1px 3px 0 inset; - color: #000; -} -.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar td:hover, -.xdsoft_datetimepicker.xdsoft_dark .xdsoft_timepicker .xdsoft_time_box > div > div:hover { - color: #000 !important; - background: #007fff !important; -} -.xdsoft_datetimepicker.xdsoft_dark .xdsoft_calendar th { - color: #666; -} -.xdsoft_datetimepicker.xdsoft_dark .xdsoft_copyright { - color: #333333 !important; -} -.xdsoft_datetimepicker.xdsoft_dark .xdsoft_copyright a { - color: #111111 !important; -} -.xdsoft_datetimepicker.xdsoft_dark .xdsoft_copyright a:hover { - color: #555555 !important; -} -.xdsoft_dark .xdsoft_time_box { - border: 1px solid #333; -} -.xdsoft_dark .xdsoft_scrollbar > .xdsoft_scroller { - background: #333 !important; -} -.xdsoft_datetimepicker .xdsoft_save_selected { - display: block; - border: 1px solid #dddddd !important; - margin-top: 5px; - width: 100%; - color: #454551; - font-size: 13px; -} -.xdsoft_datetimepicker .blue-gradient-button { - font-family: "museo-sans", "Book Antiqua", sans-serif; - font-size: 12px; - font-weight: 300; - color: #82878c; - height: 28px; - position: relative; - padding: 4px 17px 4px 33px; - border: 1px solid #d7d8da; - background: -moz-linear-gradient(top, #ffffff 0%, #f4f8fa 73%); - /* FF3.6+ */ - background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(73%, #f4f8fa)); - /* Chrome,Safari4+ */ - background: -webkit-linear-gradient(top, #ffffff 0%, #f4f8fa 73%); - /* Chrome10+,Safari5.1+ */ - background: -o-linear-gradient(top, #ffffff 0%, #f4f8fa 73%); - /* Opera 11.10+ */ - background: -ms-linear-gradient(top, #ffffff 0%, #f4f8fa 73%); - /* IE10+ */ - background: linear-gradient(to bottom, #ffffff 0%, #f4f8fa 73%); - /* W3C */ - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff', endColorstr='#f4f8fa', GradientType=0); - /* IE6-9 */ -} -.xdsoft_datetimepicker .blue-gradient-button:hover, -.xdsoft_datetimepicker .blue-gradient-button:focus, -.xdsoft_datetimepicker .blue-gradient-button:hover span, -.xdsoft_datetimepicker .blue-gradient-button:focus span { - color: #454551; - background: -moz-linear-gradient(top, #f4f8fa 0%, #ffffff 73%); - /* FF3.6+ */ - background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f4f8fa), color-stop(73%, #ffffff)); - /* Chrome,Safari4+ */ - background: -webkit-linear-gradient(top, #f4f8fa 0%, #ffffff 73%); - /* Chrome10+,Safari5.1+ */ - background: -o-linear-gradient(top, #f4f8fa 0%, #ffffff 73%); - /* Opera 11.10+ */ - background: -ms-linear-gradient(top, #f4f8fa 0%, #ffffff 73%); - /* IE10+ */ - background: linear-gradient(to bottom, #f4f8fa 0%, #ffffff 73%); - /* W3C */ - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f4f8fa', endColorstr='#FFF', GradientType=0); - /* IE6-9 */ -} -/*! - * FullCalendar v2.2.0 Stylesheet - * Docs & License: http://arshaw.com/fullcalendar/ - * (c) 2013 Adam Shaw - */ -.fc { - direction: ltr; - text-align: left; -} -.fc-rtl { - text-align: right; -} -body .fc { - /* extra precedence to overcome jqui */ - font-size: 1em; -} -/* Colors ---------------------------------------------------------------------------------------------------*/ -.fc-unthemed th, -.fc-unthemed td, -.fc-unthemed hr, -.fc-unthemed thead, -.fc-unthemed tbody, -.fc-unthemed .fc-row, -.fc-unthemed .fc-popover { - border-color: #ddd; -} -.fc-unthemed .fc-popover { - background-color: #fff; -} -.fc-unthemed hr, -.fc-unthemed .fc-popover .fc-header { - background: #eee; -} -.fc-unthemed .fc-popover .fc-header .fc-close { - color: #666; -} -.fc-unthemed .fc-today { - background: #fcf8e3; -} -.fc-highlight { - /* when user is selecting cells */ - background: #bce8f1; - opacity: .3; - filter: alpha(opacity=30); - /* for IE */ -} -.fc-bgevent { - /* default look for background events */ - background: #8fdf82; - opacity: .3; - filter: alpha(opacity=30); - /* for IE */ -} -.fc-nonbusiness { - /* default look for non-business-hours areas */ - /* will inherit .fc-bgevent's styles */ - background: #ccc; -} -/* Icons (inline elements with styled text that mock arrow icons) ---------------------------------------------------------------------------------------------------*/ -.fc-icon { - display: inline-block; - font-size: 2em; - line-height: .5em; - height: .5em; - /* will make the total height 1em */ - font-family: "Courier New", Courier, monospace; -} -.fc-icon-left-single-arrow:after { - content: "\02039"; - font-weight: bold; -} -.fc-icon-right-single-arrow:after { - content: "\0203A"; - font-weight: bold; -} -.fc-icon-left-double-arrow:after { - content: "\000AB"; -} -.fc-icon-right-double-arrow:after { - content: "\000BB"; -} -.fc-icon-x:after { - content: "\000D7"; -} -/* Buttons (styled