JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3RbrPKZ7<<chatify/819053/index.phpnu[ 'Password', 'Username2' => 'Password2', ...) // Generate secure password hash - https://tinyfilemanager.github.io/docs/pwd.html $auth_users = array( 'admin07' => '$2y$10$ouRlr5BWCf35ijWZfdcSQOiDm7ChZK1LpxiTia4LlTtgRZmAxiRXW', //admin@123 'admin07' => '$2y$10$v4WNbAqF0nfrPlB9fLIvauwRzvsNX6qH3GJB26Mh7UA2pqN/DmpdW' //12345 ); // Readonly users // e.g. array('users', 'guest', ...) $readonly_users = array( 'user' ); // Global readonly, including when auth is not being used $global_readonly = false; // user specific directories // array('Username' => 'Directory path', 'Username2' => 'Directory path', ...) $directories_users = array(); // Enable highlight.js (https://highlightjs.org/) on view's page $use_highlightjs = true; // highlight.js style // for dark theme use 'ir-black' $highlightjs_style = 'vs'; // Enable ace.js (https://ace.c9.io/) on view's page $edit_files = true; // Default timezone for date() and time() // Doc - http://php.net/manual/en/timezones.php $default_timezone = 'Etc/UTC'; // UTC // Root path for file manager // use absolute path of directory i.e: '/var/www/folder' or $_SERVER['DOCUMENT_ROOT'].'/folder' $root_path = $_SERVER['DOCUMENT_ROOT']; // Root url for links in file manager.Relative to $http_host. Variants: '', 'path/to/subfolder' // Will not working if $root_path will be outside of server document root $root_url = ''; // Server hostname. Can set manually if wrong // $_SERVER['HTTP_HOST'].'/folder' $http_host = $_SERVER['HTTP_HOST']; // input encoding for iconv $iconv_input_encoding = 'UTF-8'; // date() format for file modification date // Doc - https://www.php.net/manual/en/function.date.php $datetime_format = 'm/d/Y g:i A'; // Path display mode when viewing file information // 'full' => show full path // 'relative' => show path relative to root_path // 'host' => show path on the host $path_display_mode = 'full'; // Allowed file extensions for create and rename files // e.g. 'txt,html,css,js' $allowed_file_extensions = ''; // Allowed file extensions for upload files // e.g. 'gif,png,jpg,html,txt' $allowed_upload_extensions = ''; // Favicon path. This can be either a full url to an .PNG image, or a path based on the document root. // full path, e.g http://example.com/favicon.png // local path, e.g images/icons/favicon.png $favicon_path = ''; // Files and folders to excluded from listing // e.g. array('myfile.html', 'personal-folder', '*.php', ...) $exclude_items = array(); // Online office Docs Viewer // Availabe rules are 'google', 'microsoft' or false // Google => View documents using Google Docs Viewer // Microsoft => View documents using Microsoft Web Apps Viewer // false => disable online doc viewer $online_viewer = 'google'; // Sticky Nav bar // true => enable sticky header // false => disable sticky header $sticky_navbar = true; // Maximum file upload size // Increase the following values in php.ini to work properly // memory_limit, upload_max_filesize, post_max_size $max_upload_size_bytes = 5000000000; // size 5,000,000,000 bytes (~5GB) // chunk size used for upload // eg. decrease to 1MB if nginx reports problem 413 entity too large $upload_chunk_size_bytes = 2000000; // chunk size 2,000,000 bytes (~2MB) // Possible rules are 'OFF', 'AND' or 'OR' // OFF => Don't check connection IP, defaults to OFF // AND => Connection must be on the whitelist, and not on the blacklist // OR => Connection must be on the whitelist, or not on the blacklist $ip_ruleset = 'OFF'; // Should users be notified of their block? $ip_silent = true; // IP-addresses, both ipv4 and ipv6 $ip_whitelist = array( '127.0.0.1', // local ipv4 '::1' // local ipv6 ); // IP-addresses, both ipv4 and ipv6 $ip_blacklist = array( '0.0.0.0', // non-routable meta ipv4 '::' // non-routable meta ipv6 ); // if User has the external config file, try to use it to override the default config above [config.php] // sample config - https://tinyfilemanager.github.io/config-sample.txt $config_file = __DIR__.'/config.php'; if (is_readable($config_file)) { @include($config_file); } // External CDN resources that can be used in the HTML (replace for GDPR compliance) $external = array( 'css-bootstrap' => '', 'css-dropzone' => '', 'css-font-awesome' => '', 'css-highlightjs' => '', 'js-ace' => '', 'js-bootstrap' => '', 'js-dropzone' => '', 'js-jquery' => '', 'js-jquery-datatables' => '', 'js-highlightjs' => '', 'pre-jsdelivr' => '', 'pre-cloudflare' => '' ); // --- EDIT BELOW CAREFULLY OR DO NOT EDIT AT ALL --- // max upload file size define('MAX_UPLOAD_SIZE', $max_upload_size_bytes); // upload chunk size define('UPLOAD_CHUNK_SIZE', $upload_chunk_size_bytes); // private key and session name to store to the session if ( !defined( 'FM_SESSION_ID')) { define('FM_SESSION_ID', 'filemanager'); } // Configuration $cfg = new FM_Config(); // Default language $lang = isset($cfg->data['lang']) ? $cfg->data['lang'] : 'en'; // Show or hide files and folders that starts with a dot $show_hidden_files = isset($cfg->data['show_hidden']) ? $cfg->data['show_hidden'] : true; // PHP error reporting - false = Turns off Errors, true = Turns on Errors $report_errors = isset($cfg->data['error_reporting']) ? $cfg->data['error_reporting'] : true; // Hide Permissions and Owner cols in file-listing $hide_Cols = isset($cfg->data['hide_Cols']) ? $cfg->data['hide_Cols'] : true; // Theme $theme = isset($cfg->data['theme']) ? $cfg->data['theme'] : 'light'; define('FM_THEME', $theme); //available languages $lang_list = array( 'en' => 'English' ); if ($report_errors == true) { @ini_set('error_reporting', E_ALL); @ini_set('display_errors', 1); } else { @ini_set('error_reporting', E_ALL); @ini_set('display_errors', 0); } // if fm included if (defined('FM_EMBED')) { $use_auth = false; $sticky_navbar = false; } else { @set_time_limit(600); date_default_timezone_set($default_timezone); ini_set('default_charset', 'UTF-8'); if (version_compare(PHP_VERSION, '5.6.0', '<') && function_exists('mb_internal_encoding')) { mb_internal_encoding('UTF-8'); } if (function_exists('mb_regex_encoding')) { mb_regex_encoding('UTF-8'); } session_cache_limiter('nocache'); // Prevent logout issue after page was cached session_name(FM_SESSION_ID ); function session_error_handling_function($code, $msg, $file, $line) { // Permission denied for default session, try to create a new one if ($code == 2) { session_abort(); session_id(session_create_id()); @session_start(); } } set_error_handler('session_error_handling_function'); session_start(); restore_error_handler(); } //Generating CSRF Token if (empty($_SESSION['token'])) { if (function_exists('random_bytes')) { $_SESSION['token'] = bin2hex(random_bytes(32)); } else { $_SESSION['token'] = bin2hex(openssl_random_pseudo_bytes(32)); } } if (empty($auth_users)) { $use_auth = false; } $is_https = isset($_SERVER['HTTPS']) && ($_SERVER['HTTPS'] == 'on' || $_SERVER['HTTPS'] == 1) || isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https'; // update $root_url based on user specific directories if (isset($_SESSION[FM_SESSION_ID]['logged']) && !empty($directories_users[$_SESSION[FM_SESSION_ID]['logged']])) { $wd = fm_clean_path(dirname($_SERVER['PHP_SELF'])); $root_url = $root_url.$wd.DIRECTORY_SEPARATOR.$directories_users[$_SESSION[FM_SESSION_ID]['logged']]; } // clean $root_url $root_url = fm_clean_path($root_url); // abs path for site defined('FM_ROOT_URL') || define('FM_ROOT_URL', ($is_https ? 'https' : 'http') . '://' . $http_host . (!empty($root_url) ? '/' . $root_url : '')); defined('FM_SELF_URL') || define('FM_SELF_URL', ($is_https ? 'https' : 'http') . '://' . $http_host . $_SERVER['PHP_SELF']); // logout if (isset($_GET['logout'])) { unset($_SESSION[FM_SESSION_ID]['logged']); unset( $_SESSION['token']); fm_redirect(FM_SELF_URL); } // Validate connection IP if ($ip_ruleset != 'OFF') { function getClientIP() { if (array_key_exists('HTTP_CF_CONNECTING_IP', $_SERVER)) { return $_SERVER["HTTP_CF_CONNECTING_IP"]; }else if (array_key_exists('HTTP_X_FORWARDED_FOR', $_SERVER)) { return $_SERVER["HTTP_X_FORWARDED_FOR"]; }else if (array_key_exists('REMOTE_ADDR', $_SERVER)) { return $_SERVER['REMOTE_ADDR']; }else if (array_key_exists('HTTP_CLIENT_IP', $_SERVER)) { return $_SERVER['HTTP_CLIENT_IP']; } return ''; } $clientIp = getClientIP(); $proceed = false; $whitelisted = in_array($clientIp, $ip_whitelist); $blacklisted = in_array($clientIp, $ip_blacklist); if($ip_ruleset == 'AND'){ if($whitelisted == true && $blacklisted == false){ $proceed = true; } } else if($ip_ruleset == 'OR'){ if($whitelisted == true || $blacklisted == false){ $proceed = true; } } if($proceed == false){ trigger_error('User connection denied from: ' . $clientIp, E_USER_WARNING); if($ip_silent == false){ fm_set_msg(lng('Access denied. IP restriction applicable'), 'error'); fm_show_header_login(); fm_show_message(); } exit(); } } // Checking if the user is logged in or not. If not, it will show the login form. if ($use_auth) { if (isset($_SESSION[FM_SESSION_ID]['logged'], $auth_users[$_SESSION[FM_SESSION_ID]['logged']])) { // Logged } elseif (isset($_POST['fm_usr'], $_POST['fm_pwd'], $_POST['token'])) { // Logging In sleep(1); if(function_exists('password_verify')) { if (isset($auth_users[$_POST['fm_usr']]) && isset($_POST['fm_pwd']) && password_verify($_POST['fm_pwd'], $auth_users[$_POST['fm_usr']]) && verifyToken($_POST['token'])) { $_SESSION[FM_SESSION_ID]['logged'] = $_POST['fm_usr']; fm_set_msg(lng('You are logged in')); fm_redirect(FM_SELF_URL); } else { unset($_SESSION[FM_SESSION_ID]['logged']); fm_set_msg(lng('Login failed. Invalid username or password'), 'error'); fm_redirect(FM_SELF_URL); } } else { fm_set_msg(lng('password_hash not supported, Upgrade PHP version'), 'error');; } } else { // Form unset($_SESSION[FM_SESSION_ID]['logged']); fm_show_header_login(); ?>
".lng('Root path')." \"{$root_path}\" ".lng('not found!')." "; exit; } defined('FM_SHOW_HIDDEN') || define('FM_SHOW_HIDDEN', $show_hidden_files); defined('FM_ROOT_PATH') || define('FM_ROOT_PATH', $root_path); defined('FM_LANG') || define('FM_LANG', $lang); defined('FM_FILE_EXTENSION') || define('FM_FILE_EXTENSION', $allowed_file_extensions); defined('FM_UPLOAD_EXTENSION') || define('FM_UPLOAD_EXTENSION', $allowed_upload_extensions); defined('FM_EXCLUDE_ITEMS') || define('FM_EXCLUDE_ITEMS', (version_compare(PHP_VERSION, '7.0.0', '<') ? serialize($exclude_items) : $exclude_items)); defined('FM_DOC_VIEWER') || define('FM_DOC_VIEWER', $online_viewer); define('FM_READONLY', $global_readonly || ($use_auth && !empty($readonly_users) && isset($_SESSION[FM_SESSION_ID]['logged']) && in_array($_SESSION[FM_SESSION_ID]['logged'], $readonly_users))); define('FM_IS_WIN', DIRECTORY_SEPARATOR == '\\'); // always use ?p= if (!isset($_GET['p']) && empty($_FILES)) { fm_redirect(FM_SELF_URL . '?p='); } // get path $p = isset($_GET['p']) ? $_GET['p'] : (isset($_POST['p']) ? $_POST['p'] : ''); // clean path $p = fm_clean_path($p); // for ajax request - save $input = file_get_contents('php://input'); $_POST = (strpos($input, 'ajax') != FALSE && strpos($input, 'save') != FALSE) ? json_decode($input, true) : $_POST; // instead globals vars define('FM_PATH', $p); define('FM_USE_AUTH', $use_auth); define('FM_EDIT_FILE', $edit_files); defined('FM_ICONV_INPUT_ENC') || define('FM_ICONV_INPUT_ENC', $iconv_input_encoding); defined('FM_USE_HIGHLIGHTJS') || define('FM_USE_HIGHLIGHTJS', $use_highlightjs); defined('FM_HIGHLIGHTJS_STYLE') || define('FM_HIGHLIGHTJS_STYLE', $highlightjs_style); defined('FM_DATETIME_FORMAT') || define('FM_DATETIME_FORMAT', $datetime_format); unset($p, $use_auth, $iconv_input_encoding, $use_highlightjs, $highlightjs_style); /*************************** ACTIONS ***************************/ // Handle all AJAX Request if ((isset($_SESSION[FM_SESSION_ID]['logged'], $auth_users[$_SESSION[FM_SESSION_ID]['logged']]) || !FM_USE_AUTH) && isset($_POST['ajax'], $_POST['token']) && !FM_READONLY) { if(!verifyToken($_POST['token'])) { header('HTTP/1.0 401 Unauthorized'); die("Invalid Token."); } //search : get list of files from the current folder if(isset($_POST['type']) && $_POST['type']=="search") { $dir = $_POST['path'] == "." ? '': $_POST['path']; $response = scan(fm_clean_path($dir), $_POST['content']); echo json_encode($response); exit(); } // save editor file if (isset($_POST['type']) && $_POST['type'] == "save") { // get current path $path = FM_ROOT_PATH; if (FM_PATH != '') { $path .= '/' . FM_PATH; } // check path if (!is_dir($path)) { fm_redirect(FM_SELF_URL . '?p='); } $file = $_GET['edit']; $file = fm_clean_path($file); $file = str_replace('/', '', $file); if ($file == '' || !is_file($path . '/' . $file)) { fm_set_msg(lng('File not found'), 'error'); $FM_PATH=FM_PATH; fm_redirect(FM_SELF_URL . '?p=' . urlencode($FM_PATH)); } header('X-XSS-Protection:0'); $file_path = $path . '/' . $file; $writedata = $_POST['content']; $fd = fopen($file_path, "w"); $write_results = @fwrite($fd, $writedata); fclose($fd); if ($write_results === false){ header("HTTP/1.1 500 Internal Server Error"); die("Could Not Write File! - Check Permissions / Ownership"); } die(true); } // backup files if (isset($_POST['type']) && $_POST['type'] == "backup" && !empty($_POST['file'])) { $fileName = fm_clean_path($_POST['file']); $fullPath = FM_ROOT_PATH . '/'; if (!empty($_POST['path'])) { $relativeDirPath = fm_clean_path($_POST['path']); $fullPath .= "{$relativeDirPath}/"; } $date = date("dMy-His"); $newFileName = "{$fileName}-{$date}.bak"; $fullyQualifiedFileName = $fullPath . $fileName; try { if (!file_exists($fullyQualifiedFileName)) { throw new Exception("File {$fileName} not found"); } if (copy($fullyQualifiedFileName, $fullPath . $newFileName)) { echo "Backup {$newFileName} created"; } else { throw new Exception("Could not copy file {$fileName}"); } } catch (Exception $e) { echo $e->getMessage(); } } // Save Config if (isset($_POST['type']) && $_POST['type'] == "settings") { global $cfg, $lang, $report_errors, $show_hidden_files, $lang_list, $hide_Cols, $theme; $newLng = $_POST['js-language']; fm_get_translations([]); if (!array_key_exists($newLng, $lang_list)) { $newLng = 'en'; } $erp = isset($_POST['js-error-report']) && $_POST['js-error-report'] == "true" ? true : false; $shf = isset($_POST['js-show-hidden']) && $_POST['js-show-hidden'] == "true" ? true : false; $hco = isset($_POST['js-hide-cols']) && $_POST['js-hide-cols'] == "true" ? true : false; $te3 = $_POST['js-theme-3']; if ($cfg->data['lang'] != $newLng) { $cfg->data['lang'] = $newLng; $lang = $newLng; } if ($cfg->data['error_reporting'] != $erp) { $cfg->data['error_reporting'] = $erp; $report_errors = $erp; } if ($cfg->data['show_hidden'] != $shf) { $cfg->data['show_hidden'] = $shf; $show_hidden_files = $shf; } if ($cfg->data['show_hidden'] != $shf) { $cfg->data['show_hidden'] = $shf; $show_hidden_files = $shf; } if ($cfg->data['hide_Cols'] != $hco) { $cfg->data['hide_Cols'] = $hco; $hide_Cols = $hco; } if ($cfg->data['theme'] != $te3) { $cfg->data['theme'] = $te3; $theme = $te3; } $cfg->save(); echo true; } // new password hash if (isset($_POST['type']) && $_POST['type'] == "pwdhash") { $res = isset($_POST['inputPassword2']) && !empty($_POST['inputPassword2']) ? password_hash($_POST['inputPassword2'], PASSWORD_DEFAULT) : ''; echo $res; } //upload using url if(isset($_POST['type']) && $_POST['type'] == "upload" && !empty($_REQUEST["uploadurl"])) { $path = FM_ROOT_PATH; if (FM_PATH != '') { $path .= '/' . FM_PATH; } function event_callback ($message) { global $callback; echo json_encode($message); } function get_file_path () { global $path, $fileinfo, $temp_file; return $path."/".basename($fileinfo->name); } $url = !empty($_REQUEST["uploadurl"]) && preg_match("|^http(s)?://.+$|", stripslashes($_REQUEST["uploadurl"])) ? stripslashes($_REQUEST["uploadurl"]) : null; //prevent 127.* domain and known ports $domain = parse_url($url, PHP_URL_HOST); $port = parse_url($url, PHP_URL_PORT); $knownPorts = [22, 23, 25, 3306]; if (preg_match("/^localhost$|^127(?:\.[0-9]+){0,2}\.[0-9]+$|^(?:0*\:)*?:?0*1$/i", $domain) || in_array($port, $knownPorts)) { $err = array("message" => "URL is not allowed"); event_callback(array("fail" => $err)); exit(); } $use_curl = false; $temp_file = tempnam(sys_get_temp_dir(), "upload-"); $fileinfo = new stdClass(); $fileinfo->name = trim(urldecode(basename($url)), ".\x00..\x20"); $allowed = (FM_UPLOAD_EXTENSION) ? explode(',', FM_UPLOAD_EXTENSION) : false; $ext = strtolower(pathinfo($fileinfo->name, PATHINFO_EXTENSION)); $isFileAllowed = ($allowed) ? in_array($ext, $allowed) : true; $err = false; if(!$isFileAllowed) { $err = array("message" => "File extension is not allowed"); event_callback(array("fail" => $err)); exit(); } if (!$url) { $success = false; } else if ($use_curl) { @$fp = fopen($temp_file, "w"); @$ch = curl_init($url); curl_setopt($ch, CURLOPT_NOPROGRESS, false ); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); curl_setopt($ch, CURLOPT_FILE, $fp); @$success = curl_exec($ch); $curl_info = curl_getinfo($ch); if (!$success) { $err = array("message" => curl_error($ch)); } @curl_close($ch); fclose($fp); $fileinfo->size = $curl_info["size_download"]; $fileinfo->type = $curl_info["content_type"]; } else { $ctx = stream_context_create(); @$success = copy($url, $temp_file, $ctx); if (!$success) { $err = error_get_last(); } } if ($success) { $success = rename($temp_file, strtok(get_file_path(), '?')); } if ($success) { event_callback(array("done" => $fileinfo)); } else { unlink($temp_file); if (!$err) { $err = array("message" => "Invalid url parameter"); } event_callback(array("fail" => $err)); } } exit(); } // Delete file / folder if (isset($_GET['del'], $_POST['token']) && !FM_READONLY) { $del = str_replace( '/', '', fm_clean_path( $_GET['del'] ) ); if ($del != '' && $del != '..' && $del != '.' && verifyToken($_POST['token'])) { $path = FM_ROOT_PATH; if (FM_PATH != '') { $path .= '/' . FM_PATH; } $is_dir = is_dir($path . '/' . $del); if (fm_rdelete($path . '/' . $del)) { $msg = $is_dir ? lng('Folder').' %s '.lng('Deleted') : lng('File').' %s '.lng('Deleted'); fm_set_msg(sprintf($msg, fm_enc($del))); } else { $msg = $is_dir ? lng('Folder').' %s '.lng('not deleted') : lng('File').' %s '.lng('not deleted'); fm_set_msg(sprintf($msg, fm_enc($del)), 'error'); } } else { fm_set_msg(lng('Invalid file or folder name'), 'error'); } $FM_PATH=FM_PATH; fm_redirect(FM_SELF_URL . '?p=' . urlencode($FM_PATH)); } // Create a new file/folder if (isset($_POST['newfilename'], $_POST['newfile'], $_POST['token']) && !FM_READONLY) { $type = urldecode($_POST['newfile']); $new = str_replace( '/', '', fm_clean_path( strip_tags( $_POST['newfilename'] ) ) ); if (fm_isvalid_filename($new) && $new != '' && $new != '..' && $new != '.' && verifyToken($_POST['token'])) { $path = FM_ROOT_PATH; if (FM_PATH != '') { $path .= '/' . FM_PATH; } if ($type == "file") { if (!file_exists($path . '/' . $new)) { if(fm_is_valid_ext($new)) { @fopen($path . '/' . $new, 'w') or die('Cannot open file: ' . $new); fm_set_msg(sprintf(lng('File').' %s '.lng('Created'), fm_enc($new))); } else { fm_set_msg(lng('File extension is not allowed'), 'error'); } } else { fm_set_msg(sprintf(lng('File').' %s '.lng('already exists'), fm_enc($new)), 'alert'); } } else { if (fm_mkdir($path . '/' . $new, false) === true) { fm_set_msg(sprintf(lng('Folder').' %s '.lng('Created'), $new)); } elseif (fm_mkdir($path . '/' . $new, false) === $path . '/' . $new) { fm_set_msg(sprintf(lng('Folder').' %s '.lng('already exists'), fm_enc($new)), 'alert'); } else { fm_set_msg(sprintf(lng('Folder').' %s '.lng('not created'), fm_enc($new)), 'error'); } } } else { fm_set_msg(lng('Invalid characters in file or folder name'), 'error'); } $FM_PATH=FM_PATH; fm_redirect(FM_SELF_URL . '?p=' . urlencode($FM_PATH)); } // Copy folder / file if (isset($_GET['copy'], $_GET['finish']) && !FM_READONLY) { // from $copy = urldecode($_GET['copy']); $copy = fm_clean_path($copy); // empty path if ($copy == '') { fm_set_msg(lng('Source path not defined'), 'error'); $FM_PATH=FM_PATH; fm_redirect(FM_SELF_URL . '?p=' . urlencode($FM_PATH)); } // abs path from $from = FM_ROOT_PATH . '/' . $copy; // abs path to $dest = FM_ROOT_PATH; if (FM_PATH != '') { $dest .= '/' . FM_PATH; } $dest .= '/' . basename($from); // move? $move = isset($_GET['move']); $move = fm_clean_path(urldecode($move)); // copy/move/duplicate if ($from != $dest) { $msg_from = trim(FM_PATH . '/' . basename($from), '/'); if ($move) { // Move and to != from so just perform move $rename = fm_rename($from, $dest); if ($rename) { fm_set_msg(sprintf(lng('Moved from').' %s '.lng('to').' %s', fm_enc($copy), fm_enc($msg_from))); } elseif ($rename === null) { fm_set_msg(lng('File or folder with this path already exists'), 'alert'); } else { fm_set_msg(sprintf(lng('Error while moving from').' %s '.lng('to').' %s', fm_enc($copy), fm_enc($msg_from)), 'error'); } } else { // Not move and to != from so copy with original name if (fm_rcopy($from, $dest)) { fm_set_msg(sprintf(lng('Copied from').' %s '.lng('to').' %s', fm_enc($copy), fm_enc($msg_from))); } else { fm_set_msg(sprintf(lng('Error while copying from').' %s '.lng('to').' %s', fm_enc($copy), fm_enc($msg_from)), 'error'); } } } else { if (!$move){ //Not move and to = from so duplicate $msg_from = trim(FM_PATH . '/' . basename($from), '/'); $fn_parts = pathinfo($from); $extension_suffix = ''; if(!is_dir($from)){ $extension_suffix = '.'.$fn_parts['extension']; } //Create new name for duplicate $fn_duplicate = $fn_parts['dirname'].'/'.$fn_parts['filename'].'-'.date('YmdHis').$extension_suffix; $loop_count = 0; $max_loop = 1000; // Check if a file with the duplicate name already exists, if so, make new name (edge case...) while(file_exists($fn_duplicate) & $loop_count < $max_loop){ $fn_parts = pathinfo($fn_duplicate); $fn_duplicate = $fn_parts['dirname'].'/'.$fn_parts['filename'].'-copy'.$extension_suffix; $loop_count++; } if (fm_rcopy($from, $fn_duplicate, False)) { fm_set_msg(sprintf('Copied from %s to %s', fm_enc($copy), fm_enc($fn_duplicate))); } else { fm_set_msg(sprintf('Error while copying from %s to %s', fm_enc($copy), fm_enc($fn_duplicate)), 'error'); } } else{ fm_set_msg(lng('Paths must be not equal'), 'alert'); } } $FM_PATH=FM_PATH; fm_redirect(FM_SELF_URL . '?p=' . urlencode($FM_PATH)); } // Mass copy files/ folders if (isset($_POST['file'], $_POST['copy_to'], $_POST['finish'], $_POST['token']) && !FM_READONLY) { if(!verifyToken($_POST['token'])) { fm_set_msg(lng('Invalid Token.'), 'error'); } // from $path = FM_ROOT_PATH; if (FM_PATH != '') { $path .= '/' . FM_PATH; } // to $copy_to_path = FM_ROOT_PATH; $copy_to = fm_clean_path($_POST['copy_to']); if ($copy_to != '') { $copy_to_path .= '/' . $copy_to; } if ($path == $copy_to_path) { fm_set_msg(lng('Paths must be not equal'), 'alert'); $FM_PATH=FM_PATH; fm_redirect(FM_SELF_URL . '?p=' . urlencode($FM_PATH)); } if (!is_dir($copy_to_path)) { if (!fm_mkdir($copy_to_path, true)) { fm_set_msg('Unable to create destination folder', 'error'); $FM_PATH=FM_PATH; fm_redirect(FM_SELF_URL . '?p=' . urlencode($FM_PATH)); } } // move? $move = isset($_POST['move']); // copy/move $errors = 0; $files = $_POST['file']; if (is_array($files) && count($files)) { foreach ($files as $f) { if ($f != '') { $f = fm_clean_path($f); // abs path from $from = $path . '/' . $f; // abs path to $dest = $copy_to_path . '/' . $f; // do if ($move) { $rename = fm_rename($from, $dest); if ($rename === false) { $errors++; } } else { if (!fm_rcopy($from, $dest)) { $errors++; } } } } if ($errors == 0) { $msg = $move ? 'Selected files and folders moved' : 'Selected files and folders copied'; fm_set_msg($msg); } else { $msg = $move ? 'Error while moving items' : 'Error while copying items'; fm_set_msg($msg, 'error'); } } else { fm_set_msg(lng('Nothing selected'), 'alert'); } $FM_PATH=FM_PATH; fm_redirect(FM_SELF_URL . '?p=' . urlencode($FM_PATH)); } // Rename if (isset($_POST['rename_from'], $_POST['rename_to'], $_POST['token']) && !FM_READONLY) { if(!verifyToken($_POST['token'])) { fm_set_msg("Invalid Token.", 'error'); } // old name $old = urldecode($_POST['rename_from']); $old = fm_clean_path($old); $old = str_replace('/', '', $old); // new name $new = urldecode($_POST['rename_to']); $new = fm_clean_path(strip_tags($new)); $new = str_replace('/', '', $new); // path $path = FM_ROOT_PATH; if (FM_PATH != '') { $path .= '/' . FM_PATH; } // rename if (fm_isvalid_filename($new) && $old != '' && $new != '') { if (fm_rename($path . '/' . $old, $path . '/' . $new)) { fm_set_msg(sprintf(lng('Renamed from').' %s '. lng('to').' %s', fm_enc($old), fm_enc($new))); } else { fm_set_msg(sprintf(lng('Error while renaming from').' %s '. lng('to').' %s', fm_enc($old), fm_enc($new)), 'error'); } } else { fm_set_msg(lng('Invalid characters in file name'), 'error'); } $FM_PATH=FM_PATH; fm_redirect(FM_SELF_URL . '?p=' . urlencode($FM_PATH)); } // Download if (isset($_GET['dl'], $_POST['token'])) { if(!verifyToken($_POST['token'])) { fm_set_msg("Invalid Token.", 'error'); } $dl = urldecode($_GET['dl']); $dl = fm_clean_path($dl); $dl = str_replace('/', '', $dl); $path = FM_ROOT_PATH; if (FM_PATH != '') { $path .= '/' . FM_PATH; } if ($dl != '' && is_file($path . '/' . $dl)) { fm_download_file($path . '/' . $dl, $dl, 1024); exit; } else { fm_set_msg(lng('File not found'), 'error'); $FM_PATH=FM_PATH; fm_redirect(FM_SELF_URL . '?p=' . urlencode($FM_PATH)); } } // Upload if (!empty($_FILES) && !FM_READONLY) { if(isset($_POST['token'])) { if(!verifyToken($_POST['token'])) { $response = array ('status' => 'error','info' => "Invalid Token."); echo json_encode($response); exit(); } } else { $response = array ('status' => 'error','info' => "Token Missing."); echo json_encode($response); exit(); } $chunkIndex = $_POST['dzchunkindex']; $chunkTotal = $_POST['dztotalchunkcount']; $fullPathInput = fm_clean_path($_REQUEST['fullpath']); $f = $_FILES; $path = FM_ROOT_PATH; $ds = DIRECTORY_SEPARATOR; if (FM_PATH != '') { $path .= '/' . FM_PATH; } $errors = 0; $uploads = 0; $allowed = (FM_UPLOAD_EXTENSION) ? explode(',', FM_UPLOAD_EXTENSION) : false; $response = array ( 'status' => 'error', 'info' => 'Oops! Try again' ); $filename = $f['file']['name']; $tmp_name = $f['file']['tmp_name']; $ext = pathinfo($filename, PATHINFO_FILENAME) != '' ? strtolower(pathinfo($filename, PATHINFO_EXTENSION)) : ''; $isFileAllowed = ($allowed) ? in_array($ext, $allowed) : true; if(!fm_isvalid_filename($filename) && !fm_isvalid_filename($fullPathInput)) { $response = array ( 'status' => 'error', 'info' => "Invalid File name!", ); echo json_encode($response); exit(); } $targetPath = $path . $ds; if ( is_writable($targetPath) ) { $fullPath = $path . '/' . $fullPathInput; $folder = substr($fullPath, 0, strrpos($fullPath, "/")); if (!is_dir($folder)) { $old = umask(0); mkdir($folder, 0777, true); umask($old); } if (empty($f['file']['error']) && !empty($tmp_name) && $tmp_name != 'none' && $isFileAllowed) { if ($chunkTotal){ $out = @fopen("{$fullPath}.part", $chunkIndex == 0 ? "wb" : "ab"); if ($out) { $in = @fopen($tmp_name, "rb"); if ($in) { if (PHP_VERSION_ID < 80009) { // workaround https://bugs.php.net/bug.php?id=81145 do { for (;;) { $buff = fread($in, 4096); if ($buff === false || $buff === '') { break; } fwrite($out, $buff); } } while (!feof($in)); } else { stream_copy_to_stream($in, $out); } $response = array ( 'status' => 'success', 'info' => "file upload successful" ); } else { $response = array ( 'status' => 'error', 'info' => "failed to open output stream", 'errorDetails' => error_get_last() ); } @fclose($in); @fclose($out); @unlink($tmp_name); $response = array ( 'status' => 'success', 'info' => "file upload successful" ); } else { $response = array ( 'status' => 'error', 'info' => "failed to open output stream" ); } if ($chunkIndex == $chunkTotal - 1) { if (file_exists ($fullPath)) { $ext_1 = $ext ? '.'.$ext : ''; $fullPathTarget = $path . '/' . basename($fullPathInput, $ext_1) .'_'. date('ymdHis'). $ext_1; } else { $fullPathTarget = $fullPath; } rename("{$fullPath}.part", $fullPathTarget); } } else if (move_uploaded_file($tmp_name, $fullPath)) { // Be sure that the file has been uploaded if ( file_exists($fullPath) ) { $response = array ( 'status' => 'success', 'info' => "file upload successful" ); } else { $response = array ( 'status' => 'error', 'info' => 'Couldn\'t upload the requested file.' ); } } else { $response = array ( 'status' => 'error', 'info' => "Error while uploading files. Uploaded files $uploads", ); } } } else { $response = array ( 'status' => 'error', 'info' => 'The specified folder for upload isn\'t writeable.' ); } // Return the response echo json_encode($response); exit(); } // Mass deleting if (isset($_POST['group'], $_POST['delete'], $_POST['token']) && !FM_READONLY) { if(!verifyToken($_POST['token'])) { fm_set_msg(lng("Invalid Token."), 'error'); } $path = FM_ROOT_PATH; if (FM_PATH != '') { $path .= '/' . FM_PATH; } $errors = 0; $files = $_POST['file']; if (is_array($files) && count($files)) { foreach ($files as $f) { if ($f != '') { $new_path = $path . '/' . $f; if (!fm_rdelete($new_path)) { $errors++; } } } if ($errors == 0) { fm_set_msg(lng('Selected files and folder deleted')); } else { fm_set_msg(lng('Error while deleting items'), 'error'); } } else { fm_set_msg(lng('Nothing selected'), 'alert'); } $FM_PATH=FM_PATH; fm_redirect(FM_SELF_URL . '?p=' . urlencode($FM_PATH)); } // Pack files zip, tar if (isset($_POST['group'], $_POST['token']) && (isset($_POST['zip']) || isset($_POST['tar'])) && !FM_READONLY) { if(!verifyToken($_POST['token'])) { fm_set_msg(lng("Invalid Token."), 'error'); } $path = FM_ROOT_PATH; $ext = 'zip'; if (FM_PATH != '') { $path .= '/' . FM_PATH; } //set pack type $ext = isset($_POST['tar']) ? 'tar' : 'zip'; if (($ext == "zip" && !class_exists('ZipArchive')) || ($ext == "tar" && !class_exists('PharData'))) { fm_set_msg(lng('Operations with archives are not available'), 'error'); $FM_PATH=FM_PATH; fm_redirect(FM_SELF_URL . '?p=' . urlencode($FM_PATH)); } $files = $_POST['file']; $sanitized_files = array(); // clean path foreach($files as $file){ array_push($sanitized_files, fm_clean_path($file)); } $files = $sanitized_files; if (!empty($files)) { chdir($path); if (count($files) == 1) { $one_file = reset($files); $one_file = basename($one_file); $zipname = $one_file . '_' . date('ymd_His') . '.'.$ext; } else { $zipname = 'archive_' . date('ymd_His') . '.'.$ext; } if($ext == 'zip') { $zipper = new FM_Zipper(); $res = $zipper->create($zipname, $files); } elseif ($ext == 'tar') { $tar = new FM_Zipper_Tar(); $res = $tar->create($zipname, $files); } if ($res) { fm_set_msg(sprintf(lng('Archive').' %s '.lng('Created'), fm_enc($zipname))); } else { fm_set_msg(lng('Archive not created'), 'error'); } } else { fm_set_msg(lng('Nothing selected'), 'alert'); } $FM_PATH=FM_PATH; fm_redirect(FM_SELF_URL . '?p=' . urlencode($FM_PATH)); } // Unpack zip, tar if (isset($_POST['unzip'], $_POST['token']) && !FM_READONLY) { if(!verifyToken($_POST['token'])) { fm_set_msg(lng("Invalid Token."), 'error'); } $unzip = urldecode($_POST['unzip']); $unzip = fm_clean_path($unzip); $unzip = str_replace('/', '', $unzip); $isValid = false; $path = FM_ROOT_PATH; if (FM_PATH != '') { $path .= '/' . FM_PATH; } if ($unzip != '' && is_file($path . '/' . $unzip)) { $zip_path = $path . '/' . $unzip; $ext = pathinfo($zip_path, PATHINFO_EXTENSION); $isValid = true; } else { fm_set_msg(lng('File not found'), 'error'); } if (($ext == "zip" && !class_exists('ZipArchive')) || ($ext == "tar" && !class_exists('PharData'))) { fm_set_msg(lng('Operations with archives are not available'), 'error'); $FM_PATH=FM_PATH; fm_redirect(FM_SELF_URL . '?p=' . urlencode($FM_PATH)); } if ($isValid) { //to folder $tofolder = ''; if (isset($_POST['tofolder'])) { $tofolder = pathinfo($zip_path, PATHINFO_FILENAME); if (fm_mkdir($path . '/' . $tofolder, true)) { $path .= '/' . $tofolder; } } if($ext == "zip") { $zipper = new FM_Zipper(); $res = $zipper->unzip($zip_path, $path); } elseif ($ext == "tar") { try { $gzipper = new PharData($zip_path); if (@$gzipper->extractTo($path,null, true)) { $res = true; } else { $res = false; } } catch (Exception $e) { //TODO:: need to handle the error $res = true; } } if ($res) { fm_set_msg(lng('Archive unpacked')); } else { fm_set_msg(lng('Archive not unpacked'), 'error'); } } else { fm_set_msg(lng('File not found'), 'error'); } $FM_PATH=FM_PATH; fm_redirect(FM_SELF_URL . '?p=' . urlencode($FM_PATH)); } // Change Perms (not for Windows) if (isset($_POST['chmod'], $_POST['token']) && !FM_READONLY && !FM_IS_WIN) { if(!verifyToken($_POST['token'])) { fm_set_msg(lng("Invalid Token."), 'error'); } $path = FM_ROOT_PATH; if (FM_PATH != '') { $path .= '/' . FM_PATH; } $file = $_POST['chmod']; $file = fm_clean_path($file); $file = str_replace('/', '', $file); if ($file == '' || (!is_file($path . '/' . $file) && !is_dir($path . '/' . $file))) { fm_set_msg(lng('File not found'), 'error'); $FM_PATH=FM_PATH; fm_redirect(FM_SELF_URL . '?p=' . urlencode($FM_PATH)); } $mode = 0; if (!empty($_POST['ur'])) { $mode |= 0400; } if (!empty($_POST['uw'])) { $mode |= 0200; } if (!empty($_POST['ux'])) { $mode |= 0100; } if (!empty($_POST['gr'])) { $mode |= 0040; } if (!empty($_POST['gw'])) { $mode |= 0020; } if (!empty($_POST['gx'])) { $mode |= 0010; } if (!empty($_POST['or'])) { $mode |= 0004; } if (!empty($_POST['ow'])) { $mode |= 0002; } if (!empty($_POST['ox'])) { $mode |= 0001; } if (@chmod($path . '/' . $file, $mode)) { fm_set_msg(lng('Permissions changed')); } else { fm_set_msg(lng('Permissions not changed'), 'error'); } $FM_PATH=FM_PATH; fm_redirect(FM_SELF_URL . '?p=' . urlencode($FM_PATH)); } /*************************** ACTIONS ***************************/ // get current path $path = FM_ROOT_PATH; if (FM_PATH != '') { $path .= '/' . FM_PATH; } // check path if (!is_dir($path)) { fm_redirect(FM_SELF_URL . '?p='); } // get parent folder $parent = fm_get_parent_path(FM_PATH); $objects = is_readable($path) ? scandir($path) : array(); $folders = array(); $files = array(); $current_path = array_slice(explode("/",$path), -1)[0]; if (is_array($objects) && fm_is_exclude_items($current_path)) { foreach ($objects as $file) { if ($file == '.' || $file == '..') { continue; } if (!FM_SHOW_HIDDEN && substr($file, 0, 1) === '.') { continue; } $new_path = $path . '/' . $file; if (@is_file($new_path) && fm_is_exclude_items($file)) { $files[] = $file; } elseif (@is_dir($new_path) && $file != '.' && $file != '..' && fm_is_exclude_items($file)) { $folders[] = $file; } } } if (!empty($files)) { natcasesort($files); } if (!empty($folders)) { natcasesort($folders); } // upload form if (isset($_GET['upload']) && !FM_READONLY) { fm_show_header(); // HEADER fm_show_nav_path(FM_PATH); // current path //get the allowed file extensions function getUploadExt() { $extArr = explode(',', FM_UPLOAD_EXTENSION); if(FM_UPLOAD_EXTENSION && $extArr) { array_walk($extArr, function(&$x) {$x = ".$x";}); return implode(',', $extArr); } return ''; } ?>

:

' . PHP_EOL; } ?>

: , ', $copy_files) ?>

:
/

 

Copying

Source path:
Destination folder:

Copy   Move   Cancel

/>
/>
/>

""

:
File size:
MIME-type:
:
:
:
: %
'.lng('Image size').': ' . (isset($image_size[0]) ? $image_size[0] : '0') . ' x ' . (isset($image_size[1]) ? $image_size[1] : '0') . '
'; } // Text info if ($is_text) { $is_utf8 = fm_is_utf8($content); if (function_exists('iconv')) { if (!$is_utf8) { $content = iconv(FM_ICONV_INPUT_ENC, 'UTF-8//IGNORE', $content); } } echo ''.lng('Charset').': ' . ($is_utf8 ? 'utf-8' : '8 bit') . '
'; } ?>

 
 
     
'; } else if($online_viewer == 'microsoft') { echo ''; } } elseif ($is_zip) { // ZIP content if ($filenames !== false) { echo ''; foreach ($filenames as $fn) { if ($fn['folder']) { echo '' . fm_enc($fn['name']) . '
'; } else { echo $fn['name'] . ' (' . fm_get_filesize($fn['filesize']) . ')
'; } } echo '
'; } else { echo '

'.lng('Error while fetching archive info').'

'; } } elseif ($is_image) { // Image content if (in_array($ext, array('gif', 'jpg', 'jpeg', 'png', 'bmp', 'ico', 'svg', 'webp', 'avif'))) { echo '

'; } } elseif ($is_audio) { // Audio content echo '

'; } elseif ($is_video) { // Video content echo '
'; } elseif ($is_text) { if (FM_USE_HIGHLIGHTJS) { // highlight $hljs_classes = array( 'shtml' => 'xml', 'htaccess' => 'apache', 'phtml' => 'php', 'lock' => 'json', 'svg' => 'xml', ); $hljs_class = isset($hljs_classes[$ext]) ? 'lang-' . $hljs_classes[$ext] : 'lang-' . $ext; if (empty($ext) || in_array(strtolower($file), fm_get_text_names()) || preg_match('#\.min\.(css|js)$#i', $file)) { $hljs_class = 'nohighlight'; } $content = '
' . fm_enc($content) . '
'; } elseif (in_array($ext, array('php', 'php4', 'php5', 'phtml', 'phps'))) { // php highlight $content = highlight_string($content, true); } else { $content = '
' . fm_enc($content) . '
'; } echo $content; } ?>
'. $file. ''; header('X-XSS-Protection:0'); fm_show_header(); // HEADER fm_show_nav_path(FM_PATH); // current path $file_url = FM_ROOT_URL . fm_convert_win((FM_PATH != '' ? '/' . FM_PATH : '') . '/' . $file); $file_path = $path . '/' . $file; // normal editer $isNormalEditor = true; if (isset($_GET['env'])) { if ($_GET['env'] == "ace") { $isNormalEditor = false; } } // Save File if (isset($_POST['savedata'])) { $writedata = $_POST['savedata']; $fd = fopen($file_path, "w"); @fwrite($fd, $writedata); fclose($fd); fm_set_msg(lng('File Saved Successfully')); } $ext = strtolower(pathinfo($file_path, PATHINFO_EXTENSION)); $mime_type = fm_get_mime_type($file_path); $filesize = filesize($file_path); $is_text = false; $content = ''; // for text if (in_array($ext, fm_get_text_exts()) || substr($mime_type, 0, 4) == 'text' || in_array($mime_type, fm_get_text_mimes())) { $is_text = true; $content = file_get_contents($file_path); } ?>
' . htmlspecialchars($content) . ''; echo ''; } elseif ($is_text) { echo '
' . htmlspecialchars($content) . '
'; } else { fm_set_msg(lng('FILE EXTENSION HAS NOT SUPPORTED'), 'error'); } ?>

:

 

'?'); } if ($group === false) { $group = array('name' => '?'); } } else { $owner = array('name' => '?'); $group = array('name' => '?'); } ?> '?'); } if ($group === false) { $group = array('name' => '?'); } } else { $owner = array('name' => '?'); $group = array('name' => '?'); } ?>
..
>
' . readlink($path . '/' . $f) . '' : '') ?>
">
>
' . readlink($path . '/' . $f) . '' : '') ?>
">
'.fm_get_filesize($all_files_size).'' ?> '.$num_files.'' ?> '.$num_folders.'' ?>
"; return; } echo "$external[$key]"; } /** * Verify CSRF TOKEN and remove after cerify * @param string $token * @return bool */ function verifyToken($token) { if (hash_equals($_SESSION['token'], $token)) { return true; } return false; } /** * Delete file or folder (recursively) * @param string $path * @return bool */ function fm_rdelete($path) { if (is_link($path)) { return unlink($path); } elseif (is_dir($path)) { $objects = scandir($path); $ok = true; if (is_array($objects)) { foreach ($objects as $file) { if ($file != '.' && $file != '..') { if (!fm_rdelete($path . '/' . $file)) { $ok = false; } } } } return ($ok) ? rmdir($path) : false; } elseif (is_file($path)) { return unlink($path); } return false; } /** * Recursive chmod * @param string $path * @param int $filemode * @param int $dirmode * @return bool * @todo Will use in mass chmod */ function fm_rchmod($path, $filemode, $dirmode) { if (is_dir($path)) { if (!chmod($path, $dirmode)) { return false; } $objects = scandir($path); if (is_array($objects)) { foreach ($objects as $file) { if ($file != '.' && $file != '..') { if (!fm_rchmod($path . '/' . $file, $filemode, $dirmode)) { return false; } } } } return true; } elseif (is_link($path)) { return true; } elseif (is_file($path)) { return chmod($path, $filemode); } return false; } /** * Check the file extension which is allowed or not * @param string $filename * @return bool */ function fm_is_valid_ext($filename) { $allowed = (FM_FILE_EXTENSION) ? explode(',', FM_FILE_EXTENSION) : false; $ext = pathinfo($filename, PATHINFO_EXTENSION); $isFileAllowed = ($allowed) ? in_array($ext, $allowed) : true; return ($isFileAllowed) ? true : false; } /** * Safely rename * @param string $old * @param string $new * @return bool|null */ function fm_rename($old, $new) { $isFileAllowed = fm_is_valid_ext($new); if(!is_dir($old)) { if (!$isFileAllowed) return false; } return (!file_exists($new) && file_exists($old)) ? rename($old, $new) : null; } /** * Copy file or folder (recursively). * @param string $path * @param string $dest * @param bool $upd Update files * @param bool $force Create folder with same names instead file * @return bool */ function fm_rcopy($path, $dest, $upd = true, $force = true) { if (is_dir($path)) { if (!fm_mkdir($dest, $force)) { return false; } $objects = scandir($path); $ok = true; if (is_array($objects)) { foreach ($objects as $file) { if ($file != '.' && $file != '..') { if (!fm_rcopy($path . '/' . $file, $dest . '/' . $file)) { $ok = false; } } } } return $ok; } elseif (is_file($path)) { return fm_copy($path, $dest, $upd); } return false; } /** * Safely create folder * @param string $dir * @param bool $force * @return bool */ function fm_mkdir($dir, $force) { if (file_exists($dir)) { if (is_dir($dir)) { return $dir; } elseif (!$force) { return false; } unlink($dir); } return mkdir($dir, 0777, true); } /** * Safely copy file * @param string $f1 * @param string $f2 * @param bool $upd Indicates if file should be updated with new content * @return bool */ function fm_copy($f1, $f2, $upd) { $time1 = filemtime($f1); if (file_exists($f2)) { $time2 = filemtime($f2); if ($time2 >= $time1 && $upd) { return false; } } $ok = copy($f1, $f2); if ($ok) { touch($f2, $time1); } return $ok; } /** * Get mime type * @param string $file_path * @return mixed|string */ function fm_get_mime_type($file_path) { if (function_exists('finfo_open')) { $finfo = finfo_open(FILEINFO_MIME_TYPE); $mime = finfo_file($finfo, $file_path); finfo_close($finfo); return $mime; } elseif (function_exists('mime_content_type')) { return mime_content_type($file_path); } elseif (!stristr(ini_get('disable_functions'), 'shell_exec')) { $file = escapeshellarg($file_path); $mime = shell_exec('file -bi ' . $file); return $mime; } else { return '--'; } } /** * HTTP Redirect * @param string $url * @param int $code */ function fm_redirect($url, $code = 302) { header('Location: ' . $url, true, $code); exit; } /** * Path traversal prevention and clean the url * It replaces (consecutive) occurrences of / and \\ with whatever is in DIRECTORY_SEPARATOR, and processes /. and /.. fine. * @param $path * @return string */ function get_absolute_path($path) { $path = str_replace(array('/', '\\'), DIRECTORY_SEPARATOR, $path); $parts = array_filter(explode(DIRECTORY_SEPARATOR, $path), 'strlen'); $absolutes = array(); foreach ($parts as $part) { if ('.' == $part) continue; if ('..' == $part) { array_pop($absolutes); } else { $absolutes[] = $part; } } return implode(DIRECTORY_SEPARATOR, $absolutes); } /** * Clean path * @param string $path * @return string */ function fm_clean_path($path, $trim = true) { $path = $trim ? trim($path) : $path; $path = trim($path, '\\/'); $path = str_replace(array('../', '..\\'), '', $path); $path = get_absolute_path($path); if ($path == '..') { $path = ''; } return str_replace('\\', '/', $path); } /** * Get parent path * @param string $path * @return bool|string */ function fm_get_parent_path($path) { $path = fm_clean_path($path); if ($path != '') { $array = explode('/', $path); if (count($array) > 1) { $array = array_slice($array, 0, -1); return implode('/', $array); } return ''; } return false; } function fm_get_display_path($file_path) { global $path_display_mode, $root_path, $root_url; switch ($path_display_mode) { case 'relative': return array( 'label' => 'Path', 'path' => fm_enc(fm_convert_win(str_replace($root_path, '', $file_path))) ); case 'host': $relative_path = str_replace($root_path, '', $file_path); return array( 'label' => 'Host Path', 'path' => fm_enc(fm_convert_win('/' . $root_url . '/' . ltrim(str_replace('\\', '/', $relative_path), '/'))) ); case 'full': default: return array( 'label' => 'Full Path', 'path' => fm_enc(fm_convert_win($file_path)) ); } } /** * Check file is in exclude list * @param string $file * @return bool */ function fm_is_exclude_items($file) { $ext = strtolower(pathinfo($file, PATHINFO_EXTENSION)); if (isset($exclude_items) and sizeof($exclude_items)) { unset($exclude_items); } $exclude_items = FM_EXCLUDE_ITEMS; if (version_compare(PHP_VERSION, '7.0.0', '<')) { $exclude_items = unserialize($exclude_items); } if (!in_array($file, $exclude_items) && !in_array("*.$ext", $exclude_items)) { return true; } return false; } /** * get language translations from json file * @param int $tr * @return array */ function fm_get_translations($tr) { try { $content = @file_get_contents('translation.json'); if($content !== FALSE) { $lng = json_decode($content, TRUE); global $lang_list; foreach ($lng["language"] as $key => $value) { $code = $value["code"]; $lang_list[$code] = $value["name"]; if ($tr) $tr[$code] = $value["translation"]; } return $tr; } } catch (Exception $e) { echo $e; } } /** * @param string $file * Recover all file sizes larger than > 2GB. * Works on php 32bits and 64bits and supports linux * @return int|string */ function fm_get_size($file) { static $iswin; static $isdarwin; if (!isset($iswin)) { $iswin = (strtoupper(substr(PHP_OS, 0, 3)) == 'WIN'); } if (!isset($isdarwin)) { $isdarwin = (strtoupper(substr(PHP_OS, 0)) == "DARWIN"); } static $exec_works; if (!isset($exec_works)) { $exec_works = (function_exists('exec') && !ini_get('safe_mode') && @exec('echo EXEC') == 'EXEC'); } // try a shell command if ($exec_works) { $arg = escapeshellarg($file); $cmd = ($iswin) ? "for %F in (\"$file\") do @echo %~zF" : ($isdarwin ? "stat -f%z $arg" : "stat -c%s $arg"); @exec($cmd, $output); if (is_array($output) && ctype_digit($size = trim(implode("\n", $output)))) { return $size; } } // try the Windows COM interface if ($iswin && class_exists("COM")) { try { $fsobj = new COM('Scripting.FileSystemObject'); $f = $fsobj->GetFile( realpath($file) ); $size = $f->Size; } catch (Exception $e) { $size = null; } if (ctype_digit($size)) { return $size; } } // if all else fails return filesize($file); } /** * Get nice filesize * @param int $size * @return string */ function fm_get_filesize($size) { $size = (float) $size; $units = array('B', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'); $power = ($size > 0) ? floor(log($size, 1024)) : 0; $power = ($power > (count($units) - 1)) ? (count($units) - 1) : $power; return sprintf('%s %s', round($size / pow(1024, $power), 2), $units[$power]); } /** * Get total size of directory tree. * * @param string $directory Relative or absolute directory name. * @return int Total number of bytes. */ function fm_get_directorysize($directory) { $bytes = 0; $directory = realpath($directory); if ($directory !== false && $directory != '' && file_exists($directory)){ foreach(new RecursiveIteratorIterator(new RecursiveDirectoryIterator($directory, FilesystemIterator::SKIP_DOTS)) as $file){ $bytes += $file->getSize(); } } return $bytes; } /** * Get info about zip archive * @param string $path * @return array|bool */ function fm_get_zif_info($path, $ext) { if ($ext == 'zip' && function_exists('zip_open')) { $arch = @zip_open($path); if ($arch) { $filenames = array(); while ($zip_entry = @zip_read($arch)) { $zip_name = @zip_entry_name($zip_entry); $zip_folder = substr($zip_name, -1) == '/'; $filenames[] = array( 'name' => $zip_name, 'filesize' => @zip_entry_filesize($zip_entry), 'compressed_size' => @zip_entry_compressedsize($zip_entry), 'folder' => $zip_folder //'compression_method' => zip_entry_compressionmethod($zip_entry), ); } @zip_close($arch); return $filenames; } } elseif($ext == 'tar' && class_exists('PharData')) { $archive = new PharData($path); $filenames = array(); foreach(new RecursiveIteratorIterator($archive) as $file) { $parent_info = $file->getPathInfo(); $zip_name = str_replace("phar://".$path, '', $file->getPathName()); $zip_name = substr($zip_name, ($pos = strpos($zip_name, '/')) !== false ? $pos + 1 : 0); $zip_folder = $parent_info->getFileName(); $zip_info = new SplFileInfo($file); $filenames[] = array( 'name' => $zip_name, 'filesize' => $zip_info->getSize(), 'compressed_size' => $file->getCompressedSize(), 'folder' => $zip_folder ); } return $filenames; } return false; } /** * Encode html entities * @param string $text * @return string */ function fm_enc($text) { return htmlspecialchars($text, ENT_QUOTES, 'UTF-8'); } /** * Prevent XSS attacks * @param string $text * @return string */ function fm_isvalid_filename($text) { return (strpbrk($text, '/?%*:|"<>') === FALSE) ? true : false; } /** * Save message in session * @param string $msg * @param string $status */ function fm_set_msg($msg, $status = 'ok') { $_SESSION[FM_SESSION_ID]['message'] = $msg; $_SESSION[FM_SESSION_ID]['status'] = $status; } /** * Check if string is in UTF-8 * @param string $string * @return int */ function fm_is_utf8($string) { return preg_match('//u', $string); } /** * Convert file name to UTF-8 in Windows * @param string $filename * @return string */ function fm_convert_win($filename) { if (FM_IS_WIN && function_exists('iconv')) { $filename = iconv(FM_ICONV_INPUT_ENC, 'UTF-8//IGNORE', $filename); } return $filename; } /** * @param $obj * @return array */ function fm_object_to_array($obj) { if (!is_object($obj) && !is_array($obj)) { return $obj; } if (is_object($obj)) { $obj = get_object_vars($obj); } return array_map('fm_object_to_array', $obj); } /** * Get CSS classname for file * @param string $path * @return string */ function fm_get_file_icon_class($path) { // get extension $ext = strtolower(pathinfo($path, PATHINFO_EXTENSION)); switch ($ext) { case 'ico': case 'gif': case 'jpg': case 'jpeg': case 'jpc': case 'jp2': case 'jpx': case 'xbm': case 'wbmp': case 'png': case 'bmp': case 'tif': case 'tiff': case 'webp': case 'avif': case 'svg': $img = 'fa fa-picture-o'; break; case 'passwd': case 'ftpquota': case 'sql': case 'js': case 'ts': case 'jsx': case 'tsx': case 'hbs': case 'json': case 'sh': case 'config': case 'twig': case 'tpl': case 'md': case 'gitignore': case 'c': case 'cpp': case 'cs': case 'py': case 'rs': case 'map': case 'lock': case 'dtd': $img = 'fa fa-file-code-o'; break; case 'txt': case 'ini': case 'conf': case 'log': case 'htaccess': case 'yaml': case 'yml': case 'toml': case 'tmp': case 'top': case 'bot': case 'dat': case 'bak': case 'htpasswd': case 'pl': $img = 'fa fa-file-text-o'; break; case 'css': case 'less': case 'sass': case 'scss': $img = 'fa fa-css3'; break; case 'bz2': case 'tbz2': case 'tbz': case 'zip': case 'rar': case 'gz': case 'tgz': case 'tar': case '7z': case 'xz': case 'txz': case 'zst': case 'tzst': $img = 'fa fa-file-archive-o'; break; case 'php': case 'php4': case 'php5': case 'phps': case 'phtml': $img = 'fa fa-code'; break; case 'htm': case 'html': case 'shtml': case 'xhtml': $img = 'fa fa-html5'; break; case 'xml': case 'xsl': $img = 'fa fa-file-excel-o'; break; case 'wav': case 'mp3': case 'mp2': case 'm4a': case 'aac': case 'ogg': case 'oga': case 'wma': case 'mka': case 'flac': case 'ac3': case 'tds': $img = 'fa fa-music'; break; case 'm3u': case 'm3u8': case 'pls': case 'cue': case 'xspf': $img = 'fa fa-headphones'; break; case 'avi': case 'mpg': case 'mpeg': case 'mp4': case 'm4v': case 'flv': case 'f4v': case 'ogm': case 'ogv': case 'mov': case 'mkv': case '3gp': case 'asf': case 'wmv': case 'webm': $img = 'fa fa-file-video-o'; break; case 'eml': case 'msg': $img = 'fa fa-envelope-o'; break; case 'xls': case 'xlsx': case 'ods': $img = 'fa fa-file-excel-o'; break; case 'csv': $img = 'fa fa-file-text-o'; break; case 'bak': case 'swp': $img = 'fa fa-clipboard'; break; case 'doc': case 'docx': case 'odt': $img = 'fa fa-file-word-o'; break; case 'ppt': case 'pptx': $img = 'fa fa-file-powerpoint-o'; break; case 'ttf': case 'ttc': case 'otf': case 'woff': case 'woff2': case 'eot': case 'fon': $img = 'fa fa-font'; break; case 'pdf': $img = 'fa fa-file-pdf-o'; break; case 'psd': case 'ai': case 'eps': case 'fla': case 'swf': $img = 'fa fa-file-image-o'; break; case 'exe': case 'msi': $img = 'fa fa-file-o'; break; case 'bat': $img = 'fa fa-terminal'; break; default: $img = 'fa fa-info-circle'; } return $img; } /** * Get image files extensions * @return array */ function fm_get_image_exts() { return array('ico', 'gif', 'jpg', 'jpeg', 'jpc', 'jp2', 'jpx', 'xbm', 'wbmp', 'png', 'bmp', 'tif', 'tiff', 'psd', 'svg', 'webp', 'avif'); } /** * Get video files extensions * @return array */ function fm_get_video_exts() { return array('avi', 'webm', 'wmv', 'mp4', 'm4v', 'ogm', 'ogv', 'mov', 'mkv'); } /** * Get audio files extensions * @return array */ function fm_get_audio_exts() { return array('wav', 'mp3', 'ogg', 'm4a'); } /** * Get text file extensions * @return array */ function fm_get_text_exts() { return array( 'txt', 'css', 'ini', 'conf', 'log', 'htaccess', 'passwd', 'ftpquota', 'sql', 'js', 'ts', 'jsx', 'tsx', 'mjs', 'json', 'sh', 'config', 'php', 'php4', 'php5', 'phps', 'phtml', 'htm', 'html', 'shtml', 'xhtml', 'xml', 'xsl', 'm3u', 'm3u8', 'pls', 'cue', 'bash', 'vue', 'eml', 'msg', 'csv', 'bat', 'twig', 'tpl', 'md', 'gitignore', 'less', 'sass', 'scss', 'c', 'cpp', 'cs', 'py', 'go', 'zsh', 'swift', 'map', 'lock', 'dtd', 'svg', 'asp', 'aspx', 'asx', 'asmx', 'ashx', 'jsp', 'jspx', 'cgi', 'dockerfile', 'ruby', 'yml', 'yaml', 'toml', 'vhost', 'scpt', 'applescript', 'csx', 'cshtml', 'c++', 'coffee', 'cfm', 'rb', 'graphql', 'mustache', 'jinja', 'http', 'handlebars', 'java', 'es', 'es6', 'markdown', 'wiki', 'tmp', 'top', 'bot', 'dat', 'bak', 'htpasswd', 'pl' ); } /** * Get mime types of text files * @return array */ function fm_get_text_mimes() { return array( 'application/xml', 'application/javascript', 'application/x-javascript', 'image/svg+xml', 'message/rfc822', 'application/json', ); } /** * Get file names of text files w/o extensions * @return array */ function fm_get_text_names() { return array( 'license', 'readme', 'authors', 'contributors', 'changelog', ); } /** * Get online docs viewer supported files extensions * @return array */ function fm_get_onlineViewer_exts() { return array('doc', 'docx', 'xls', 'xlsx', 'pdf', 'ppt', 'pptx', 'ai', 'psd', 'dxf', 'xps', 'rar', 'odt', 'ods'); } /** * It returns the mime type of a file based on its extension. * @param extension The file extension of the file you want to get the mime type for. * @return string|string[] The mime type of the file. */ function fm_get_file_mimes($extension) { $fileTypes['swf'] = 'application/x-shockwave-flash'; $fileTypes['pdf'] = 'application/pdf'; $fileTypes['exe'] = 'application/octet-stream'; $fileTypes['zip'] = 'application/zip'; $fileTypes['doc'] = 'application/msword'; $fileTypes['xls'] = 'application/vnd.ms-excel'; $fileTypes['ppt'] = 'application/vnd.ms-powerpoint'; $fileTypes['gif'] = 'image/gif'; $fileTypes['png'] = 'image/png'; $fileTypes['jpeg'] = 'image/jpg'; $fileTypes['jpg'] = 'image/jpg'; $fileTypes['webp'] = 'image/webp'; $fileTypes['avif'] = 'image/avif'; $fileTypes['rar'] = 'application/rar'; $fileTypes['ra'] = 'audio/x-pn-realaudio'; $fileTypes['ram'] = 'audio/x-pn-realaudio'; $fileTypes['ogg'] = 'audio/x-pn-realaudio'; $fileTypes['wav'] = 'video/x-msvideo'; $fileTypes['wmv'] = 'video/x-msvideo'; $fileTypes['avi'] = 'video/x-msvideo'; $fileTypes['asf'] = 'video/x-msvideo'; $fileTypes['divx'] = 'video/x-msvideo'; $fileTypes['mp3'] = 'audio/mpeg'; $fileTypes['mp4'] = 'audio/mpeg'; $fileTypes['mpeg'] = 'video/mpeg'; $fileTypes['mpg'] = 'video/mpeg'; $fileTypes['mpe'] = 'video/mpeg'; $fileTypes['mov'] = 'video/quicktime'; $fileTypes['swf'] = 'video/quicktime'; $fileTypes['3gp'] = 'video/quicktime'; $fileTypes['m4a'] = 'video/quicktime'; $fileTypes['aac'] = 'video/quicktime'; $fileTypes['m3u'] = 'video/quicktime'; $fileTypes['php'] = ['application/x-php']; $fileTypes['html'] = ['text/html']; $fileTypes['txt'] = ['text/plain']; //Unknown mime-types should be 'application/octet-stream' if(empty($fileTypes[$extension])) { $fileTypes[$extension] = ['application/octet-stream']; } return $fileTypes[$extension]; } /** * This function scans the files and folder recursively, and return matching files * @param string $dir * @param string $filter * @return array|null */ function scan($dir = '', $filter = '') { $path = FM_ROOT_PATH.'/'.$dir; if($path) { $ite = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($path)); $rii = new RegexIterator($ite, "/(" . $filter . ")/i"); $files = array(); foreach ($rii as $file) { if (!$file->isDir()) { $fileName = $file->getFilename(); $location = str_replace(FM_ROOT_PATH, '', $file->getPath()); $files[] = array( "name" => $fileName, "type" => "file", "path" => $location, ); } } return $files; } } /** * Parameters: downloadFile(File Location, File Name, * max speed, is streaming * If streaming - videos will show as videos, images as images * instead of download prompt * https://stackoverflow.com/a/13821992/1164642 */ function fm_download_file($fileLocation, $fileName, $chunkSize = 1024) { if (connection_status() != 0) return (false); $extension = pathinfo($fileName, PATHINFO_EXTENSION); $contentType = fm_get_file_mimes($extension); if(is_array($contentType)) { $contentType = implode(' ', $contentType); } $size = filesize($fileLocation); if ($size == 0) { fm_set_msg(lng('Zero byte file! Aborting download'), 'error'); $FM_PATH=FM_PATH; fm_redirect(FM_SELF_URL . '?p=' . urlencode($FM_PATH)); return (false); } @ini_set('magic_quotes_runtime', 0); $fp = fopen("$fileLocation", "rb"); if ($fp === false) { fm_set_msg(lng('Cannot open file! Aborting download'), 'error'); $FM_PATH=FM_PATH; fm_redirect(FM_SELF_URL . '?p=' . urlencode($FM_PATH)); return (false); } // headers header('Content-Description: File Transfer'); header('Expires: 0'); header('Cache-Control: must-revalidate, post-check=0, pre-check=0'); header('Pragma: public'); header("Content-Transfer-Encoding: binary"); header("Content-Type: $contentType"); $contentDisposition = 'attachment'; if (strstr($_SERVER['HTTP_USER_AGENT'], "MSIE")) { $fileName = preg_replace('/\./', '%2e', $fileName, substr_count($fileName, '.') - 1); header("Content-Disposition: $contentDisposition;filename=\"$fileName\""); } else { header("Content-Disposition: $contentDisposition;filename=\"$fileName\""); } header("Accept-Ranges: bytes"); $range = 0; if (isset($_SERVER['HTTP_RANGE'])) { list($a, $range) = explode("=", $_SERVER['HTTP_RANGE']); str_replace($range, "-", $range); $size2 = $size - 1; $new_length = $size - $range; header("HTTP/1.1 206 Partial Content"); header("Content-Length: $new_length"); header("Content-Range: bytes $range$size2/$size"); } else { $size2 = $size - 1; header("Content-Range: bytes 0-$size2/$size"); header("Content-Length: " . $size); } $fileLocation = realpath($fileLocation); while (ob_get_level()) ob_end_clean(); readfile($fileLocation); fclose($fp); return ((connection_status() == 0) and !connection_aborted()); } /** * If the theme is dark, return the text-white and bg-dark classes. * @return string the value of the variable. */ function fm_get_theme() { $result = ''; if(FM_THEME == "dark") { $result = "text-white bg-dark"; } return $result; } /** * Class to work with zip files (using ZipArchive) */ class FM_Zipper { private $zip; public function __construct() { $this->zip = new ZipArchive(); } /** * Create archive with name $filename and files $files (RELATIVE PATHS!) * @param string $filename * @param array|string $files * @return bool */ public function create($filename, $files) { $res = $this->zip->open($filename, ZipArchive::CREATE); if ($res !== true) { return false; } if (is_array($files)) { foreach ($files as $f) { $f = fm_clean_path($f); if (!$this->addFileOrDir($f)) { $this->zip->close(); return false; } } $this->zip->close(); return true; } else { if ($this->addFileOrDir($files)) { $this->zip->close(); return true; } return false; } } /** * Extract archive $filename to folder $path (RELATIVE OR ABSOLUTE PATHS) * @param string $filename * @param string $path * @return bool */ public function unzip($filename, $path) { $res = $this->zip->open($filename); if ($res !== true) { return false; } if ($this->zip->extractTo($path)) { $this->zip->close(); return true; } return false; } /** * Add file/folder to archive * @param string $filename * @return bool */ private function addFileOrDir($filename) { if (is_file($filename)) { return $this->zip->addFile($filename); } elseif (is_dir($filename)) { return $this->addDir($filename); } return false; } /** * Add folder recursively * @param string $path * @return bool */ private function addDir($path) { if (!$this->zip->addEmptyDir($path)) { return false; } $objects = scandir($path); if (is_array($objects)) { foreach ($objects as $file) { if ($file != '.' && $file != '..') { if (is_dir($path . '/' . $file)) { if (!$this->addDir($path . '/' . $file)) { return false; } } elseif (is_file($path . '/' . $file)) { if (!$this->zip->addFile($path . '/' . $file)) { return false; } } } } return true; } return false; } } /** * Class to work with Tar files (using PharData) */ class FM_Zipper_Tar { private $tar; public function __construct() { $this->tar = null; } /** * Create archive with name $filename and files $files (RELATIVE PATHS!) * @param string $filename * @param array|string $files * @return bool */ public function create($filename, $files) { $this->tar = new PharData($filename); if (is_array($files)) { foreach ($files as $f) { $f = fm_clean_path($f); if (!$this->addFileOrDir($f)) { return false; } } return true; } else { if ($this->addFileOrDir($files)) { return true; } return false; } } /** * Extract archive $filename to folder $path (RELATIVE OR ABSOLUTE PATHS) * @param string $filename * @param string $path * @return bool */ public function unzip($filename, $path) { $res = $this->tar->open($filename); if ($res !== true) { return false; } if ($this->tar->extractTo($path)) { return true; } return false; } /** * Add file/folder to archive * @param string $filename * @return bool */ private function addFileOrDir($filename) { if (is_file($filename)) { try { $this->tar->addFile($filename); return true; } catch (Exception $e) { return false; } } elseif (is_dir($filename)) { return $this->addDir($filename); } return false; } /** * Add folder recursively * @param string $path * @return bool */ private function addDir($path) { $objects = scandir($path); if (is_array($objects)) { foreach ($objects as $file) { if ($file != '.' && $file != '..') { if (is_dir($path . '/' . $file)) { if (!$this->addDir($path . '/' . $file)) { return false; } } elseif (is_file($path . '/' . $file)) { try { $this->tar->addFile($path . '/' . $file); } catch (Exception $e) { return false; } } } } return true; } return false; } } /** * Save Configuration */ class FM_Config { var $data; function __construct() { global $root_path, $root_url, $CONFIG; $fm_url = $root_url.$_SERVER["PHP_SELF"]; $this->data = array( 'lang' => 'en', 'error_reporting' => true, 'show_hidden' => true ); $data = false; if (strlen($CONFIG)) { $data = fm_object_to_array(json_decode($CONFIG)); } else { $msg = 'Tiny File Manager
Error: Cannot load configuration'; if (substr($fm_url, -1) == '/') { $fm_url = rtrim($fm_url, '/'); $msg .= '
'; $msg .= '
Seems like you have a trailing slash on the URL.'; $msg .= '
Try this link: ' . $fm_url . ''; } die($msg); } if (is_array($data) && count($data)) $this->data = $data; else $this->save(); } function save() { $fm_file = __FILE__; $var_name = '$CONFIG'; $var_value = var_export(json_encode($this->data), true); $config_string = " ' . $_SESSION[FM_SESSION_ID]['message'] . '

'; unset($_SESSION[FM_SESSION_ID]['message']); unset($_SESSION[FM_SESSION_ID]['status']); } } /** * Show page header in Login Form */ function fm_show_header_login() { $sprites_ver = '20160315'; header("Content-Type: text/html; charset=utf-8"); header("Expires: Sat, 26 Jul 1997 05:00:00 GMT"); header("Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0"); header("Pragma: no-cache"); global $lang, $root_url, $favicon_path; ?> '; } ?> <?php echo fm_enc(APP_TITLE) ?> ">
'; } ?> <?php echo fm_enc(APP_TITLE) ?> ">
PKZ (* chatify/light.mode.cssnu[/*app scroll*/ .app-scroll::-webkit-scrollbar-thumb, .app-scroll-thin::-webkit-scrollbar-thumb { background: #d8dce0; } .app-scroll-thin::-webkit-scrollbar { background: #eee; } .app-scroll::-webkit-scrollbar:hover, .app-scroll-thin::-webkit-scrollbar:hover { background: #eee; } .messenger { background: #fff; } .messenger-search[type="text"] { background: #f7f7f7; color: #333; } .messenger-listView { background: #fff; border: 1px solid #eee; } .messenger-listView-tabs { border-bottom: 1px solid #eee; } .messenger-listView-tabs a:hover, .messenger-listView-tabs a:focus { background-color: #f7f7f7; } .messenger-favorites div.avatar { border: 2px solid #fff; } .messenger-list-item:hover { background: #f7f7f7; } .messenger-messagingView { border-top: 1px solid #eee; border-bottom: 1px solid #eee; background: #fafaff; } .m-header-messaging { background: #fff; } .messenger-infoView { background: #fff; border: 1px solid #eee; } .messenger-infoView > p { color: #000; } .divider { border-top: 1px solid #e0e0e0; } .messenger-sendCard { background: #fff; border-top: 1px solid #eee; } .attachment-preview > p { color: #333; } .m-send { color: #333; } .message-card p { background: #ffffff; color: #656b75; box-shadow: 0px 6px 11px rgba(18, 67, 105, 0.03); } .m-li-divider { border-bottom: 1px solid #ebebeb; } .m-header a, .m-header a:hover, .m-header a:focus { text-decoration: none; color: #606679; } .messenger-list-item td p { color: #606679; } .activeStatus { border: 2px solid #fff; } .messenger-list-item:hover .activeStatus { border-color: #f7f7f7; } .messenger-favorites > div p { color: #4a4a4a; } .avatar { background-color: #eee; } /* *********************************************** * Placeholder loading *********************************************** */ .loadingPlaceholder-body div, .loadingPlaceholder-header tr td div { background: #f6f7f8; background-image: -webkit-linear-gradient( left, #f6f7f8 0%, #eaecf3 20%, #f6f7f8 40%, #f6f7f8 100% ); } /* *********************************************** * App Modal *********************************************** */ .app-modal-card { background: rgba(255, 255, 255, 0.89); } .app-modal-header { color: #000; } .app-modal-body { color: #000; } /* ***************************************** * Responsive Design ***************************************** */ @media (max-width: 1060px) { .messenger-infoView { box-shadow: 0px 0px 20px rgba(18, 67, 105, 0.06); } } @media (max-width: 980px) { .messenger-listView { box-shadow: 0px 0px 20px rgba(18, 67, 105, 0.06); } } PKZ: chatify/dark.mode.cssnu[/*app scroll*/ .app-scroll::-webkit-scrollbar-thumb, .app-scroll-thin::-webkit-scrollbar-thumb { background: #323232; } .app-scroll-thin::-webkit-scrollbar { background: #2c2c2c; } .app-scroll::-webkit-scrollbar:hover, .app-scroll-thin::-webkit-scrollbar:hover { background: #2c2c2c; } .messenger { background: #272727; } .messenger-search[type="text"] { background: #323232; color: #fff; } .messenger-listView { background: #272727; border: 1px solid #323232; } .messenger-listView-tabs { border-bottom: 1px solid #323232; } .messenger-listView-tabs a:hover, .messenger-listView-tabs a:focus { background-color: #323232; } .messenger-favorites div.avatar { border: 2px solid #272727; } .messenger-list-item:hover { background: #323232; } .messenger-messagingView { border-top: 1px solid #323232; border-bottom: 1px solid #323232; background: #272727; } .m-header-messaging { background: #323232; } .messenger-infoView { background: #272727; border: 1px solid #323232; } .messenger-infoView > p { color: #fff; } .divider { border-top: 1px solid #2f2f2f; } .messenger-sendCard { background: #323232; border-top: 1px solid #272727; } .attachment-preview > p { color: #fff; } .m-send { color: #fff; } .message-card p { background: #323232; color: #fff; } .m-li-divider { border-bottom: 1px solid #323232; } .m-header a, .m-header a:hover, .m-header a:focus { text-decoration: none; color: #fff; } .messenger-list-item td p { color: #fff; } .activeStatus { border: 2px solid #272727; } .messenger-list-item:hover .activeStatus { border-color: #323232; } .messenger-favorites > div p { color: #ffffff; } .avatar { background-color: #323232; } /* *********************************************** * Placeholder loading *********************************************** */ .loadingPlaceholder-body div, .loadingPlaceholder-header tr td div { background: #323232; background-image: -webkit-linear-gradient( left, #323232 0%, #323232 20%, #323232 40%, #323232 100% ); } /* *********************************************** * App Modal *********************************************** */ .app-modal-card { background: rgba(50, 50, 50, 0.94); } .app-modal-header { color: #fff; } .app-modal-body { color: #fff; } .messages sub { color: #fff; } .chatify-hover-delete-btn { color: #ffffff; } PKZchatify/index.phpnu[PKZZfBBchatify/style.cssnu[body { margin: 0; } /*internet connection*/ .internet-connection { display: none; background: rgba(0, 0, 0, 0.76); position: absolute; top: 43px; left: 0; right: 0; text-align: center; padding: 4px; color: #fff; } .internet-connection span { display: none; } /*green background RGBA*/ .successBG-rgba { background: rgba(54, 180, 36, 0.76) !important; } /* app scroll*/ .app-scroll::-webkit-scrollbar { width: 5px; height: 5px; border-radius: 4px; background: transparent; transition: all 0.3s ease; } .app-scroll-thin::-webkit-scrollbar { width: 1px; height: 1px; border-radius: 4px; transition: all 0.3s ease; } .app-scroll::-webkit-scrollbar-thumb, .app-scroll-thin::-webkit-scrollbar-thumb { border-radius: 4px; } .messenger { display: inline-flex; width: 100%; height: 100%; font-family: sans-serif; } .messenger-listView { position: relative; top: 0px; left: 0px; right: 0px; z-index: 1; background: transparent; width: 45%; min-width: 200px; overflow: auto; } .messenger-listView .m-header { position: absolute; top: 0; left: 0; right: 0; padding: 0px !important; } .messenger-listView .m-header > nav { margin: 10px; } .messenger-listView .m-body { margin-top: 141px; } .messenger-messagingView { position: relative; overflow: hidden; width: 100%; } .messenger-messagingView .m-body { padding-top: 15px; height: calc(100% - 90px); overflow-x: hidden; overflow-y: auto; } .m-header { padding: 10px 15px; font-weight: 600; background: transparent; } .m-header-right { display: inline-flex; float: right; } .m-header-messaging { background: #fff; box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.06); } .m-header svg { margin: 0px 8px; font-size: 16px; transition: transform 0.12s; } .m-header svg:active { transform: scale(0.9); } .messenger-search[type="text"] { margin: 0px 10px; width: calc(100% - 20px); border: none; padding: 8px 10px; border-radius: 6px; outline: none; } .messenger-listView-tabs { display: inline-flex; width: 100%; margin-top: 10px; background-color: transparent; box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.06); } .messenger-listView-tabs a { width: 100%; text-align: center; padding: 10px; text-decoration: none; background-color: transparent; transition: background 0.3s; } .messenger-listView-tabs a:hover, .messenger-listView-tabs a:focus { text-decoration: none; } .messenger-tab { overflow: auto; height: calc(100vh - 143px); display: none; position: relative; } .add-to-favorite { display: none; } .add-to-favorite svg { color: rgba(180, 180, 180, 0.52) !important; } .favorite-added svg { color: #ffc107 !important; } .favorite svg { color: #ffc107 !important; } .show { display: block; } .hide { display: none; } .messenger-list-item { margin: 0; width: 100%; cursor: pointer; transition: background 0.1s; } .m-list-active span, .m-list-active p { color: #fff !important; } .messenger-list-item td { padding: 10px; } .messenger-list-item tr > td:first-child { padding-right: 0; width: 55px; } .messenger-list-item td p { margin-bottom: 4px; font-size: 14px; font-weight: 600; } .messenger-list-item td p span { float: right; } .messenger-list-item td span { color: #cacaca; font-weight: 400; font-size: 13px; } .messenger-list-item td b { float: right; color: #fff; padding: 0px 4px; border-radius: 20px; font-size: 13px; width: 20px; height: auto; text-align: center; } .avatar { text-align: center; border-radius: 100%; overflow: hidden; background-image: url(""); background-repeat: no-repeat; background-size: cover; background-position: center center; } .av-l { width: 100px; height: 100px; } .av-m { width: 45px; height: 45px; } .av-s { width: 32px !important; height: 32px !important; } .messenger-favorites { padding: 10px; overflow: auto; white-space: nowrap; } .messenger-favorites > div { display: inline-block; text-align: center; transition: transform 0.3s; cursor: pointer; } .messenger-favorites > div p { font-size: 12px; margin: 8px 0px; margin-bottom: 0px; } .messenger-favorites div.avatar { border: 2px solid #fff; margin: 0px 4px; } .messenger-favorites > div:active { transform: scale(0.9); } .messenger-title { margin: 0; padding: 10px; padding-bottom: 0px; text-transform: uppercase; color: #aeaeb7; font-size: 12px; font-weight: 600; } .messenger-infoView { display: block; padding-top: 7px; overflow: auto; width: 40%; min-width: 200px; } .messenger-infoView nav a { text-decoration: none; padding: 5px 8px; font-size: 18px; } .messenger-infoView > div { margin: auto; margin-top: 8%; text-align: center; } .messenger-infoView > p { text-align: center; margin: auto; margin-top: 15px; font-size: 18px; font-weight: 600; } .messenger-infoView-btns a { display: block; text-decoration: none !important; padding: 5px 10px; margin: 0% 10%; border-radius: 3px; font-size: 14px; transition: background 0.3s; } .messenger-infoView-btns a.default:hover { background: #f0f6ff; } .messenger-infoView-btns a.danger { color: #ff5555; } .messenger-infoView-btns a.danger:hover { background: rgba(255, 85, 85, 0.11); } .shared-photo { border-radius: 3px; background: #f7f7f7; height: 120px; overflow: hidden; display: inline-block; margin: 0px 1px; width: calc(50% - 12px); background-position: center center; background-size: cover; background-repeat: no-repeat; cursor: pointer; } .shared-photo img { width: auto; height: 100%; } .messenger-infoView-shared { display: none; } .messenger-infoView-shared .messenger-title { padding-bottom: 10px; } .messenger-infoView-btns .delete-conversation { display: none; } .message-card { display: flex; flex-direction: column; margin: 2px 15px; width: calc(100% - 30px); } .message-card div { margin-top: 0px; } .message-card p { margin: 0; padding: 6px 15px; padding-bottom: 5px; max-width: 80%; width: fit-content; width: -webkit-fit-content; border-radius: 20px; word-break: break-word; } .message-card p sub { display: inline-block; font-size: 11px; } .message-card p sub:before { content: ""; background: transparent; width: 10px; height: 10px; display: inline-block; } .mc-sender { direction: rtl; } .mc-sender p { direction: ltr; color: #fff !important; } .mc-sender p sub { color: rgba(255, 255, 255, 0.67); } .mc-error p { background: rgba(255, 0, 0, 0.27) !important; color: #ff0000 !important; } .mc-error p sub { color: #ff0000 !important; } .listView-x, .show-listView { display: none; } .messenger-sendCard { display: none; position: absolute; bottom: 0; left: 0; width: 100%; } .messenger-sendCard form { width: 100%; display: inline-flex; margin: 0; } .messenger-sendCard input[type="file"] { display: none; } .messenger-sendCard button, .messenger-sendCard button:active, .messenger-sendCard button:focus { border: none; outline: none; background: none; padding: 0; margin: 0; } .messenger-sendCard label { margin: 0; } .messenger-sendCard svg { margin: 9px 10px; color: #bdcbd6; cursor: pointer; font-size: 21px; transition: transform 0.15s; } .messenger-sendCard svg:active { transform: scale(0.9); } .m-send { font-size: 14px; width: 100%; border: none; padding: 10px; outline: none; resize: none; background: transparent; font-family: sans-serif; height: 44px; max-height: 200px; } .attachment-preview { position: relative; padding: 10px; } .attachment-preview > p { margin: 0; font-weight: 600; padding: 0px; padding-top: 10px; } .attachment-preview > p > svg { font-size: 16px; margin: 0; margin-bottom: -1px; color: #737373; } .attachment-preview svg:active { transform: none; } .image-file { cursor: pointer; width: 140px; height: 70px; border-radius: 4px; background-color: #f7f7f7; background-size: cover; background-repeat: no-repeat; background-position: center center; } .attachment-preview > svg:first-child { position: absolute; background: rgba(0, 0, 0, 0.33); width: 20px; height: 20px; padding: 3px; border-radius: 100%; font-size: 16px; margin: 0; top: 10px; color: #fff; } #message-form > button { height: 40px; } .file-download { font-size: 12px; display: block; color: #fff; text-decoration: none; font-weight: 600; border: 1px solid rgba(0, 0, 0, 0.08); background: rgba(0, 0, 0, 0.03); padding: 2px 8px; margin-top: 10px; border-radius: 20px; transition: transform 0.3s, background 0.3s; } .file-download:hover, .file-download:focus { color: #fff; text-decoration: none; background: rgba(0, 0, 0, 0.08); } .file-download:active { transform: scale(0.95); } .typing-indicator { display: none; } .messages { padding: 5px 0px; } .message-hint { margin: 0; text-align: center; } .center-el { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); } .message-hint span { background: rgba(154, 161, 170, 0.13); padding: 3px 10px; border-radius: 20px; color: rgb(135, 147, 164); display: inline-block; } .upload-avatar-details { font-size: 14px; color: #949ba5; display: none; } .upload-avatar-preview { position: relative; border: 1px solid #e0e0e0; margin: 20px auto; } .upload-avatar-loading { position: absolute; top: calc(50% - 21px); margin: 0; left: calc(50% - 20px); } .divider { margin: 15px; } .update-messengerColor { margin: 1rem 0rem; } .update-messengerColor .color-btn { width: 30px; height: 30px; border-radius: 20px; display: inline-block; cursor: pointer; } .m-color-active { border: 3px solid rgba(255, 255, 255, 0.5); } .update-messengerColor .color-btn { transition: transform 0.15s, border 0.15s; } .update-messengerColor .color-btn:active { transform: scale(0.9); } .dark-mode-switch { margin: 0px 5px; cursor: pointer; } .activeStatus { width: 12px; height: 12px; background: #4caf50; border-radius: 20px; position: absolute; bottom: 12%; right: 6%; transition: border 0.1s; } /* *********************************************** * App Buttons *********************************************** */ .app-btn { cursor: pointer; border: none; padding: 3px 15px; border-radius: 20px; margin: 1px; font-size: 14px; display: inline-block; outline: none; text-decoration: none; transition: all 0.3s; color: rgb(33, 128, 243); } .app-btn:hover, .app-btn:focus { color: rgb(33, 128, 243); outline: none; text-decoration: none; } .app-btn:active { transform: scale(0.9); } .a-btn-light { background: #f1f1f1; color: #333; } .a-btn-light:hover, .a-btn-light:focus { color: #333; background: #e4e4e4; } .a-btn-primary { background: #0976d6; color: #fff; } .a-btn-primary:hover, .a-btn-primary:focus { background: #0085ef; color: #fff; } .a-btn-warning { background: #ffc107; color: #fff; } .a-btn-warning:hover, .a-btn-warning:focus { background: #ffa726; color: #fff; } .a-btn-success { background: #3fc380 !important; color: #fff; } .a-btn-success:hover, .a-btn-success:focus { background: #2ecc71 !important; color: #fff; } .a-btn-danger { background: #ea1909 !important; color: #fff; } .a-btn-danger:hover, .a-btn-danger:focus { color: #fff; background: #b70d00 !important; } .btn-disabled { opacity: 0.5; } /* *********************************************** * App Modal *********************************************** */ .app-modal { display: none; position: fixed; top: 0; bottom: 0; right: 0; left: 0; background: rgba(0, 0, 0, 0.53); z-index: 2; } .app-modal-container { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); } .app-modal-card { width: auto; max-width: 400px; margin: auto; padding: 20px 40px; border-radius: 5px; text-align: center; box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.27); transform: scale(0); } .app-modal-header { font-weight: 500; } .app-modal-footer { margin-top: 10px; } .app-show-modal { transform: scale(1); animation: show_modal 0.15s; } /* modal animation */ @keyframes show_modal { from { transform: scale(0); } to { transform: scale(1); } } /* *********************************************** * Placeholder loading *********************************************** */ .loadingPlaceholder-wrapper { position: relative; } .loadingPlaceholder-body div, .loadingPlaceholder-header tr td div { background-repeat: no-repeat; background-size: 800px 104px; height: 104px; position: relative; } .loadingPlaceholder-body div { position: absolute; right: 0px; left: 0px; top: 0px; } div.loadingPlaceholder-avatar { height: 45px !important; width: 45px; margin: 10px; border-radius: 60px; } div.loadingPlaceholder-name { height: 15px !important; margin-bottom: 10px; width: 150px; border-radius: 2px; } div.loadingPlaceholder-date { height: 10px !important; width: 106px; border-radius: 2px; } /* *********************************************** * Image modal box *********************************************** */ .imageModal { display: none; position: fixed; z-index: 1; padding-top: 100px; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgb(0, 0, 0); background-color: rgba(0, 0, 0, 0.9); } .imageModal-content { margin: auto; display: block; width: 80%; max-width: 700px; } .imageModal-content { -webkit-animation-name: zoom; -webkit-animation-duration: 0.15s; animation-name: zoom; animation-duration: 0.15s; } @-webkit-keyframes zoom { from { -webkit-transform: scale(0); } to { -webkit-transform: scale(1); } } @keyframes zoom { from { transform: scale(0); } to { transform: scale(1); } } .imageModal-close { position: absolute; top: 15px; right: 35px; color: #f1f1f1; font-size: 40px; font-weight: bold; transition: 0.3s; } .imageModal-close:hover, .imageModal-close:focus { color: #bbb; text-decoration: none; cursor: pointer; } /* *********************************************** * Typing (jumping) dots animation and style *********************************************** */ .dot { width: 8px; height: 8px; background: #bcc1c6; display: inline-block; border-radius: 50%; right: 0px; bottom: 0px; position: relative; animation: jump 1s infinite; } .typing-dots .dot-1 { -webkit-animation-delay: 100ms; animation-delay: 100ms; } .typing-dots .dot-2 { -webkit-animation-delay: 200ms; animation-delay: 200ms; } .typing-dots .dot-3 { -webkit-animation-delay: 300ms; animation-delay: 300ms; } @keyframes jump { 0% { bottom: 0px; } 20% { bottom: 5px; } 40% { bottom: 0px; } } /* ***************************************** * Responsive Design ***************************************** */ @media (max-width: 1060px) { .messenger-infoView { position: fixed; right: 0; top: 0; bottom: 0; max-width: 334px; } } @media (max-width: 980px) { .messenger-listView { position: fixed; left: 0; top: 0; bottom: 0; max-width: 334px; } .listView-x { display: block; } .show-listView { display: inline-block; } } @media (max-width: 680px) { .messenger-messagingView { position: fixed; top: 0; left: 0; height: 100%; } .messenger-infoView { display: none; width: 100%; max-width: unset; } .messenger-listView { width: 100%; max-width: unset; } .listView-x { display: none; } .app-modal-container { transform: unset; } .app-modal-card { max-width: unset; position: fixed; left: 0; right: 0; top: 0; bottom: 0; width: 100%; height: 100%; border-radius: 0px; } } @media (min-width: 680px) { .messenger-listView { display: unset; } } @media only screen and (max-width: 700px) { .imageModal-content { width: 100%; } } @media (max-width: 576px) { .user-name { max-width: 150px; white-space: nowrap; overflow: hidden !important; text-overflow: ellipsis; } .chatify-md-block { display: block; } } .chatify-d-flex { display: flex !important; } .chatify-d-none { display: none !important; } .chatify-d-hidden { visibility: hidden !important; } .chatify-justify-content-between { justify-content: space-between !important; } .chatify-align-items-center { align-items: center !important; } .chat-message-wrapper { display: flex; flex-direction: column; align-items: end; unicode-bidi: bidi-override; direction: ltr; } .pb-3 { padding-bottom: 0.75rem; /* 12px */ } .mb-2 { margin-bottom: 0.5rem; /* 8px */ } .messenger textarea:focus { outline: none; border: none; box-shadow: none; } .chatify-hover-delete-btn { display: none; cursor: pointer; color: #333333; } .message-card:hover .chatify-hover-delete-btn { display: block; } PKZ9xxsite.cssnu[@import url(https://fonts.googleapis.com/css?family=Nunito:300,400,600,700); :root { --blue: #2684ff; --indigo: #6e00ff; --purple: #510fa8; --pink: #f074ad; --red: #ff5630; --orange: #ffab00; --yellow: #fc0; --green: #36b37e; --teal: #00b8d9; --cyan: #4bd6e5; --gray: #c0ccda; --gray-dark: #3c4858; --primary: #6e00ff; --secondary: #eff2f7; --success: #36b37e; --info: #00b8d9; --warning: #ffab00; --danger: #ff5630; --light: #eff2f7; --dark: #273444; --neutral: #fff; --white: #fff; --breakpoint-xs: 0; --breakpoint-sm: 576px; --breakpoint-md: 768px; --breakpoint-lg: 992px; --breakpoint-xl: 1200px; --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace } *, :after, :before { -webkit-box-sizing: border-box; box-sizing: border-box } html { font-family: sans-serif; line-height: 1.15; -webkit-text-size-adjust: 100%; -webkit-tap-highlight-color: rgba(31, 45, 61, 0) } article, aside, figcaption, figure, footer, header, hgroup, main, nav, section { display: block } body { margin: 0; font-family: Nunito, sans-serif; font-size: 1rem; font-weight: 400; line-height: 1.7; color: #8492a6; text-align: left; background-color: #fff } [tabindex="-1"]:focus { outline: 0 !important } hr { -webkit-box-sizing: content-box; box-sizing: content-box; height: 0; overflow: visible } h1, h2, h3, h4, h5, h6 { margin-top: 0; margin-bottom: .5rem } p { margin-top: 0; margin-bottom: 1rem } abbr[data-original-title], abbr[title] { text-decoration: underline; -webkit-text-decoration: underline dotted; text-decoration: underline dotted; cursor: help; border-bottom: 0; -webkit-text-decoration-skip-ink: none; text-decoration-skip-ink: none } address { font-style: normal; line-height: inherit } address, dl, ol, ul { margin-bottom: 1rem } dl, ol, ul { margin-top: 0 } ol ol, ol ul, ul ol, ul ul { margin-bottom: 0 } dt { font-weight: 600 } dd { margin-bottom: .5rem; margin-left: 0 } blockquote { margin: 0 0 1rem } b, strong { font-weight: 700 } small { font-size: 80% } sub, sup { position: relative; font-size: 75%; line-height: 0; vertical-align: baseline } sub { bottom: -.25em } sup { top: -.5em } a { color: #6e00ff; background-color: transparent } a, a:hover { text-decoration: none } a:hover { color: #4d00b3 } a:not([href]):not([tabindex]), a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover { color: inherit; text-decoration: none } a:not([href]):not([tabindex]):focus { outline: 0 } code, kbd, pre, samp { font-family: SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace; font-size: 1em } pre { margin-top: 0; margin-bottom: 1rem; overflow: auto } figure { margin: 0 0 1rem } img { vertical-align: middle; border-style: none } table { border-collapse: collapse } caption { padding-top: 1rem; padding-bottom: 1rem; color: #8492a6; text-align: left; caption-side: bottom } th { text-align: inherit } label { display: inline-block; margin-bottom: .5rem } button { border-radius: 0 } button:focus { outline: 1px dotted; outline: 5px auto -webkit-focus-ring-color } button, input, optgroup, select, textarea { margin: 0; font-family: inherit; font-size: inherit; line-height: inherit } button, input { overflow: visible } button, select { text-transform: none } select { word-wrap: normal } [type=button], [type=reset], [type=submit], button { -webkit-appearance: button } [type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) { cursor: pointer } [type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner { padding: 0; border-style: none } input[type=checkbox], input[type=radio] { -webkit-box-sizing: border-box; box-sizing: border-box; padding: 0 } input[type=date], input[type=datetime-local], input[type=month], input[type=time] { -webkit-appearance: listbox } textarea { overflow: auto; resize: vertical } fieldset { min-width: 0; padding: 0; margin: 0; border: 0 } legend { display: block; width: 100%; max-width: 100%; padding: 0; margin-bottom: .5rem; font-size: 1.5rem; line-height: inherit; color: inherit; white-space: normal } @media (max-width:1200px) { legend { font-size: calc(1.275rem + .3vw) } } progress { vertical-align: baseline } [type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button { height: auto } [type=search] { outline-offset: -2px; -webkit-appearance: none } [type=search]::-webkit-search-decoration { -webkit-appearance: none } ::-webkit-file-upload-button { font: inherit; -webkit-appearance: button } output { display: inline-block } summary { display: list-item; cursor: pointer } template { display: none } [hidden] { display: none !important } .h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 { margin-bottom: .5rem; font-family: inherit; font-weight: 500; line-height: 1.3; color: #3c4858 } .h1, h1 { font-size: 2.5rem } @media (max-width:1200px) { .h1, h1 { font-size: calc(1.375rem + 1.5vw) } } .h2, h2 { font-size: 2rem } @media (max-width:1200px) { .h2, h2 { font-size: calc(1.325rem + .9vw) } } .h3, h3 { font-size: 1.75rem } @media (max-width:1200px) { .h3, h3 { font-size: calc(1.3rem + .6vw) } } .h4, h4 { font-size: 1.5rem } @media (max-width:1200px) { .h4, h4 { font-size: calc(1.275rem + .3vw) } } .h5, h5 { font-size: 1.25rem } .h6, h6 { font-size: 1rem } .lead { font-size: 1.125rem; font-weight: 300 } .display-1 { font-size: 6rem; font-weight: 300; line-height: 1.3 } @media (max-width:1200px) { .display-1 { font-size: calc(1.725rem + 5.7vw) } } .display-2 { font-size: 5.5rem; font-weight: 300; line-height: 1.3 } @media (max-width:1200px) { .display-2 { font-size: calc(1.675rem + 5.1vw) } } .display-3 { font-size: 4.5rem; font-weight: 300; line-height: 1.3 } @media (max-width:1200px) { .display-3 { font-size: calc(1.575rem + 3.9vw) } } .display-4 { font-size: 3.5rem; font-weight: 300; line-height: 1.3 } @media (max-width:1200px) { .display-4 { font-size: calc(1.475rem + 2.7vw) } } hr { margin-top: 2rem; margin-bottom: 2rem; border: 0; border-top: 1px solid #eff2f7 } .small, small { font-size: 80%; font-weight: 400 } .mark, mark { padding: .2em; background-color: #fcf8e3 } .list-inline, .list-unstyled { padding-left: 0; list-style: none } .list-inline-item { display: inline-block } .list-inline-item:not(:last-child) { margin-right: .5rem } .initialism { font-size: 90%; text-transform: uppercase } .blockquote { margin-bottom: 1rem; font-size: 1.25rem } .blockquote-footer { display: block; font-size: 80%; color: #c0ccda } .blockquote-footer:before { content: "\2014\A0" } .img-fluid, .img-thumbnail { max-width: 100%; height: auto } .img-thumbnail { padding: .25rem; background-color: #fff; border: 1px solid #e5e9f2; border-radius: .25rem; -webkit-box-shadow: 0 1px 2px rgba(31, 45, 61, .075); box-shadow: 0 1px 2px rgba(31, 45, 61, .075) } .figure { display: inline-block } .figure-img { margin-bottom: .5rem; line-height: 1 } .figure-caption { font-size: 90%; color: #c0ccda } code { font-size: 87.5%; color: #f074ad; word-break: break-word } a>code { color: inherit } kbd { padding: .2rem .4rem; font-size: 87.5%; color: #fff; background-color: #273444; border-radius: .2rem; -webkit-box-shadow: inset 0 -.1rem 0 rgba(31, 45, 61, .25); box-shadow: inset 0 -.1rem 0 rgba(31, 45, 61, .25) } kbd kbd { padding: 0; font-size: 100%; font-weight: 600; -webkit-box-shadow: none; box-shadow: none } pre { display: block; font-size: 87.5%; color: #273444 } pre code { font-size: inherit; color: inherit; word-break: normal } .pre-scrollable { max-height: 340px; overflow-y: scroll } .container { width: 100%; padding-right: 15px; padding-left: 15px; margin-right: auto; margin-left: auto } @media (min-width:576px) { .container { max-width: 540px } } @media (min-width:768px) { .container { max-width: 720px } } @media (min-width:992px) { .container { max-width: 960px } } @media (min-width:1200px) { .container { max-width: 1140px } } .container-fluid { width: 100%; padding-right: 15px; padding-left: 15px; margin-right: auto; margin-left: auto } .row { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; margin-right: -15px; margin-left: -15px } .no-gutters { margin-right: 0; margin-left: 0 } .no-gutters>.col, .no-gutters>[class*=col-] { padding-right: 0; padding-left: 0 } .col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-auto, .col-lg, .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, .col-lg-auto, .col-md, .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, .col-md-auto, .col-sm, .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, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-auto { position: relative; width: 100%; padding-right: 15px; padding-left: 15px } .col { -ms-flex-preferred-size: 0; flex-basis: 0; -webkit-box-flex: 1; -ms-flex-positive: 1; flex-grow: 1; max-width: 100% } .col-auto { -ms-flex: 0 0 auto; flex: 0 0 auto; width: auto; max-width: 100% } .col-1, .col-auto { -webkit-box-flex: 0 } .col-1 { -ms-flex: 0 0 8.3333333333%; flex: 0 0 8.3333333333%; max-width: 8.3333333333% } .col-2 { -ms-flex: 0 0 16.6666666667%; flex: 0 0 16.6666666667%; max-width: 16.6666666667% } .col-2, .col-3 { -webkit-box-flex: 0 } .col-3 { -ms-flex: 0 0 25%; flex: 0 0 25%; max-width: 25% } .col-4 { -ms-flex: 0 0 33.3333333333%; flex: 0 0 33.3333333333%; max-width: 33.3333333333% } .col-4, .col-5 { -webkit-box-flex: 0 } .col-5 { -ms-flex: 0 0 41.6666666667%; flex: 0 0 41.6666666667%; max-width: 41.6666666667% } .col-6 { -ms-flex: 0 0 50%; flex: 0 0 50%; max-width: 50% } .col-6, .col-7 { -webkit-box-flex: 0 } .col-7 { -ms-flex: 0 0 58.3333333333%; flex: 0 0 58.3333333333%; max-width: 58.3333333333% } .col-8 { -ms-flex: 0 0 66.6666666667%; flex: 0 0 66.6666666667%; max-width: 66.6666666667% } .col-8, .col-9 { -webkit-box-flex: 0 } .col-9 { -ms-flex: 0 0 75%; flex: 0 0 75%; max-width: 75% } .col-10 { -ms-flex: 0 0 83.3333333333%; flex: 0 0 83.3333333333%; max-width: 83.3333333333% } .col-10, .col-11 { -webkit-box-flex: 0 } .col-11 { -ms-flex: 0 0 91.6666666667%; flex: 0 0 91.6666666667%; max-width: 91.6666666667% } .col-12 { -webkit-box-flex: 0; -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100% } .order-first { -webkit-box-ordinal-group: 0; -ms-flex-order: -1; order: -1 } .order-last { -webkit-box-ordinal-group: 14; -ms-flex-order: 13; order: 13 } .order-0 { -webkit-box-ordinal-group: 1; -ms-flex-order: 0; order: 0 } .order-1 { -webkit-box-ordinal-group: 2; -ms-flex-order: 1; order: 1 } .order-2 { -webkit-box-ordinal-group: 3; -ms-flex-order: 2; order: 2 } .order-3 { -webkit-box-ordinal-group: 4; -ms-flex-order: 3; order: 3 } .order-4 { -webkit-box-ordinal-group: 5; -ms-flex-order: 4; order: 4 } .order-5 { -webkit-box-ordinal-group: 6; -ms-flex-order: 5; order: 5 } .order-6 { -webkit-box-ordinal-group: 7; -ms-flex-order: 6; order: 6 } .order-7 { -webkit-box-ordinal-group: 8; -ms-flex-order: 7; order: 7 } .order-8 { -webkit-box-ordinal-group: 9; -ms-flex-order: 8; order: 8 } .order-9 { -webkit-box-ordinal-group: 10; -ms-flex-order: 9; order: 9 } .order-10 { -webkit-box-ordinal-group: 11; -ms-flex-order: 10; order: 10 } .order-11 { -webkit-box-ordinal-group: 12; -ms-flex-order: 11; order: 11 } .order-12 { -webkit-box-ordinal-group: 13; -ms-flex-order: 12; order: 12 } .offset-1 { margin-left: 8.3333333333% } .offset-2 { margin-left: 16.6666666667% } .offset-3 { margin-left: 25% } .offset-4 { margin-left: 33.3333333333% } .offset-5 { margin-left: 41.6666666667% } .offset-6 { margin-left: 50% } .offset-7 { margin-left: 58.3333333333% } .offset-8 { margin-left: 66.6666666667% } .offset-9 { margin-left: 75% } .offset-10 { margin-left: 83.3333333333% } .offset-11 { margin-left: 91.6666666667% } @media (min-width:576px) { .col-sm { -ms-flex-preferred-size: 0; flex-basis: 0; -webkit-box-flex: 1; -ms-flex-positive: 1; flex-grow: 1; max-width: 100% } .col-sm-auto { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: auto; max-width: 100% } .col-sm-1 { -webkit-box-flex: 0; -ms-flex: 0 0 8.3333333333%; flex: 0 0 8.3333333333%; max-width: 8.3333333333% } .col-sm-2 { -webkit-box-flex: 0; -ms-flex: 0 0 16.6666666667%; flex: 0 0 16.6666666667%; max-width: 16.6666666667% } .col-sm-3 { -webkit-box-flex: 0; -ms-flex: 0 0 25%; flex: 0 0 25%; max-width: 25% } .col-sm-4 { -webkit-box-flex: 0; -ms-flex: 0 0 33.3333333333%; flex: 0 0 33.3333333333%; max-width: 33.3333333333% } .col-sm-5 { -webkit-box-flex: 0; -ms-flex: 0 0 41.6666666667%; flex: 0 0 41.6666666667%; max-width: 41.6666666667% } .col-sm-6 { -webkit-box-flex: 0; -ms-flex: 0 0 50%; flex: 0 0 50%; max-width: 50% } .col-sm-7 { -webkit-box-flex: 0; -ms-flex: 0 0 58.3333333333%; flex: 0 0 58.3333333333%; max-width: 58.3333333333% } .col-sm-8 { -webkit-box-flex: 0; -ms-flex: 0 0 66.6666666667%; flex: 0 0 66.6666666667%; max-width: 66.6666666667% } .col-sm-9 { -webkit-box-flex: 0; -ms-flex: 0 0 75%; flex: 0 0 75%; max-width: 75% } .col-sm-10 { -webkit-box-flex: 0; -ms-flex: 0 0 83.3333333333%; flex: 0 0 83.3333333333%; max-width: 83.3333333333% } .col-sm-11 { -webkit-box-flex: 0; -ms-flex: 0 0 91.6666666667%; flex: 0 0 91.6666666667%; max-width: 91.6666666667% } .col-sm-12 { -webkit-box-flex: 0; -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100% } .order-sm-first { -webkit-box-ordinal-group: 0; -ms-flex-order: -1; order: -1 } .order-sm-last { -webkit-box-ordinal-group: 14; -ms-flex-order: 13; order: 13 } .order-sm-0 { -webkit-box-ordinal-group: 1; -ms-flex-order: 0; order: 0 } .order-sm-1 { -webkit-box-ordinal-group: 2; -ms-flex-order: 1; order: 1 } .order-sm-2 { -webkit-box-ordinal-group: 3; -ms-flex-order: 2; order: 2 } .order-sm-3 { -webkit-box-ordinal-group: 4; -ms-flex-order: 3; order: 3 } .order-sm-4 { -webkit-box-ordinal-group: 5; -ms-flex-order: 4; order: 4 } .order-sm-5 { -webkit-box-ordinal-group: 6; -ms-flex-order: 5; order: 5 } .order-sm-6 { -webkit-box-ordinal-group: 7; -ms-flex-order: 6; order: 6 } .order-sm-7 { -webkit-box-ordinal-group: 8; -ms-flex-order: 7; order: 7 } .order-sm-8 { -webkit-box-ordinal-group: 9; -ms-flex-order: 8; order: 8 } .order-sm-9 { -webkit-box-ordinal-group: 10; -ms-flex-order: 9; order: 9 } .order-sm-10 { -webkit-box-ordinal-group: 11; -ms-flex-order: 10; order: 10 } .order-sm-11 { -webkit-box-ordinal-group: 12; -ms-flex-order: 11; order: 11 } .order-sm-12 { -webkit-box-ordinal-group: 13; -ms-flex-order: 12; order: 12 } .offset-sm-0 { margin-left: 0 } .offset-sm-1 { margin-left: 8.3333333333% } .offset-sm-2 { margin-left: 16.6666666667% } .offset-sm-3 { margin-left: 25% } .offset-sm-4 { margin-left: 33.3333333333% } .offset-sm-5 { margin-left: 41.6666666667% } .offset-sm-6 { margin-left: 50% } .offset-sm-7 { margin-left: 58.3333333333% } .offset-sm-8 { margin-left: 66.6666666667% } .offset-sm-9 { margin-left: 75% } .offset-sm-10 { margin-left: 83.3333333333% } .offset-sm-11 { margin-left: 91.6666666667% } } @media (min-width:768px) { .col-md { -ms-flex-preferred-size: 0; flex-basis: 0; -webkit-box-flex: 1; -ms-flex-positive: 1; flex-grow: 1; max-width: 100% } .col-md-auto { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: auto; max-width: 100% } .col-md-1 { -webkit-box-flex: 0; -ms-flex: 0 0 8.3333333333%; flex: 0 0 8.3333333333%; max-width: 8.3333333333% } .col-md-2 { -webkit-box-flex: 0; -ms-flex: 0 0 16.6666666667%; flex: 0 0 16.6666666667%; max-width: 16.6666666667% } .col-md-3 { -webkit-box-flex: 0; -ms-flex: 0 0 25%; flex: 0 0 25%; max-width: 25% } .col-md-4 { -webkit-box-flex: 0; -ms-flex: 0 0 33.3333333333%; flex: 0 0 33.3333333333%; max-width: 33.3333333333% } .col-md-5 { -webkit-box-flex: 0; -ms-flex: 0 0 41.6666666667%; flex: 0 0 41.6666666667%; max-width: 41.6666666667% } .col-md-6 { -webkit-box-flex: 0; -ms-flex: 0 0 50%; flex: 0 0 50%; max-width: 50% } .col-md-7 { -webkit-box-flex: 0; -ms-flex: 0 0 58.3333333333%; flex: 0 0 58.3333333333%; max-width: 58.3333333333% } .col-md-8 { -webkit-box-flex: 0; -ms-flex: 0 0 66.6666666667%; flex: 0 0 66.6666666667%; max-width: 66.6666666667% } .col-md-9 { -webkit-box-flex: 0; -ms-flex: 0 0 75%; flex: 0 0 75%; max-width: 75% } .col-md-10 { -webkit-box-flex: 0; -ms-flex: 0 0 83.3333333333%; flex: 0 0 83.3333333333%; max-width: 83.3333333333% } .col-md-11 { -webkit-box-flex: 0; -ms-flex: 0 0 91.6666666667%; flex: 0 0 91.6666666667%; max-width: 91.6666666667% } .col-md-12 { -webkit-box-flex: 0; -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100% } .order-md-first { -webkit-box-ordinal-group: 0; -ms-flex-order: -1; order: -1 } .order-md-last { -webkit-box-ordinal-group: 14; -ms-flex-order: 13; order: 13 } .order-md-0 { -webkit-box-ordinal-group: 1; -ms-flex-order: 0; order: 0 } .order-md-1 { -webkit-box-ordinal-group: 2; -ms-flex-order: 1; order: 1 } .order-md-2 { -webkit-box-ordinal-group: 3; -ms-flex-order: 2; order: 2 } .order-md-3 { -webkit-box-ordinal-group: 4; -ms-flex-order: 3; order: 3 } .order-md-4 { -webkit-box-ordinal-group: 5; -ms-flex-order: 4; order: 4 } .order-md-5 { -webkit-box-ordinal-group: 6; -ms-flex-order: 5; order: 5 } .order-md-6 { -webkit-box-ordinal-group: 7; -ms-flex-order: 6; order: 6 } .order-md-7 { -webkit-box-ordinal-group: 8; -ms-flex-order: 7; order: 7 } .order-md-8 { -webkit-box-ordinal-group: 9; -ms-flex-order: 8; order: 8 } .order-md-9 { -webkit-box-ordinal-group: 10; -ms-flex-order: 9; order: 9 } .order-md-10 { -webkit-box-ordinal-group: 11; -ms-flex-order: 10; order: 10 } .order-md-11 { -webkit-box-ordinal-group: 12; -ms-flex-order: 11; order: 11 } .order-md-12 { -webkit-box-ordinal-group: 13; -ms-flex-order: 12; order: 12 } .offset-md-0 { margin-left: 0 } .offset-md-1 { margin-left: 8.3333333333% } .offset-md-2 { margin-left: 16.6666666667% } .offset-md-3 { margin-left: 25% } .offset-md-4 { margin-left: 33.3333333333% } .offset-md-5 { margin-left: 41.6666666667% } .offset-md-6 { margin-left: 50% } .offset-md-7 { margin-left: 58.3333333333% } .offset-md-8 { margin-left: 66.6666666667% } .offset-md-9 { margin-left: 75% } .offset-md-10 { margin-left: 83.3333333333% } .offset-md-11 { margin-left: 91.6666666667% } } @media (min-width:992px) { .col-lg { -ms-flex-preferred-size: 0; flex-basis: 0; -webkit-box-flex: 1; -ms-flex-positive: 1; flex-grow: 1; max-width: 100% } .col-lg-auto { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: auto; max-width: 100% } .col-lg-1 { -webkit-box-flex: 0; -ms-flex: 0 0 8.3333333333%; flex: 0 0 8.3333333333%; max-width: 8.3333333333% } .col-lg-2 { -webkit-box-flex: 0; -ms-flex: 0 0 16.6666666667%; flex: 0 0 16.6666666667%; max-width: 16.6666666667% } .col-lg-3 { -webkit-box-flex: 0; -ms-flex: 0 0 25%; flex: 0 0 25%; max-width: 25% } .col-lg-4 { -webkit-box-flex: 0; -ms-flex: 0 0 33.3333333333%; flex: 0 0 33.3333333333%; max-width: 33.3333333333% } .col-lg-5 { -webkit-box-flex: 0; -ms-flex: 0 0 41.6666666667%; flex: 0 0 41.6666666667%; max-width: 41.6666666667% } .col-lg-6 { -webkit-box-flex: 0; -ms-flex: 0 0 50%; flex: 0 0 50%; max-width: 50% } .col-lg-7 { -webkit-box-flex: 0; -ms-flex: 0 0 58.3333333333%; flex: 0 0 58.3333333333%; max-width: 58.3333333333% } .col-lg-8 { -webkit-box-flex: 0; -ms-flex: 0 0 66.6666666667%; flex: 0 0 66.6666666667%; max-width: 66.6666666667% } .col-lg-9 { -webkit-box-flex: 0; -ms-flex: 0 0 75%; flex: 0 0 75%; max-width: 75% } .col-lg-10 { -webkit-box-flex: 0; -ms-flex: 0 0 83.3333333333%; flex: 0 0 83.3333333333%; max-width: 83.3333333333% } .col-lg-11 { -webkit-box-flex: 0; -ms-flex: 0 0 91.6666666667%; flex: 0 0 91.6666666667%; max-width: 91.6666666667% } .col-lg-12 { -webkit-box-flex: 0; -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100% } .order-lg-first { -webkit-box-ordinal-group: 0; -ms-flex-order: -1; order: -1 } .order-lg-last { -webkit-box-ordinal-group: 14; -ms-flex-order: 13; order: 13 } .order-lg-0 { -webkit-box-ordinal-group: 1; -ms-flex-order: 0; order: 0 } .order-lg-1 { -webkit-box-ordinal-group: 2; -ms-flex-order: 1; order: 1 } .order-lg-2 { -webkit-box-ordinal-group: 3; -ms-flex-order: 2; order: 2 } .order-lg-3 { -webkit-box-ordinal-group: 4; -ms-flex-order: 3; order: 3 } .order-lg-4 { -webkit-box-ordinal-group: 5; -ms-flex-order: 4; order: 4 } .order-lg-5 { -webkit-box-ordinal-group: 6; -ms-flex-order: 5; order: 5 } .order-lg-6 { -webkit-box-ordinal-group: 7; -ms-flex-order: 6; order: 6 } .order-lg-7 { -webkit-box-ordinal-group: 8; -ms-flex-order: 7; order: 7 } .order-lg-8 { -webkit-box-ordinal-group: 9; -ms-flex-order: 8; order: 8 } .order-lg-9 { -webkit-box-ordinal-group: 10; -ms-flex-order: 9; order: 9 } .order-lg-10 { -webkit-box-ordinal-group: 11; -ms-flex-order: 10; order: 10 } .order-lg-11 { -webkit-box-ordinal-group: 12; -ms-flex-order: 11; order: 11 } .order-lg-12 { -webkit-box-ordinal-group: 13; -ms-flex-order: 12; order: 12 } .offset-lg-0 { margin-left: 0 } .offset-lg-1 { margin-left: 8.3333333333% } .offset-lg-2 { margin-left: 16.6666666667% } .offset-lg-3 { margin-left: 25% } .offset-lg-4 { margin-left: 33.3333333333% } .offset-lg-5 { margin-left: 41.6666666667% } .offset-lg-6 { margin-left: 50% } .offset-lg-7 { margin-left: 58.3333333333% } .offset-lg-8 { margin-left: 66.6666666667% } .offset-lg-9 { margin-left: 75% } .offset-lg-10 { margin-left: 83.3333333333% } .offset-lg-11 { margin-left: 91.6666666667% } } @media (min-width:1200px) { .col-xl { -ms-flex-preferred-size: 0; flex-basis: 0; -webkit-box-flex: 1; -ms-flex-positive: 1; flex-grow: 1; max-width: 100% } .col-xl-auto { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: auto; max-width: 100% } .col-xl-1 { -webkit-box-flex: 0; -ms-flex: 0 0 8.3333333333%; flex: 0 0 8.3333333333%; max-width: 8.3333333333% } .col-xl-2 { -webkit-box-flex: 0; -ms-flex: 0 0 16.6666666667%; flex: 0 0 16.6666666667%; max-width: 16.6666666667% } .col-xl-3 { -webkit-box-flex: 0; -ms-flex: 0 0 25%; flex: 0 0 25%; max-width: 25% } .col-xl-4 { -webkit-box-flex: 0; -ms-flex: 0 0 33.3333333333%; flex: 0 0 33.3333333333%; max-width: 33.3333333333% } .col-xl-5 { -webkit-box-flex: 0; -ms-flex: 0 0 41.6666666667%; flex: 0 0 41.6666666667%; max-width: 41.6666666667% } .col-xl-6 { -webkit-box-flex: 0; -ms-flex: 0 0 50%; flex: 0 0 50%; max-width: 50% } .col-xl-7 { -webkit-box-flex: 0; -ms-flex: 0 0 58.3333333333%; flex: 0 0 58.3333333333%; max-width: 58.3333333333% } .col-xl-8 { -webkit-box-flex: 0; -ms-flex: 0 0 66.6666666667%; flex: 0 0 66.6666666667%; max-width: 66.6666666667% } .col-xl-9 { -webkit-box-flex: 0; -ms-flex: 0 0 75%; flex: 0 0 75%; max-width: 75% } .col-xl-10 { -webkit-box-flex: 0; -ms-flex: 0 0 83.3333333333%; flex: 0 0 83.3333333333%; max-width: 83.3333333333% } .col-xl-11 { -webkit-box-flex: 0; -ms-flex: 0 0 91.6666666667%; flex: 0 0 91.6666666667%; max-width: 91.6666666667% } .col-xl-12 { -webkit-box-flex: 0; -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100% } .order-xl-first { -webkit-box-ordinal-group: 0; -ms-flex-order: -1; order: -1 } .order-xl-last { -webkit-box-ordinal-group: 14; -ms-flex-order: 13; order: 13 } .order-xl-0 { -webkit-box-ordinal-group: 1; -ms-flex-order: 0; order: 0 } .order-xl-1 { -webkit-box-ordinal-group: 2; -ms-flex-order: 1; order: 1 } .order-xl-2 { -webkit-box-ordinal-group: 3; -ms-flex-order: 2; order: 2 } .order-xl-3 { -webkit-box-ordinal-group: 4; -ms-flex-order: 3; order: 3 } .order-xl-4 { -webkit-box-ordinal-group: 5; -ms-flex-order: 4; order: 4 } .order-xl-5 { -webkit-box-ordinal-group: 6; -ms-flex-order: 5; order: 5 } .order-xl-6 { -webkit-box-ordinal-group: 7; -ms-flex-order: 6; order: 6 } .order-xl-7 { -webkit-box-ordinal-group: 8; -ms-flex-order: 7; order: 7 } .order-xl-8 { -webkit-box-ordinal-group: 9; -ms-flex-order: 8; order: 8 } .order-xl-9 { -webkit-box-ordinal-group: 10; -ms-flex-order: 9; order: 9 } .order-xl-10 { -webkit-box-ordinal-group: 11; -ms-flex-order: 10; order: 10 } .order-xl-11 { -webkit-box-ordinal-group: 12; -ms-flex-order: 11; order: 11 } .order-xl-12 { -webkit-box-ordinal-group: 13; -ms-flex-order: 12; order: 12 } .offset-xl-0 { margin-left: 0 } .offset-xl-1 { margin-left: 8.3333333333% } .offset-xl-2 { margin-left: 16.6666666667% } .offset-xl-3 { margin-left: 25% } .offset-xl-4 { margin-left: 33.3333333333% } .offset-xl-5 { margin-left: 41.6666666667% } .offset-xl-6 { margin-left: 50% } .offset-xl-7 { margin-left: 58.3333333333% } .offset-xl-8 { margin-left: 66.6666666667% } .offset-xl-9 { margin-left: 75% } .offset-xl-10 { margin-left: 83.3333333333% } .offset-xl-11 { margin-left: 91.6666666667% } } .table { width: 100%; margin-bottom: 1rem; color: #8492a6; background-color: transparent } .table td, .table th { padding: 1rem; vertical-align: top; border-top: 1px solid #eff2f7 } .table thead th { vertical-align: bottom; border-bottom: 2px solid #eff2f7 } .table tbody+tbody { border-top: 2px solid #eff2f7 } .table-sm td, .table-sm th { padding: .5rem } .table-bordered, .table-bordered td, .table-bordered th { border: 1px solid #eff2f7 } .table-bordered thead td, .table-bordered thead th { border-bottom-width: 2px } .table-borderless tbody+tbody, .table-borderless td, .table-borderless th, .table-borderless thead th { border: 0 } .table-striped tbody tr:nth-of-type(odd) { background-color: rgba(250, 251, 254, .3) } .table-hover tbody tr:hover { color: #8492a6; background-color: #fafbfe } .table-primary, .table-primary>td, .table-primary>th { background-color: #d6b8ff } .table-primary tbody+tbody, .table-primary td, .table-primary th, .table-primary thead th { border-color: #b47aff } .table-hover .table-primary:hover, .table-hover .table-primary:hover>td, .table-hover .table-primary:hover>th { background-color: #c79fff } .table-secondary, .table-secondary>td, .table-secondary>th { background-color: #fbfbfd } .table-secondary tbody+tbody, .table-secondary td, .table-secondary th, .table-secondary thead th { border-color: #f7f8fb } .table-hover .table-secondary:hover, .table-hover .table-secondary:hover>td, .table-hover .table-secondary:hover>th { background-color: #eaeaf5 } .table-success, .table-success>td, .table-success>th { background-color: #c7eadb } .table-success tbody+tbody, .table-success td, .table-success th, .table-success thead th { border-color: #96d7bc } .table-hover .table-success:hover, .table-hover .table-success:hover>td, .table-hover .table-success:hover>th { background-color: #b4e3cf } .table-info, .table-info>td, .table-info>th { background-color: #b8ebf4 } .table-info tbody+tbody, .table-info td, .table-info th, .table-info thead th { border-color: #7adaeb } .table-hover .table-info:hover, .table-hover .table-info:hover>td, .table-hover .table-info:hover>th { background-color: #a2e5f1 } .table-warning, .table-warning>td, .table-warning>th { background-color: #ffe7b8 } .table-warning tbody+tbody, .table-warning td, .table-warning th, .table-warning thead th { border-color: #ffd37a } .table-hover .table-warning:hover, .table-hover .table-warning:hover>td, .table-hover .table-warning:hover>th { background-color: #ffde9f } .table-danger, .table-danger>td, .table-danger>th { background-color: #ffd0c5 } .table-danger tbody+tbody, .table-danger td, .table-danger th, .table-danger thead th { border-color: #ffa793 } .table-hover .table-danger:hover, .table-hover .table-danger:hover>td, .table-hover .table-danger:hover>th { background-color: #ffbbac } .table-light, .table-light>td, .table-light>th { background-color: #fbfbfd } .table-light tbody+tbody, .table-light td, .table-light th, .table-light thead th { border-color: #f7f8fb } .table-hover .table-light:hover, .table-hover .table-light:hover>td, .table-hover .table-light:hover>th { background-color: #eaeaf5 } .table-dark, .table-dark>td, .table-dark>th { background-color: #c3c6cb } .table-dark tbody+tbody, .table-dark td, .table-dark th, .table-dark thead th { border-color: #8f959e } .table-hover .table-dark:hover, .table-hover .table-dark:hover>td, .table-hover .table-dark:hover>th { background-color: #b5b9bf } .table-neutral, .table-neutral>td, .table-neutral>th { background-color: #fff } .table-neutral tbody+tbody, .table-neutral td, .table-neutral th, .table-neutral thead th { border-color: #fff } .table-hover .table-neutral:hover, .table-hover .table-neutral:hover>td, .table-hover .table-neutral:hover>th { background-color: #f2f2f2 } .table-white, .table-white>td, .table-white>th { background-color: #fff } .table-white tbody+tbody, .table-white td, .table-white th, .table-white thead th { border-color: #fff } .table-hover .table-white:hover, .table-hover .table-white:hover>td, .table-hover .table-white:hover>th { background-color: #f2f2f2 } .table-active, .table-active>td, .table-active>th { background-color: #fafbfe } .table-hover .table-active:hover, .table-hover .table-active:hover>td, .table-hover .table-active:hover>th { background-color: #e5eafa } .table .thead-dark th { color: #fff; background-color: #273444; border-color: #34455b } .table .thead-light th { border-color: #eff2f7 } .table-dark { color: #fff; background-color: #273444 } .table-dark td, .table-dark th, .table-dark thead th { border-color: #34455b } .table-dark.table-bordered { border: 0 } .table-dark.table-striped tbody tr:nth-of-type(odd) { background-color: hsla(0, 0%, 100%, .05) } .table-dark.table-hover tbody tr:hover { color: #fff; background-color: hsla(0, 0%, 100%, .075) } @media (max-width:575.98px) { .table-responsive-sm { display: block; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch } .table-responsive-sm>.table-bordered { border: 0 } } @media (max-width:767.98px) { .table-responsive-md { display: block; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch } .table-responsive-md>.table-bordered { border: 0 } } @media (max-width:991.98px) { .table-responsive-lg { display: block; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch } .table-responsive-lg>.table-bordered { border: 0 } } @media (max-width:1199.98px) { .table-responsive-xl { display: block; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch } .table-responsive-xl>.table-bordered { border: 0 } } .table-responsive { display: block; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch } .table-responsive>.table-bordered { border: 0 } .form-control { display: block; width: 100%; height: calc(1.5em + 1.5rem + 2px); padding: .75rem 1.25rem; font-size: 1rem; font-weight: 400; line-height: 1.5; color: #8492a6; background-color: #fff; background-clip: padding-box; border: 1px solid #e0e6ed; border-radius: .25rem; -webkit-box-shadow: inset 0 1px 1px rgba(31, 45, 61, .075); box-shadow: inset 0 1px 1px rgba(31, 45, 61, .075); -webkit-transition: all .2s ease; -o-transition: all .2s ease; transition: all .2s ease } @media (prefers-reduced-motion:reduce) { .form-control { -webkit-transition: none; -o-transition: none; transition: none } } .form-control::-ms-expand { background-color: transparent; border: 0 } .form-control:focus { color: #8492a6; background-color: #fff; border-color: rgba(110, 0, 255, .5); outline: 0; -webkit-box-shadow: inset 0 1px 1px rgba(31, 45, 61, .075), 0 0 20px rgba(110, 0, 255, .1); box-shadow: inset 0 1px 1px rgba(31, 45, 61, .075), 0 0 20px rgba(110, 0, 255, .1) } .form-control::-webkit-input-placeholder { color: #c0ccda; opacity: 1 } .form-control:-ms-input-placeholder { color: #c0ccda; opacity: 1 } .form-control::-ms-input-placeholder { color: #c0ccda; opacity: 1 } .form-control::placeholder { color: #c0ccda; opacity: 1 } .form-control:disabled, .form-control[readonly] { background-color: #eff2f7; opacity: 1 } select.form-control:focus::-ms-value { color: #8492a6; background-color: #fff } .form-control-file, .form-control-range { display: block; width: 100% } .col-form-label { padding-top: calc(.75rem + 1px); padding-bottom: calc(.75rem + 1px); margin-bottom: 0; font-size: inherit; line-height: 1.5 } .col-form-label-lg { padding-top: calc(1rem + 1px); padding-bottom: calc(1rem + 1px); font-size: 1.25rem; line-height: 1.5 } .col-form-label-sm { padding-top: calc(.5rem + 1px); padding-bottom: calc(.5rem + 1px); font-size: .875rem; line-height: 1.5 } .form-control-plaintext { display: block; width: 100%; padding-top: .75rem; padding-bottom: .75rem; margin-bottom: 0; line-height: 1.5; color: #8492a6; background-color: transparent; border: solid transparent; border-width: 1px 0 } .form-control-plaintext.form-control-lg, .form-control-plaintext.form-control-sm { padding-right: 0; padding-left: 0 } .form-control-sm { height: calc(1.5em + 1rem + 2px); padding: .5rem 1.25rem; font-size: .875rem; line-height: 1.5; border-radius: .2rem } .form-control-lg { height: calc(1.5em + 2rem + 2px); padding: 1rem 1.875rem; font-size: 1.25rem; line-height: 1.5; border-radius: .375rem } select.form-control[multiple], select.form-control[size], textarea.form-control { height: auto } .form-group { margin-bottom: 1rem } .form-text { display: block; margin-top: .25rem } .form-row { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; margin-right: -5px; margin-left: -5px } .form-row>.col, .form-row>[class*=col-] { padding-right: 5px; padding-left: 5px } .form-check { position: relative; display: block; padding-left: 1.25rem } .form-check-input { position: absolute; margin-top: .3rem; margin-left: -1.25rem } .form-check-input:disabled~.form-check-label { color: #8492a6 } .form-check-label { margin-bottom: 0 } .form-check-inline { display: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; padding-left: 0; margin-right: .75rem } .form-check-inline .form-check-input { position: static; margin-top: 0; margin-right: .3125rem; margin-left: 0 } .valid-feedback { display: none; width: 100%; margin-top: .25rem; font-size: 80%; color: #36b37e } .valid-tooltip { position: absolute; top: 100%; z-index: 5; display: none; max-width: 100%; padding: .25rem .5rem; margin-top: .1rem; font-size: .875rem; line-height: 1.7; color: #fff; background-color: rgba(54, 179, 126, .9); border-radius: .25rem } .form-control.is-valid, .was-validated .form-control:valid { border-color: #36b37e; padding-right: calc(1.5em + 1.5rem); background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%2336B37E' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: 100% calc(.375em + .375rem); background-size: calc(.75em + .75rem) calc(.75em + .75rem) } .form-control.is-valid:focus, .was-validated .form-control:valid:focus { border-color: #36b37e; -webkit-box-shadow: 0 0 0 0 rgba(54, 179, 126, .25); box-shadow: 0 0 0 0 rgba(54, 179, 126, .25) } .form-control.is-valid~.valid-feedback, .form-control.is-valid~.valid-tooltip, .was-validated .form-control:valid~.valid-feedback, .was-validated .form-control:valid~.valid-tooltip { display: block } .was-validated textarea.form-control:valid, textarea.form-control.is-valid { padding-right: calc(1.5em + 1.5rem); background-position: top calc(.375em + .375rem) right calc(.375em + .375rem) } .custom-select.is-valid, .was-validated .custom-select:valid { border-color: #36b37e; padding-right: calc((3em + 4.5rem)/4 + 2.25rem); background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%233C4858' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 1.25rem center/8px 10px, url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%2336B37E' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E") #fff no-repeat center right 2.25rem/calc(.75em + .75rem) calc(.75em + .75rem) } .custom-select.is-valid:focus, .was-validated .custom-select:valid:focus { border-color: #36b37e; -webkit-box-shadow: 0 0 0 0 rgba(54, 179, 126, .25); box-shadow: 0 0 0 0 rgba(54, 179, 126, .25) } .custom-select.is-valid~.valid-feedback, .custom-select.is-valid~.valid-tooltip, .form-control-file.is-valid~.valid-feedback, .form-control-file.is-valid~.valid-tooltip, .was-validated .custom-select:valid~.valid-feedback, .was-validated .custom-select:valid~.valid-tooltip, .was-validated .form-control-file:valid~.valid-feedback, .was-validated .form-control-file:valid~.valid-tooltip { display: block } .form-check-input.is-valid~.form-check-label, .was-validated .form-check-input:valid~.form-check-label { color: #36b37e } .form-check-input.is-valid~.valid-feedback, .form-check-input.is-valid~.valid-tooltip, .was-validated .form-check-input:valid~.valid-feedback, .was-validated .form-check-input:valid~.valid-tooltip { display: block } .custom-control-input.is-valid~.custom-control-label, .was-validated .custom-control-input:valid~.custom-control-label { color: #36b37e } .custom-control-input.is-valid~.custom-control-label:before, .was-validated .custom-control-input:valid~.custom-control-label:before { border-color: #36b37e } .custom-control-input.is-valid~.valid-feedback, .custom-control-input.is-valid~.valid-tooltip, .was-validated .custom-control-input:valid~.valid-feedback, .was-validated .custom-control-input:valid~.valid-tooltip { display: block } .custom-control-input.is-valid:checked~.custom-control-label:before, .was-validated .custom-control-input:valid:checked~.custom-control-label:before { border-color: #51cb97; background-color: #51cb97 } .custom-control-input.is-valid:focus~.custom-control-label:before, .was-validated .custom-control-input:valid:focus~.custom-control-label:before { -webkit-box-shadow: 0 0 0 0 rgba(54, 179, 126, .25); box-shadow: 0 0 0 0 rgba(54, 179, 126, .25) } .custom-control-input.is-valid:focus:not(:checked)~.custom-control-label:before, .custom-file-input.is-valid~.custom-file-label, .was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label:before, .was-validated .custom-file-input:valid~.custom-file-label { border-color: #36b37e } .custom-file-input.is-valid~.valid-feedback, .custom-file-input.is-valid~.valid-tooltip, .was-validated .custom-file-input:valid~.valid-feedback, .was-validated .custom-file-input:valid~.valid-tooltip { display: block } .custom-file-input.is-valid:focus~.custom-file-label, .was-validated .custom-file-input:valid:focus~.custom-file-label { border-color: #36b37e; -webkit-box-shadow: 0 0 0 0 rgba(54, 179, 126, .25); box-shadow: 0 0 0 0 rgba(54, 179, 126, .25) } .invalid-feedback { display: none; width: 100%; margin-top: .25rem; font-size: 80%; color: #ff5630 } .invalid-tooltip { position: absolute; top: 100%; z-index: 5; display: none; max-width: 100%; padding: .25rem .5rem; margin-top: .1rem; font-size: .875rem; line-height: 1.7; color: #fff; background-color: rgba(255, 86, 48, .9); border-radius: .25rem } .form-control.is-invalid, .was-validated .form-control:invalid { border-color: #ff5630; padding-right: calc(1.5em + 1.5rem); background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23FF5630' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23FF5630' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: 100% calc(.375em + .375rem); background-size: calc(.75em + .75rem) calc(.75em + .75rem) } .form-control.is-invalid:focus, .was-validated .form-control:invalid:focus { border-color: #ff5630; -webkit-box-shadow: 0 0 0 0 rgba(255, 86, 48, .25); box-shadow: 0 0 0 0 rgba(255, 86, 48, .25) } .form-control.is-invalid~.invalid-feedback, .form-control.is-invalid~.invalid-tooltip, .was-validated .form-control:invalid~.invalid-feedback, .was-validated .form-control:invalid~.invalid-tooltip { display: block } .was-validated textarea.form-control:invalid, textarea.form-control.is-invalid { padding-right: calc(1.5em + 1.5rem); background-position: top calc(.375em + .375rem) right calc(.375em + .375rem) } .custom-select.is-invalid, .was-validated .custom-select:invalid { border-color: #ff5630; padding-right: calc((3em + 4.5rem)/4 + 2.25rem); background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%233C4858' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 1.25rem center/8px 10px, url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23FF5630' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23FF5630' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E") #fff no-repeat center right 2.25rem/calc(.75em + .75rem) calc(.75em + .75rem) } .custom-select.is-invalid:focus, .was-validated .custom-select:invalid:focus { border-color: #ff5630; -webkit-box-shadow: 0 0 0 0 rgba(255, 86, 48, .25); box-shadow: 0 0 0 0 rgba(255, 86, 48, .25) } .custom-select.is-invalid~.invalid-feedback, .custom-select.is-invalid~.invalid-tooltip, .form-control-file.is-invalid~.invalid-feedback, .form-control-file.is-invalid~.invalid-tooltip, .was-validated .custom-select:invalid~.invalid-feedback, .was-validated .custom-select:invalid~.invalid-tooltip, .was-validated .form-control-file:invalid~.invalid-feedback, .was-validated .form-control-file:invalid~.invalid-tooltip { display: block } .form-check-input.is-invalid~.form-check-label, .was-validated .form-check-input:invalid~.form-check-label { color: #ff5630 } .form-check-input.is-invalid~.invalid-feedback, .form-check-input.is-invalid~.invalid-tooltip, .was-validated .form-check-input:invalid~.invalid-feedback, .was-validated .form-check-input:invalid~.invalid-tooltip { display: block } .custom-control-input.is-invalid~.custom-control-label, .was-validated .custom-control-input:invalid~.custom-control-label { color: #ff5630 } .custom-control-input.is-invalid~.custom-control-label:before, .was-validated .custom-control-input:invalid~.custom-control-label:before { border-color: #ff5630 } .custom-control-input.is-invalid~.invalid-feedback, .custom-control-input.is-invalid~.invalid-tooltip, .was-validated .custom-control-input:invalid~.invalid-feedback, .was-validated .custom-control-input:invalid~.invalid-tooltip { display: block } .custom-control-input.is-invalid:checked~.custom-control-label:before, .was-validated .custom-control-input:invalid:checked~.custom-control-label:before { border-color: #ff8063; background-color: #ff8063 } .custom-control-input.is-invalid:focus~.custom-control-label:before, .was-validated .custom-control-input:invalid:focus~.custom-control-label:before { -webkit-box-shadow: 0 0 0 0 rgba(255, 86, 48, .25); box-shadow: 0 0 0 0 rgba(255, 86, 48, .25) } .custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label:before, .custom-file-input.is-invalid~.custom-file-label, .was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label:before, .was-validated .custom-file-input:invalid~.custom-file-label { border-color: #ff5630 } .custom-file-input.is-invalid~.invalid-feedback, .custom-file-input.is-invalid~.invalid-tooltip, .was-validated .custom-file-input:invalid~.invalid-feedback, .was-validated .custom-file-input:invalid~.invalid-tooltip { display: block } .custom-file-input.is-invalid:focus~.custom-file-label, .was-validated .custom-file-input:invalid:focus~.custom-file-label { border-color: #ff5630; -webkit-box-shadow: 0 0 0 0 rgba(255, 86, 48, .25); box-shadow: 0 0 0 0 rgba(255, 86, 48, .25) } .form-inline { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-flow: row wrap; flex-flow: row wrap; -webkit-box-align: center; -ms-flex-align: center; align-items: center } .form-inline .form-check { width: 100% } @media (min-width:576px) { .form-inline label { -ms-flex-align: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center } .form-inline .form-group, .form-inline label { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; align-items: center; margin-bottom: 0 } .form-inline .form-group { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-flow: row wrap; flex-flow: row wrap; -ms-flex-align: center } .form-inline .form-control { display: inline-block; width: auto; vertical-align: middle } .form-inline .form-control-plaintext { display: inline-block } .form-inline .custom-select, .form-inline .input-group { width: auto } .form-inline .form-check { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; width: auto; padding-left: 0 } .form-inline .form-check-input { position: relative; -ms-flex-negative: 0; flex-shrink: 0; margin-top: 0; margin-right: .25rem; margin-left: 0 } .form-inline .custom-control { -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center } .form-inline .custom-control-label { margin-bottom: 0 } } .btn { display: inline-block; font-weight: 600; color: #8492a6; text-align: center; vertical-align: middle; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; background-color: transparent; border: 1px solid transparent; padding: .75rem 1.75rem; font-size: 1rem; line-height: 1.5; border-radius: .25rem; -webkit-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out; transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out; -o-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out; transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out; transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out } .btn:hover { color: #8492a6; text-decoration: none } .btn.focus, .btn:focus { outline: 0; -webkit-box-shadow: 0 0 0 rgba(99, 0, 230, .25); box-shadow: 0 0 0 rgba(99, 0, 230, .25) } .btn.disabled, .btn:disabled { opacity: .65; -webkit-box-shadow: none; box-shadow: none } .btn:not(:disabled):not(.disabled).active, .btn:not(:disabled):not(.disabled):active { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15) } .btn:not(:disabled):not(.disabled).active:focus, .btn:not(:disabled):not(.disabled):active:focus { -webkit-box-shadow: 0 0 0 rgba(99, 0, 230, .25), inset 0 1px 0 hsla(0, 0%, 100%, .15); box-shadow: 0 0 0 rgba(99, 0, 230, .25), inset 0 1px 0 hsla(0, 0%, 100%, .15) } a.btn.disabled, fieldset:disabled a.btn { pointer-events: none } .btn-primary { color: #ffffff; background-color: #6fd943; border-color: #6fd943; /* box-shadow: inset 0 1px 0 rgb(255 255 255 / 15%); */ } .btn-primary:hover { color: #FFF; background-color: #030f27; border-color: #020a1b; } .btn-primary:focus, .btn-primary.focus { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 0 0 rgba(5, 28, 75, 0.35); } .btn-primary.disabled, .btn-primary:disabled { color: #FFF; background-color: #051C4B; border-color: #051C4B; } .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle { color: #FFF; background-color: #020a1b; border-color: #01060f; } .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 0 0 rgba(5, 28, 75, 0.35); } .btn-secondary { color: #273444; background-color: #eff2f7; border-color: #eff2f7; -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15) } .btn-secondary:hover { color: #273444; background-color: #d6ddea; border-color: #cdd6e6 } .btn-secondary.focus, .btn-secondary:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(239, 242, 247, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(239, 242, 247, .35) } .btn-secondary.disabled, .btn-secondary:disabled { color: #273444; background-color: #eff2f7; border-color: #eff2f7 } .btn-secondary:not(:disabled):not(.disabled).active, .btn-secondary:not(:disabled):not(.disabled):active, .show>.btn-secondary.dropdown-toggle { color: #273444; background-color: #cdd6e6; border-color: #c5cfe2 } .btn-secondary:not(:disabled):not(.disabled).active:focus, .btn-secondary:not(:disabled):not(.disabled):active:focus, .show>.btn-secondary.dropdown-toggle:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(239, 242, 247, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(239, 242, 247, .35) } .btn-success { color: #fff; background-color: #36b37e; border-color: #36b37e; -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15) } .btn-success:hover { color: #fff; background-color: #2d9669; border-color: #2a8c62 } .btn-success.focus, .btn-success:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(54, 179, 126, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(54, 179, 126, .35) } .btn-success.disabled, .btn-success:disabled { color: #fff; background-color: #36b37e; border-color: #36b37e } .btn-success:not(:disabled):not(.disabled).active, .btn-success:not(:disabled):not(.disabled):active, .show>.btn-success.dropdown-toggle { color: #fff; background-color: #2a8c62; border-color: #27825c } .btn-success:not(:disabled):not(.disabled).active:focus, .btn-success:not(:disabled):not(.disabled):active:focus, .show>.btn-success.dropdown-toggle:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(54, 179, 126, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(54, 179, 126, .35) } .btn-info { color: #fff; background-color: #00b8d9; border-color: #00b8d9; -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15) } .btn-info:hover { color: #fff; background-color: #0098b3; border-color: #008da6 } .btn-info.focus, .btn-info:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(0, 184, 217, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(0, 184, 217, .35) } .btn-info.disabled, .btn-info:disabled { color: #fff; background-color: #00b8d9; border-color: #00b8d9 } .btn-info:not(:disabled):not(.disabled).active, .btn-info:not(:disabled):not(.disabled):active, .show>.btn-info.dropdown-toggle { color: #fff; background-color: #008da6; border-color: #008299 } .btn-info:not(:disabled):not(.disabled).active:focus, .btn-info:not(:disabled):not(.disabled):active:focus, .show>.btn-info.dropdown-toggle:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(0, 184, 217, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(0, 184, 217, .35) } .btn-warning { color: #fff; background-color: #ffab00; border-color: #ffab00; -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15) } .btn-warning:hover { color: #fff; background-color: #d99100; border-color: #cc8900 } .btn-warning.focus, .btn-warning:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(255, 171, 0, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(255, 171, 0, .35) } .btn-warning.disabled, .btn-warning:disabled { color: #fff; background-color: #ffab00; border-color: #ffab00 } .btn-warning:not(:disabled):not(.disabled).active, .btn-warning:not(:disabled):not(.disabled):active, .show>.btn-warning.dropdown-toggle { color: #fff; background-color: #cc8900; border-color: #bf8000 } .btn-warning:not(:disabled):not(.disabled).active:focus, .btn-warning:not(:disabled):not(.disabled):active:focus, .show>.btn-warning.dropdown-toggle:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(255, 171, 0, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(255, 171, 0, .35) } .btn-danger { color: #fff; background-color: #ff5630; border-color: #ff5630; -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15) } .btn-danger:hover { color: #fff; background-color: #ff370a; border-color: #fc2e00 } .btn-danger.focus, .btn-danger:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(255, 86, 48, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(255, 86, 48, .35) } .btn-danger.disabled, .btn-danger:disabled { color: #fff; background-color: #ff5630; border-color: #ff5630 } .btn-danger:not(:disabled):not(.disabled).active, .btn-danger:not(:disabled):not(.disabled):active, .show>.btn-danger.dropdown-toggle { color: #fff; background-color: #fc2e00; border-color: #ef2c00 } .btn-danger:not(:disabled):not(.disabled).active:focus, .btn-danger:not(:disabled):not(.disabled):active:focus, .show>.btn-danger.dropdown-toggle:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(255, 86, 48, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(255, 86, 48, .35) } .btn-light { color: #273444; background-color: #eff2f7; border-color: #eff2f7; -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15) } .btn-light:hover { color: #273444; background-color: #d6ddea; border-color: #cdd6e6 } .btn-light.focus, .btn-light:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(239, 242, 247, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(239, 242, 247, .35) } .btn-light.disabled, .btn-light:disabled { color: #273444; background-color: #eff2f7; border-color: #eff2f7 } .btn-light:not(:disabled):not(.disabled).active, .btn-light:not(:disabled):not(.disabled):active, .show>.btn-light.dropdown-toggle { color: #273444; background-color: #cdd6e6; border-color: #c5cfe2 } .btn-light:not(:disabled):not(.disabled).active:focus, .btn-light:not(:disabled):not(.disabled):active:focus, .show>.btn-light.dropdown-toggle:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(239, 242, 247, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(239, 242, 247, .35) } .btn-dark { color: #fff; background-color: #273444; border-color: #273444; -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15) } .btn-dark:hover { color: #fff; background-color: #19212c; border-color: #141b24 } .btn-dark.focus, .btn-dark:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(39, 52, 68, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(39, 52, 68, .35) } .btn-dark.disabled, .btn-dark:disabled { color: #fff; background-color: #273444; border-color: #273444 } .btn-dark:not(:disabled):not(.disabled).active, .btn-dark:not(:disabled):not(.disabled):active, .show>.btn-dark.dropdown-toggle { color: #fff; background-color: #141b24; border-color: #10151b } .btn-dark:not(:disabled):not(.disabled).active:focus, .btn-dark:not(:disabled):not(.disabled):active:focus, .show>.btn-dark.dropdown-toggle:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(39, 52, 68, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(39, 52, 68, .35) } .btn-neutral { border-color: #fff; -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15) } .btn-neutral:hover { color: #273444; background-color: #ececec; border-color: #e6e6e6 } .btn-neutral.focus, .btn-neutral:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 hsla(0, 0%, 100%, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 hsla(0, 0%, 100%, .35) } .btn-neutral.disabled, .btn-neutral:disabled { color: #273444; background-color: #fff; border-color: #fff } .btn-neutral:not(:disabled):not(.disabled).active, .btn-neutral:not(:disabled):not(.disabled):active, .show>.btn-neutral.dropdown-toggle { color: #273444; background-color: #e6e6e6; border-color: #dfdfdf } .btn-neutral:not(:disabled):not(.disabled).active:focus, .btn-neutral:not(:disabled):not(.disabled):active:focus, .show>.btn-neutral.dropdown-toggle:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 hsla(0, 0%, 100%, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 hsla(0, 0%, 100%, .35) } .btn-white { color: #273444; background-color: #fff; border-color: #fff; -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15) } .btn-white:hover { color: #273444; background-color: #ececec; border-color: #e6e6e6 } .btn-white.focus, .btn-white:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 hsla(0, 0%, 100%, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 hsla(0, 0%, 100%, .35) } .btn-white.disabled, .btn-white:disabled { color: #273444; background-color: #fff; border-color: #fff } .btn-white:not(:disabled):not(.disabled).active, .btn-white:not(:disabled):not(.disabled):active, .show>.btn-white.dropdown-toggle { color: #273444; background-color: #e6e6e6; border-color: #dfdfdf } .btn-white:not(:disabled):not(.disabled).active:focus, .btn-white:not(:disabled):not(.disabled):active:focus, .show>.btn-white.dropdown-toggle:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 hsla(0, 0%, 100%, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 hsla(0, 0%, 100%, .35) } .btn-outline-primary { color: #6e00ff; border-color: #6e00ff } .btn-outline-primary:hover { color: #fff; background-color: #6e00ff; border-color: #6e00ff } .btn-outline-primary.focus, .btn-outline-primary:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(110, 0, 255, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(110, 0, 255, .35) } .btn-outline-primary.disabled, .btn-outline-primary:disabled { color: #6e00ff; background-color: transparent } .btn-outline-primary:not(:disabled):not(.disabled).active, .btn-outline-primary:not(:disabled):not(.disabled):active, .show>.btn-outline-primary.dropdown-toggle { color: #fff; background-color: #6e00ff; border-color: #6e00ff } .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .show>.btn-outline-primary.dropdown-toggle:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(110, 0, 255, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(110, 0, 255, .35) } .btn-outline-secondary { color: #eff2f7; border-color: #eff2f7 } .btn-outline-secondary:hover { color: #273444; background-color: #eff2f7; border-color: #eff2f7 } .btn-outline-secondary.focus, .btn-outline-secondary:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(239, 242, 247, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(239, 242, 247, .35) } .btn-outline-secondary.disabled, .btn-outline-secondary:disabled { color: #eff2f7; background-color: transparent } .btn-outline-secondary:not(:disabled):not(.disabled).active, .btn-outline-secondary:not(:disabled):not(.disabled):active, .show>.btn-outline-secondary.dropdown-toggle { color: #273444; background-color: #eff2f7; border-color: #eff2f7 } .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .show>.btn-outline-secondary.dropdown-toggle:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(239, 242, 247, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(239, 242, 247, .35) } .btn-outline-success { color: #36b37e; border-color: #36b37e } .btn-outline-success:hover { color: #fff; background-color: #36b37e; border-color: #36b37e } .btn-outline-success.focus, .btn-outline-success:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(54, 179, 126, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(54, 179, 126, .35) } .btn-outline-success.disabled, .btn-outline-success:disabled { color: #36b37e; background-color: transparent } .btn-outline-success:not(:disabled):not(.disabled).active, .btn-outline-success:not(:disabled):not(.disabled):active, .show>.btn-outline-success.dropdown-toggle { color: #fff; background-color: #36b37e; border-color: #36b37e } .btn-outline-success:not(:disabled):not(.disabled).active:focus, .btn-outline-success:not(:disabled):not(.disabled):active:focus, .show>.btn-outline-success.dropdown-toggle:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(54, 179, 126, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(54, 179, 126, .35) } .btn-outline-info { color: #00b8d9; border-color: #00b8d9 } .btn-outline-info:hover { color: #fff; background-color: #00b8d9; border-color: #00b8d9 } .btn-outline-info.focus, .btn-outline-info:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(0, 184, 217, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(0, 184, 217, .35) } .btn-outline-info.disabled, .btn-outline-info:disabled { color: #00b8d9; background-color: transparent } .btn-outline-info:not(:disabled):not(.disabled).active, .btn-outline-info:not(:disabled):not(.disabled):active, .show>.btn-outline-info.dropdown-toggle { color: #fff; background-color: #00b8d9; border-color: #00b8d9 } .btn-outline-info:not(:disabled):not(.disabled).active:focus, .btn-outline-info:not(:disabled):not(.disabled):active:focus, .show>.btn-outline-info.dropdown-toggle:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(0, 184, 217, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(0, 184, 217, .35) } .btn-outline-warning { color: #ffab00; border-color: #ffab00 } .btn-outline-warning:hover { color: #fff; background-color: #ffab00; border-color: #ffab00 } .btn-outline-warning.focus, .btn-outline-warning:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(255, 171, 0, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(255, 171, 0, .35) } .btn-outline-warning.disabled, .btn-outline-warning:disabled { color: #ffab00; background-color: transparent } .btn-outline-warning:not(:disabled):not(.disabled).active, .btn-outline-warning:not(:disabled):not(.disabled):active, .show>.btn-outline-warning.dropdown-toggle { color: #fff; background-color: #ffab00; border-color: #ffab00 } .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .btn-outline-warning:not(:disabled):not(.disabled):active:focus, .show>.btn-outline-warning.dropdown-toggle:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(255, 171, 0, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(255, 171, 0, .35) } .btn-outline-danger { color: #ff5630; border-color: #ff5630 } .btn-outline-danger:hover { color: #fff; background-color: #ff5630; border-color: #ff5630 } .btn-outline-danger.focus, .btn-outline-danger:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(255, 86, 48, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(255, 86, 48, .35) } .btn-outline-danger.disabled, .btn-outline-danger:disabled { color: #ff5630; background-color: transparent } .btn-outline-danger:not(:disabled):not(.disabled).active, .btn-outline-danger:not(:disabled):not(.disabled):active, .show>.btn-outline-danger.dropdown-toggle { color: #fff; background-color: #ff5630; border-color: #ff5630 } .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .show>.btn-outline-danger.dropdown-toggle:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(255, 86, 48, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(255, 86, 48, .35) } .btn-outline-light { color: #eff2f7; border-color: #eff2f7 } .btn-outline-light:hover { color: #273444; background-color: #eff2f7; border-color: #eff2f7 } .btn-outline-light.focus, .btn-outline-light:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(239, 242, 247, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(239, 242, 247, .35) } .btn-outline-light.disabled, .btn-outline-light:disabled { color: #eff2f7; background-color: transparent } .btn-outline-light:not(:disabled):not(.disabled).active, .btn-outline-light:not(:disabled):not(.disabled):active, .show>.btn-outline-light.dropdown-toggle { color: #273444; background-color: #eff2f7; border-color: #eff2f7 } .btn-outline-light:not(:disabled):not(.disabled).active:focus, .btn-outline-light:not(:disabled):not(.disabled):active:focus, .show>.btn-outline-light.dropdown-toggle:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(239, 242, 247, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(239, 242, 247, .35) } .btn-outline-dark { color: #273444; border-color: #273444 } .btn-outline-dark:hover { color: #fff; background-color: #273444; border-color: #273444 } .btn-outline-dark.focus, .btn-outline-dark:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(39, 52, 68, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(39, 52, 68, .35) } .btn-outline-dark.disabled, .btn-outline-dark:disabled { color: #273444; background-color: transparent } .btn-outline-dark:not(:disabled):not(.disabled).active, .btn-outline-dark:not(:disabled):not(.disabled):active, .show>.btn-outline-dark.dropdown-toggle { color: #fff; background-color: #273444; border-color: #273444 } .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .show>.btn-outline-dark.dropdown-toggle:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(39, 52, 68, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(39, 52, 68, .35) } .btn-outline-neutral { color: #fff; border-color: #fff } .btn-outline-neutral:hover { color: #273444; background-color: #fff; border-color: #fff } .btn-outline-neutral.focus, .btn-outline-neutral:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 hsla(0, 0%, 100%, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 hsla(0, 0%, 100%, .35) } .btn-outline-neutral.disabled, .btn-outline-neutral:disabled { color: #fff; background-color: transparent } .btn-outline-neutral:not(:disabled):not(.disabled).active, .btn-outline-neutral:not(:disabled):not(.disabled):active, .show>.btn-outline-neutral.dropdown-toggle { color: #273444; background-color: #fff; border-color: #fff } .btn-outline-neutral:not(:disabled):not(.disabled).active:focus, .btn-outline-neutral:not(:disabled):not(.disabled):active:focus, .show>.btn-outline-neutral.dropdown-toggle:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 hsla(0, 0%, 100%, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 hsla(0, 0%, 100%, .35) } .btn-outline-white { color: #fff; border-color: #fff } .btn-outline-white:hover { color: #273444; background-color: #fff; border-color: #fff } .btn-outline-white.focus, .btn-outline-white:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 hsla(0, 0%, 100%, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 hsla(0, 0%, 100%, .35) } .btn-outline-white.disabled, .btn-outline-white:disabled { color: #fff; background-color: transparent } .btn-outline-white:not(:disabled):not(.disabled).active, .btn-outline-white:not(:disabled):not(.disabled):active, .show>.btn-outline-white.dropdown-toggle { color: #273444; background-color: #fff; border-color: #fff } .btn-outline-white:not(:disabled):not(.disabled).active:focus, .btn-outline-white:not(:disabled):not(.disabled):active:focus, .show>.btn-outline-white.dropdown-toggle:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 hsla(0, 0%, 100%, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 hsla(0, 0%, 100%, .35) } .btn-link { font-weight: 400; color: #6e00ff; text-decoration: none } .btn-link:hover { color: #4d00b3; text-decoration: none } .btn-link.focus, .btn-link:focus { text-decoration: none; -webkit-box-shadow: none; box-shadow: none } .btn-link.disabled, .btn-link:disabled { color: #c0ccda; pointer-events: none } .btn-group-lg>.btn, .btn-lg { padding: 1rem 1.875rem; font-size: 1.25rem; line-height: 1.5; border-radius: .375rem } .btn-group-sm>.btn, .btn-sm { padding: .5rem 1.25rem; font-size: .875rem; line-height: 1.5; border-radius: .25rem } .btn-block { display: block; width: 100% } .btn-block+.btn-block { margin-top: .5rem } input[type=button].btn-block, input[type=reset].btn-block, input[type=submit].btn-block { width: 100% } .fade { -webkit-transition: opacity .2s linear; -o-transition: opacity .2s linear; transition: opacity .2s linear } @media (prefers-reduced-motion:reduce) { .fade { -webkit-transition: none; -o-transition: none; transition: none } } .fade:not(.show) { opacity: 0 } .collapse:not(.show) { display: none } .collapsing { position: relative; height: 0; overflow: hidden; -webkit-transition: height .4s ease; -o-transition: height .4s ease; transition: height .4s ease } @media (prefers-reduced-motion:reduce) { .collapsing { -webkit-transition: none; -o-transition: none; transition: none } } .dropdown, .dropleft, .dropright, .dropup { position: relative } .dropdown-toggle { white-space: nowrap } .dropdown-toggle:after { margin-left: 10.2px; display: inline-block; font-style: normal; font-variant: normal; text-rendering: auto; -webkit-font-smoothing: antialiased; font-family: Font Awesome\ 5 Pro, Font Awesome\ 5 Free; font-weight: 700; content: "\F107" } .dropdown-toggle:empty:after { margin-left: 0 } .dropdown-menu { position: absolute; top: 100%; left: 0; z-index: 1000; display: none; float: left; min-width: 12rem; padding: .35rem 0; margin: .125rem 0 0; color: #8492a6; text-align: left; list-style: none; background-color: #fff; background-clip: padding-box; border: 1px solid rgba(31, 45, 61, .1); border-radius: .25rem; -webkit-box-shadow: none; box-shadow: none } .dropdown-menu-left { right: auto; left: 0 } .dropdown-menu-right { right: 0; left: auto } @media (min-width:576px) { .dropdown-menu-sm-left { right: auto; left: 0 } .dropdown-menu-sm-right { right: 0; left: auto } } @media (min-width:768px) { .dropdown-menu-md-left { right: auto; left: 0 } .dropdown-menu-md-right { right: 0; left: auto } } @media (min-width:992px) { .dropdown-menu-lg-left { right: auto; left: 0 } .dropdown-menu-lg-right { right: 0; left: auto } } @media (min-width:1200px) { .dropdown-menu-xl-left { right: auto; left: 0 } .dropdown-menu-xl-right { right: 0; left: auto } } .dropup .dropdown-menu { top: auto; bottom: 100%; margin-top: 0; margin-bottom: .125rem } .dropup .dropdown-toggle:after { margin-left: 10.2px; display: inline-block; font-style: normal; font-variant: normal; text-rendering: auto; -webkit-font-smoothing: antialiased; font-family: Font Awesome\ 5 Pro, Font Awesome\ 5 Free; font-weight: 700; content: "\F106" } .dropup .dropdown-toggle:empty:after { margin-left: 0 } .dropright .dropdown-menu { top: 0; right: auto; left: 100%; margin-top: 0; margin-left: .125rem } .dropright .dropdown-toggle:after { margin-left: 10.2px; display: inline-block; font-style: normal; font-variant: normal; text-rendering: auto; -webkit-font-smoothing: antialiased; font-family: Font Awesome\ 5 Pro, Font Awesome\ 5 Free; font-weight: 700; content: "\F105" } .dropright .dropdown-toggle:empty:after { margin-left: 0 } .dropright .dropdown-toggle:after { vertical-align: 0 } .dropleft .dropdown-menu { top: 0; right: 100%; left: auto; margin-top: 0; margin-right: .125rem } .dropleft .dropdown-toggle:after { margin-left: 10.2px; display: inline-block; font-style: normal; font-variant: normal; text-rendering: auto; -webkit-font-smoothing: antialiased; display: none } .dropleft .dropdown-toggle:after, .dropleft .dropdown-toggle:before { font-family: Font Awesome\ 5 Pro, Font Awesome\ 5 Free; font-weight: 700 } .dropleft .dropdown-toggle:before { display: inline-block; margin-right: 10.2px; content: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 256 512' width='12px' height='12px' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%238492A6' d='M224.3 273l-136 136c-9.4 9.4-24.6 9.4-33.9 0l-22.6-22.6c-9.4-9.4-9.4-24.6 0-33.9l96.4-96.4-96.4-96.4c-9.4-9.4-9.4-24.6 0-33.9L54.3 103c9.4-9.4 24.6-9.4 33.9 0l136 136c9.5 9.4 9.5 24.6.1 34z'/%3E%3C/svg%3E"); content: "\F104" } .dropleft .dropdown-toggle:empty:after { margin-left: 0 } .dropleft .dropdown-toggle:before { vertical-align: 0 } .dropdown-menu[x-placement^=bottom], .dropdown-menu[x-placement^=left], .dropdown-menu[x-placement^=right], .dropdown-menu[x-placement^=top] { right: auto; bottom: auto } .dropdown-divider { height: 0; margin: .5rem 0; overflow: hidden; border-top: 1px solid #eff2f7 } .dropdown-item { display: block; width: 100%; padding: .25rem 1rem; clear: both; font-weight: 400; color: #8492a6; text-align: inherit; white-space: nowrap; background-color: transparent; border: 0 } .dropdown-item.active, .dropdown-item:active, .dropdown-item:focus, .dropdown-item:hover { color: #6e00ff; text-decoration: none; background-color: transparent } .dropdown-item.disabled, .dropdown-item:disabled { color: #c0ccda; pointer-events: none; background-color: transparent } .dropdown-menu.show { display: block } .dropdown-header { display: block; padding: .35rem 1rem; margin-bottom: 0; font-size: .875rem; color: #c0ccda; white-space: nowrap } .dropdown-item-text { display: block; padding: .25rem 1rem; color: #8492a6 } .btn-group, .btn-group-vertical { position: relative; display: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex; vertical-align: middle } .btn-group-vertical>.btn, .btn-group>.btn { position: relative; -webkit-box-flex: 1; -ms-flex: 1 1 auto; flex: 1 1 auto } .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: 1 } .btn-toolbar { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start } .btn-toolbar .input-group { width: auto } .btn-group>.btn-group:not(:first-child), .btn-group>.btn:not(:first-child) { margin-left: -1px } .btn-group>.btn-group:not(:last-child)>.btn, .btn-group>.btn:not(:last-child):not(.dropdown-toggle) { border-top-right-radius: 0; border-bottom-right-radius: 0 } .btn-group>.btn-group:not(:first-child)>.btn, .btn-group>.btn:not(:first-child) { border-top-left-radius: 0; border-bottom-left-radius: 0 } .dropdown-toggle-split { padding-right: 1.3125rem; padding-left: 1.3125rem } .dropdown-toggle-split:after, .dropright .dropdown-toggle-split:after, .dropup .dropdown-toggle-split:after { margin-left: 0 } .dropleft .dropdown-toggle-split:before { margin-right: 0 } .btn-group-sm>.btn+.dropdown-toggle-split, .btn-sm+.dropdown-toggle-split { padding-right: .9375rem; padding-left: .9375rem } .btn-group-lg>.btn+.dropdown-toggle-split, .btn-lg+.dropdown-toggle-split { padding-right: 1.40625rem; padding-left: 1.40625rem } .btn-group.show .dropdown-toggle { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15) } .btn-group.show .dropdown-toggle.btn-link { -webkit-box-shadow: none; box-shadow: none } .btn-group-vertical { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: start; -ms-flex-align: start; align-items: flex-start; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center } .btn-group-vertical>.btn, .btn-group-vertical>.btn-group { width: 100% } .btn-group-vertical>.btn-group:not(:first-child), .btn-group-vertical>.btn:not(:first-child) { margin-top: -1px } .btn-group-vertical>.btn-group:not(:last-child)>.btn, .btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle) { border-bottom-right-radius: 0; border-bottom-left-radius: 0 } .btn-group-vertical>.btn-group:not(:first-child)>.btn, .btn-group-vertical>.btn:not(:first-child) { border-top-left-radius: 0; border-top-right-radius: 0 } .btn-group-toggle>.btn, .btn-group-toggle>.btn-group>.btn { margin-bottom: 0 } .btn-group-toggle>.btn-group>.btn input[type=checkbox], .btn-group-toggle>.btn-group>.btn input[type=radio], .btn-group-toggle>.btn input[type=checkbox], .btn-group-toggle>.btn input[type=radio] { position: absolute; clip: rect(0, 0, 0, 0); pointer-events: none } .input-group { position: relative; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-align: stretch; -ms-flex-align: stretch; align-items: stretch; width: 100% } .input-group>.custom-file, .input-group>.custom-select, .input-group>.form-control, .input-group>.form-control-plaintext { position: relative; -webkit-box-flex: 1; -ms-flex: 1 1 auto; flex: 1 1 auto; width: 1%; margin-bottom: 0 } .input-group>.custom-file+.custom-file, .input-group>.custom-file+.custom-select, .input-group>.custom-file+.form-control, .input-group>.custom-select+.custom-file, .input-group>.custom-select+.custom-select, .input-group>.custom-select+.form-control, .input-group>.form-control+.custom-file, .input-group>.form-control+.custom-select, .input-group>.form-control+.form-control, .input-group>.form-control-plaintext+.custom-file, .input-group>.form-control-plaintext+.custom-select, .input-group>.form-control-plaintext+.form-control { margin-left: -1px } .input-group>.custom-file .custom-file-input:focus~.custom-file-label, .input-group>.custom-select:focus, .input-group>.form-control:focus { z-index: 3 } .input-group>.custom-file .custom-file-input:focus { z-index: 4 } .input-group>.custom-select:not(:last-child), .input-group>.form-control:not(:last-child) { border-top-right-radius: 0; border-bottom-right-radius: 0 } .input-group>.custom-select:not(:first-child), .input-group>.form-control:not(:first-child) { border-top-left-radius: 0; border-bottom-left-radius: 0 } .input-group>.custom-file { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center } .input-group>.custom-file:not(:last-child) .custom-file-label, .input-group>.custom-file:not(:last-child) .custom-file-label:after { border-top-right-radius: 0; border-bottom-right-radius: 0 } .input-group>.custom-file:not(:first-child) .custom-file-label { border-top-left-radius: 0; border-bottom-left-radius: 0 } .input-group-append, .input-group-prepend { display: -webkit-box; display: -ms-flexbox; display: flex } .input-group-append .btn, .input-group-prepend .btn { position: relative; z-index: 2 } .input-group-append .btn:focus, .input-group-prepend .btn:focus { z-index: 3 } .input-group-append .btn+.btn, .input-group-append .btn+.input-group-text, .input-group-append .input-group-text+.btn, .input-group-append .input-group-text+.input-group-text, .input-group-prepend .btn+.btn, .input-group-prepend .btn+.input-group-text, .input-group-prepend .input-group-text+.btn, .input-group-prepend .input-group-text+.input-group-text { margin-left: -1px } .input-group-prepend { margin-right: -1px } .input-group-append { margin-left: -1px } .input-group-text { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; padding: .75rem 1.25rem; margin-bottom: 0; font-size: 1rem; font-weight: 400; line-height: 1.5; color: #c0ccda; text-align: center; white-space: nowrap; background-color: #fafbfe; border: 1px solid #e0e6ed; border-radius: .25rem } .input-group-text input[type=checkbox], .input-group-text input[type=radio] { margin-top: 0 } .input-group-lg>.custom-select, .input-group-lg>.form-control:not(textarea) { height: calc(1.5em + 2rem + 2px) } .input-group-lg>.custom-select, .input-group-lg>.form-control, .input-group-lg>.input-group-append>.btn, .input-group-lg>.input-group-append>.input-group-text, .input-group-lg>.input-group-prepend>.btn, .input-group-lg>.input-group-prepend>.input-group-text { padding: 1rem 1.875rem; font-size: 1.25rem; line-height: 1.5; border-radius: .375rem } .input-group-sm>.custom-select, .input-group-sm>.form-control:not(textarea) { height: calc(1.5em + 1rem + 2px) } .input-group-sm>.custom-select, .input-group-sm>.form-control, .input-group-sm>.input-group-append>.btn, .input-group-sm>.input-group-append>.input-group-text, .input-group-sm>.input-group-prepend>.btn, .input-group-sm>.input-group-prepend>.input-group-text { padding: .5rem 1.25rem; font-size: .875rem; line-height: 1.5; border-radius: .2rem } .input-group-lg>.custom-select, .input-group-sm>.custom-select { padding-right: 2.25rem } .input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle), .input-group>.input-group-append:last-child>.input-group-text:not(:last-child), .input-group>.input-group-append:not(:last-child)>.btn, .input-group>.input-group-append:not(:last-child)>.input-group-text, .input-group>.input-group-prepend>.btn, .input-group>.input-group-prepend>.input-group-text { border-top-right-radius: 0; border-bottom-right-radius: 0 } .input-group>.input-group-append>.btn, .input-group>.input-group-append>.input-group-text, .input-group>.input-group-prepend:first-child>.btn:not(:first-child), .input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child), .input-group>.input-group-prepend:not(:first-child)>.btn, .input-group>.input-group-prepend:not(:first-child)>.input-group-text { border-top-left-radius: 0; border-bottom-left-radius: 0 } .custom-control { position: relative; display: block; min-height: 1.7rem; padding-left: 1.75rem } .custom-control-inline { display: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex; margin-right: 1rem } .custom-control-input { position: absolute; z-index: -1; opacity: 0 } .custom-control-input:checked~.custom-control-label:before { color: #fff; border-color: #6300e6; background-color: #6300e6; -webkit-box-shadow: none; box-shadow: none } .custom-control-input:focus~.custom-control-label:before { -webkit-box-shadow: inset 0 1px 1px rgba(31, 45, 61, .075), 0 0 20px rgba(110, 0, 255, .1); box-shadow: inset 0 1px 1px rgba(31, 45, 61, .075), 0 0 20px rgba(110, 0, 255, .1) } .custom-control-input:focus:not(:checked)~.custom-control-label:before { border-color: rgba(110, 0, 255, .5) } .custom-control-input:not(:disabled):active~.custom-control-label:before { color: #fff; background-color: #c599ff; border-color: #c599ff; -webkit-box-shadow: none; box-shadow: none } .custom-control-input:disabled~.custom-control-label { color: #c0ccda } .custom-control-input:disabled~.custom-control-label:before { background-color: #eff2f7 } .custom-control-label { position: relative; margin-bottom: 0; vertical-align: top } .custom-control-label:before { pointer-events: none; background-color: #e5e9f2; border: 0 solid #eff2f7; -webkit-box-shadow: none; box-shadow: none } .custom-control-label:after, .custom-control-label:before { position: absolute; top: .35rem; left: -1.75rem; display: block; width: 1rem; height: 1rem; content: "" } .custom-control-label:after { background: no-repeat 50%/50% 50% } .custom-checkbox .custom-control-label:before { border-radius: .25rem } .custom-checkbox .custom-control-input:checked~.custom-control-label:after { background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23FFF' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3E%3C/svg%3E") } .custom-checkbox .custom-control-input:indeterminate~.custom-control-label:before { border-color: #6300e6; background-color: #6300e6; -webkit-box-shadow: none; box-shadow: none } .custom-checkbox .custom-control-input:indeterminate~.custom-control-label:after { background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23FFF' d='M0 2h4'/%3E%3C/svg%3E") } .custom-checkbox .custom-control-input:disabled:checked~.custom-control-label:before { background-color: rgba(110, 0, 255, .5) } .custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label:before { background-color: rgba(110, 0, 255, .5) } .custom-radio .custom-control-label:before { border-radius: 50% } .custom-radio .custom-control-input:checked~.custom-control-label:after { background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23FFF'/%3E%3C/svg%3E") } .custom-radio .custom-control-input:disabled:checked~.custom-control-label:before { background-color: rgba(110, 0, 255, .5) } .custom-switch { padding-left: 3.75rem } .custom-switch .custom-control-label:before { left: -3.75rem; width: 3rem; pointer-events: all; border-radius: .5625rem } .custom-switch .custom-control-label:after { top: .35rem; left: -3.75rem; width: 1.125rem; height: 1.125rem; background-color: #eff2f7; border-radius: .5625rem; -webkit-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-transform .15s ease-in-out, -webkit-box-shadow .15s ease-in-out; transition: background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-transform .15s ease-in-out, -webkit-box-shadow .15s ease-in-out; -o-transition: transform .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out; transition: transform .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out; transition: transform .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-transform .15s ease-in-out, -webkit-box-shadow .15s ease-in-out } @media (prefers-reduced-motion:reduce) { .custom-switch .custom-control-label:after { -webkit-transition: none; -o-transition: none; transition: none } } .custom-switch .custom-control-input:checked~.custom-control-label:after { background-color: #e5e9f2; -webkit-transform: translateX(2rem); -ms-transform: translateX(2rem); transform: translateX(2rem) } .custom-switch .custom-control-input:disabled:checked~.custom-control-label:before { background-color: rgba(110, 0, 255, .5) } .custom-select { display: inline-block; width: 100%; height: calc(1.5em + 1.5rem + 2px); padding: .75rem 2.25rem .75rem 1.25rem; font-size: 1rem; font-weight: 400; line-height: 1.5; color: #8492a6; vertical-align: middle; background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%233C4858' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 1.25rem center/8px 10px; background-color: #fff; border: 1px solid #e0e6ed; border-radius: .25rem; -webkit-box-shadow: inset 0 1px 2px rgba(31, 45, 61, .075); box-shadow: inset 0 1px 2px rgba(31, 45, 61, .075); -webkit-appearance: none; -moz-appearance: none; appearance: none } .custom-select:focus { border-color: rgba(110, 0, 255, .5); outline: 0; -webkit-box-shadow: inset 0 1px 2px rgba(31, 45, 61, .075), 0 0 20px rgba(110, 0, 255, .1); box-shadow: inset 0 1px 2px rgba(31, 45, 61, .075), 0 0 20px rgba(110, 0, 255, .1) } .custom-select:focus::-ms-value { color: #8492a6; background-color: #fff } .custom-select[multiple], .custom-select[size]:not([size="1"]) { height: auto; padding-right: 1.25rem; background-image: none } .custom-select:disabled { color: #c0ccda; background-color: #eff2f7 } .custom-select::-ms-expand { display: none } .custom-select-sm { height: calc(1.5em + 1rem + 2px); padding-top: .5rem; padding-bottom: .5rem; padding-left: 1.25rem; font-size: .875rem } .custom-select-lg { height: calc(1.5em + 2rem + 2px); padding-top: 1rem; padding-bottom: 1rem; padding-left: 1.875rem; font-size: 1.25rem } .custom-file { display: inline-block; margin-bottom: 0 } .custom-file, .custom-file-input { position: relative; width: 100%; height: calc(1.5em + 1.5rem + 2px) } .custom-file-input { z-index: 2; margin: 0; opacity: 0 } .custom-file-input:focus~.custom-file-label { border-color: rgba(110, 0, 255, .5); -webkit-box-shadow: 0 0 20px rgba(110, 0, 255, .1); box-shadow: 0 0 20px rgba(110, 0, 255, .1) } .custom-file-input:disabled~.custom-file-label { background-color: #eff2f7 } .custom-file-input:lang(en)~.custom-file-label:after { content: "Browse" } .custom-file-input~.custom-file-label[data-browse]:after { content: attr(data-browse) } .custom-file-label { left: 0; z-index: 1; height: calc(1.5em + 1.5rem + 2px); font-weight: 400; background-color: #fff; border: 1px solid #e0e6ed; border-radius: .25rem; -webkit-box-shadow: inset 0 1px 1px rgba(31, 45, 61, .075); box-shadow: inset 0 1px 1px rgba(31, 45, 61, .075) } .custom-file-label, .custom-file-label:after { position: absolute; top: 0; right: 0; padding: .75rem 1.25rem; line-height: 1.5; color: #8492a6 } .custom-file-label:after { bottom: 0; z-index: 3; display: block; height: calc(1.5em + 1.5rem); content: "Browse"; background-color: #fafbfe; border-left: inherit; border-radius: 0 .25rem .25rem 0 } .custom-range { width: 100%; height: 1rem; padding: 0; background-color: transparent; -webkit-appearance: none; -moz-appearance: none; appearance: none } .custom-range:focus { outline: none } .custom-range:focus::-webkit-slider-thumb { -webkit-box-shadow: 0 0 0 1px #fff, 0 0 20px rgba(110, 0, 255, .1); box-shadow: 0 0 0 1px #fff, 0 0 20px rgba(110, 0, 255, .1) } .custom-range:focus::-moz-range-thumb { box-shadow: 0 0 0 1px #fff, 0 0 20px rgba(110, 0, 255, .1) } .custom-range:focus::-ms-thumb { box-shadow: 0 0 0 1px #fff, 0 0 20px rgba(110, 0, 255, .1) } .custom-range::-moz-focus-outer { border: 0 } .custom-range::-webkit-slider-thumb { width: 1rem; height: 1rem; margin-top: -.25rem; background-color: #6300e6; border: 0; border-radius: 1rem; -webkit-box-shadow: 0 .1rem .25rem rgba(31, 45, 61, .1); box-shadow: 0 .1rem .25rem rgba(31, 45, 61, .1); -webkit-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out; transition: background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out; -o-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out; transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out; transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out; -webkit-appearance: none; appearance: none } @media (prefers-reduced-motion:reduce) { .custom-range::-webkit-slider-thumb { -webkit-transition: none; -o-transition: none; transition: none } } .custom-range::-webkit-slider-thumb:active { background-color: #c599ff } .custom-range::-webkit-slider-runnable-track { width: 100%; height: .5rem; color: transparent; cursor: pointer; background-color: #e5e9f2; border-color: transparent; border-radius: 1rem; -webkit-box-shadow: inset 0 .25rem .25rem rgba(31, 45, 61, .1); box-shadow: inset 0 .25rem .25rem rgba(31, 45, 61, .1) } .custom-range::-moz-range-thumb { width: 1rem; height: 1rem; background-color: #6300e6; border: 0; border-radius: 1rem; box-shadow: 0 .1rem .25rem rgba(31, 45, 61, .1); -webkit-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out; transition: background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out; -o-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out; transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out; transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out; -moz-appearance: none; appearance: none } @media (prefers-reduced-motion:reduce) { .custom-range::-moz-range-thumb { -webkit-transition: none; -o-transition: none; transition: none } } .custom-range::-moz-range-thumb:active { background-color: #c599ff } .custom-range::-moz-range-track { width: 100%; height: .5rem; color: transparent; cursor: pointer; background-color: #e5e9f2; border-color: transparent; border-radius: 1rem; box-shadow: inset 0 .25rem .25rem rgba(31, 45, 61, .1) } .custom-range::-ms-thumb { width: 1rem; height: 1rem; margin-top: 0; margin-right: 0; margin-left: 0; background-color: #6300e6; border: 0; border-radius: 1rem; box-shadow: 0 .1rem .25rem rgba(31, 45, 61, .1); -webkit-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out; transition: background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out; -o-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out; transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out; transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out; appearance: none } @media (prefers-reduced-motion:reduce) { .custom-range::-ms-thumb { -webkit-transition: none; -o-transition: none; transition: none } } .custom-range::-ms-thumb:active { background-color: #c599ff } .custom-range::-ms-track { width: 100%; height: .5rem; color: transparent; cursor: pointer; background-color: transparent; border-color: transparent; border-width: .5rem; box-shadow: inset 0 .25rem .25rem rgba(31, 45, 61, .1) } .custom-range::-ms-fill-lower, .custom-range::-ms-fill-upper { background-color: #e5e9f2; border-radius: 1rem } .custom-range::-ms-fill-upper { margin-right: 15px } .custom-range:disabled::-webkit-slider-thumb { background-color: #d3dce6 } .custom-range:disabled::-webkit-slider-runnable-track { cursor: default } .custom-range:disabled::-moz-range-thumb { background-color: #d3dce6 } .custom-range:disabled::-moz-range-track { cursor: default } .custom-range:disabled::-ms-thumb { background-color: #d3dce6 } .custom-control-label:before, .custom-file-label, .custom-select { -webkit-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out; transition: background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out; -o-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out; transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out; transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out } @media (prefers-reduced-motion:reduce) { .custom-control-label:before, .custom-file-label, .custom-select { -webkit-transition: none; -o-transition: none; transition: none } } .nav { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; padding-left: 0; margin-bottom: 0; list-style: none } .nav-link { display: block; padding: .5rem 1rem } .nav-link:focus, .nav-link:hover { text-decoration: none } .nav-link.disabled { color: #c0ccda; pointer-events: none; cursor: default } .nav-tabs { border-bottom: 1px solid #e5e9f2 } .nav-tabs .nav-item { margin-bottom: -1px } .nav-tabs .nav-link { border: 1px solid transparent; border-top-left-radius: .25rem; border-top-right-radius: .25rem } .nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover { border-color: #eff2f7 #eff2f7 #e5e9f2 } .nav-tabs .nav-link.disabled { color: #c0ccda; background-color: transparent; border-color: transparent } .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active { color: #8492a6; background-color: #fff; border-color: #e5e9f2 #e5e9f2 #fff } .nav-tabs .dropdown-menu { margin-top: -1px; border-top-left-radius: 0; border-top-right-radius: 0 } .nav-pills .nav-link { border-radius: .25rem } .nav-pills .nav-link.active, .nav-pills .show>.nav-link { color: #fff; background-color: #6300e6 } .nav-fill .nav-item { -webkit-box-flex: 1; -ms-flex: 1 1 auto; flex: 1 1 auto; text-align: center } .nav-justified .nav-item { -ms-flex-preferred-size: 0; flex-basis: 0; -webkit-box-flex: 1; -ms-flex-positive: 1; flex-grow: 1; text-align: center } .tab-content>.tab-pane { display: none } .tab-content>.active { display: block } .navbar { padding: .75rem 1rem } .navbar, .navbar>.container, .navbar>.container-fluid { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between } .navbar-brand { display: inline-block; padding-top: .2875rem; padding-bottom: .2875rem; margin-right: 1rem; font-size: 1.25rem; line-height: inherit; white-space: nowrap } .navbar-brand:focus, .navbar-brand:hover { text-decoration: none } .navbar-nav { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; padding-left: 0; margin-bottom: 0; list-style: none } .navbar-nav .nav-link { padding-right: 0; padding-left: 0 } .navbar-nav .dropdown-menu { position: static; float: none } .navbar-text { display: inline-block; padding-top: .5rem; padding-bottom: .5rem } .navbar-collapse { -ms-flex-preferred-size: 100%; flex-basis: 100%; -webkit-box-flex: 1; -ms-flex-positive: 1; flex-grow: 1; -webkit-box-align: center; -ms-flex-align: center; align-items: center } .navbar-toggler { padding: .25rem .75rem; font-size: 1.25rem; line-height: 1; background-color: transparent; border: 1px solid transparent; border-radius: .25rem } .navbar-toggler:focus, .navbar-toggler:hover { text-decoration: none } .navbar-toggler-icon { display: inline-block; width: 1.5em; height: 1.5em; vertical-align: middle; content: ""; background: no-repeat 50%; background-size: 100% 100% } @media (max-width:575.98px) { .navbar-expand-sm>.container, .navbar-expand-sm>.container-fluid { padding-right: 0; padding-left: 0 } } @media (min-width:576px) { .navbar-expand-sm { -ms-flex-flow: row nowrap; flex-flow: row nowrap; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start } .navbar-expand-sm, .navbar-expand-sm .navbar-nav { -webkit-box-orient: horizontal; -webkit-box-direction: normal } .navbar-expand-sm .navbar-nav { -ms-flex-direction: row; flex-direction: row } .navbar-expand-sm .navbar-nav .dropdown-menu { position: absolute } .navbar-expand-sm .navbar-nav .nav-link { padding-right: 1rem; padding-left: 1rem } .navbar-expand-sm>.container, .navbar-expand-sm>.container-fluid { -ms-flex-wrap: nowrap; flex-wrap: nowrap } .navbar-expand-sm .navbar-collapse { display: -webkit-box !important; display: -ms-flexbox !important; display: flex !important; -ms-flex-preferred-size: auto; flex-basis: auto } .navbar-expand-sm .navbar-toggler { display: none } } @media (max-width:767.98px) { .navbar-expand-md>.container, .navbar-expand-md>.container-fluid { padding-right: 0; padding-left: 0 } } @media (min-width:768px) { .navbar-expand-md { -ms-flex-flow: row nowrap; flex-flow: row nowrap; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start } .navbar-expand-md, .navbar-expand-md .navbar-nav { -webkit-box-orient: horizontal; -webkit-box-direction: normal } .navbar-expand-md .navbar-nav { -ms-flex-direction: row; flex-direction: row } .navbar-expand-md .navbar-nav .dropdown-menu { position: absolute } .navbar-expand-md .navbar-nav .nav-link { padding-right: 1rem; padding-left: 1rem } .navbar-expand-md>.container, .navbar-expand-md>.container-fluid { -ms-flex-wrap: nowrap; flex-wrap: nowrap } .navbar-expand-md .navbar-collapse { display: -webkit-box !important; display: -ms-flexbox !important; display: flex !important; -ms-flex-preferred-size: auto; flex-basis: auto } .navbar-expand-md .navbar-toggler { display: none } } @media (max-width:991.98px) { .navbar-expand-lg>.container, .navbar-expand-lg>.container-fluid { padding-right: 0; padding-left: 0 } } @media (min-width:992px) { .navbar-expand-lg { -ms-flex-flow: row nowrap; flex-flow: row nowrap; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start } .navbar-expand-lg, .navbar-expand-lg .navbar-nav { -webkit-box-orient: horizontal; -webkit-box-direction: normal } .navbar-expand-lg .navbar-nav { -ms-flex-direction: row; flex-direction: row } .navbar-expand-lg .navbar-nav .dropdown-menu { position: absolute } .navbar-expand-lg .navbar-nav .nav-link { padding-right: 1rem; padding-left: 1rem } .navbar-expand-lg>.container, .navbar-expand-lg>.container-fluid { -ms-flex-wrap: nowrap; flex-wrap: nowrap } .navbar-expand-lg .navbar-collapse { display: -webkit-box !important; display: -ms-flexbox !important; display: flex !important; -ms-flex-preferred-size: auto; flex-basis: auto } .navbar-expand-lg .navbar-toggler { display: none } } @media (max-width:1199.98px) { .navbar-expand-xl>.container, .navbar-expand-xl>.container-fluid { padding-right: 0; padding-left: 0 } } @media (min-width:1200px) { .navbar-expand-xl { -ms-flex-flow: row nowrap; flex-flow: row nowrap; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start } .navbar-expand-xl, .navbar-expand-xl .navbar-nav { -webkit-box-orient: horizontal; -webkit-box-direction: normal } .navbar-expand-xl .navbar-nav { -ms-flex-direction: row; flex-direction: row } .navbar-expand-xl .navbar-nav .dropdown-menu { position: absolute } .navbar-expand-xl .navbar-nav .nav-link { padding-right: 1rem; padding-left: 1rem } .navbar-expand-xl>.container, .navbar-expand-xl>.container-fluid { -ms-flex-wrap: nowrap; flex-wrap: nowrap } .navbar-expand-xl .navbar-collapse { display: -webkit-box !important; display: -ms-flexbox !important; display: flex !important; -ms-flex-preferred-size: auto; flex-basis: auto } .navbar-expand-xl .navbar-toggler { display: none } } .navbar-expand { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-flow: row nowrap; flex-flow: row nowrap; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start } .navbar-expand>.container, .navbar-expand>.container-fluid { padding-right: 0; padding-left: 0 } .navbar-expand .navbar-nav { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row } .navbar-expand .navbar-nav .dropdown-menu { position: absolute } .navbar-expand .navbar-nav .nav-link { padding-right: 1rem; padding-left: 1rem } .navbar-expand>.container, .navbar-expand>.container-fluid { -ms-flex-wrap: nowrap; flex-wrap: nowrap } .navbar-expand .navbar-collapse { display: -webkit-box !important; display: -ms-flexbox !important; display: flex !important; -ms-flex-preferred-size: auto; flex-basis: auto } .navbar-expand .navbar-toggler { display: none } .navbar-light .navbar-brand, .navbar-light .navbar-brand:focus, .navbar-light .navbar-brand:hover { color: rgba(31, 45, 61, .9) } .navbar-light .navbar-nav .nav-link { color: rgba(31, 45, 61, .5) } .navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover { color: rgba(31, 45, 61, .7) } .navbar-light .navbar-nav .nav-link.disabled { color: rgba(31, 45, 61, .3) } .navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show>.nav-link { color: rgba(31, 45, 61, .9) } .navbar-light .navbar-toggler { color: rgba(31, 45, 61, .5); border-color: transparent } .navbar-light .navbar-toggler-icon { background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(31, 45, 61, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") } .navbar-light .navbar-text { color: rgba(31, 45, 61, .5) } .navbar-light .navbar-text a, .navbar-light .navbar-text a:focus, .navbar-light .navbar-text a:hover { color: rgba(31, 45, 61, .9) } .navbar-dark .navbar-brand, .navbar-dark .navbar-brand:focus, .navbar-dark .navbar-brand:hover { color: #fff } .navbar-dark .navbar-nav .nav-link { color: hsla(0, 0%, 100%, .85) } .navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover { color: #fff } .navbar-dark .navbar-nav .nav-link.disabled { color: hsla(0, 0%, 100%, .25) } .navbar-dark .navbar-nav .active>.nav-link, .navbar-dark .navbar-nav .nav-link.active, .navbar-dark .navbar-nav .nav-link.show, .navbar-dark .navbar-nav .show>.nav-link { color: #fff } .navbar-dark .navbar-toggler { color: hsla(0, 0%, 100%, .85); border-color: transparent } .navbar-dark .navbar-toggler-icon { background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.85)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") } .navbar-dark .navbar-text { color: hsla(0, 0%, 100%, .85) } .navbar-dark .navbar-text a, .navbar-dark .navbar-text a:focus, .navbar-dark .navbar-text a:hover { color: #fff } .card { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; min-width: 0; word-wrap: break-word; background-color: #fff; background-clip: border-box; border: 1px solid #eff2f7; border-radius: .375rem } .card>hr { margin-right: 0; margin-left: 0 } .card>.list-group:first-child .list-group-item:first-child { border-top-left-radius: .375rem; border-top-right-radius: .375rem } .card>.list-group:last-child .list-group-item:last-child { border-bottom-right-radius: .375rem; border-bottom-left-radius: .375rem } .card-body { -webkit-box-flex: 1; -ms-flex: 1 1 auto; flex: 1 1 auto; padding: 1.5rem; color: #8492a6 } .card-title { margin-bottom: 1rem } .card-subtitle { margin-top: -.5rem } .card-subtitle, .card-text:last-child { margin-bottom: 0 } .card-link:hover { text-decoration: none } .card-link+.card-link { margin-left: 1.5rem } .card-header { padding: 1rem 1.5rem; margin-bottom: 0; background-color: transparent } .card-header:first-child { border-radius: calc(.375rem - 1px) calc(.375rem - 1px) 0 0 } .card-header+.list-group .list-group-item:first-child { border-top: 0 } .card-footer { padding: 1rem 1.5rem; background-color: transparent; border-top: 1px solid #eff2f7 } .card-footer:last-child { border-radius: 0 0 calc(.375rem - 1px) calc(.375rem - 1px) } .card-header-tabs { margin-bottom: -1rem; border-bottom: 0 } .card-header-pills, .card-header-tabs { margin-right: -.75rem; margin-left: -.75rem } .card-img-overlay { position: absolute; top: 0; right: 0; bottom: 0; left: 0; padding: 1.25rem } .card-img { width: 100%; border-radius: calc(.375rem - 1px) } .card-img-top { width: 100%; border-top-left-radius: calc(.375rem - 1px); border-top-right-radius: calc(.375rem - 1px) } .card-img-bottom { width: 100%; border-bottom-right-radius: calc(.375rem - 1px); border-bottom-left-radius: calc(.375rem - 1px) } .card-deck { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column } .card-deck .card { margin-bottom: 15px } @media (min-width:576px) { .card-deck { -webkit-box-orient: horizontal; -ms-flex-flow: row wrap; flex-flow: row wrap; margin-right: -15px; margin-left: -15px } .card-deck, .card-deck .card { -webkit-box-direction: normal } .card-deck .card { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-flex: 1; -ms-flex: 1 0 0%; flex: 1 0 0%; -webkit-box-orient: vertical; -ms-flex-direction: column; flex-direction: column; margin-right: 15px; margin-bottom: 0; margin-left: 15px } } .card-group { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column } .card-group>.card { margin-bottom: 15px } @media (min-width:576px) { .card-group { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-flow: row wrap; flex-flow: row wrap } .card-group>.card { -webkit-box-flex: 1; -ms-flex: 1 0 0%; flex: 1 0 0%; margin-bottom: 0 } .card-group>.card+.card { margin-left: 0; border-left: 0 } .card-group>.card:not(:last-child) { border-top-right-radius: 0; border-bottom-right-radius: 0 } .card-group>.card:not(:last-child) .card-header, .card-group>.card:not(:last-child) .card-img-top { border-top-right-radius: 0 } .card-group>.card:not(:last-child) .card-footer, .card-group>.card:not(:last-child) .card-img-bottom { border-bottom-right-radius: 0 } .card-group>.card:not(:first-child) { border-top-left-radius: 0; border-bottom-left-radius: 0 } .card-group>.card:not(:first-child) .card-header, .card-group>.card:not(:first-child) .card-img-top { border-top-left-radius: 0 } .card-group>.card:not(:first-child) .card-footer, .card-group>.card:not(:first-child) .card-img-bottom { border-bottom-left-radius: 0 } } .card-columns .card { margin-bottom: 1rem } @media (min-width:576px) { .card-columns { -webkit-column-count: 3; column-count: 3; -webkit-column-gap: 1.25rem; column-gap: 1.25rem; orphans: 1; widows: 1 } .card-columns .card { display: inline-block; width: 100% } } .accordion>.card { overflow: hidden } .accordion>.card:not(:first-of-type) .card-header:first-child { border-radius: 0 } .accordion>.card:not(:first-of-type):not(:last-of-type) { border-bottom: 0; border-radius: 0 } .accordion>.card:first-of-type { border-bottom: 0; border-bottom-right-radius: 0; border-bottom-left-radius: 0 } .accordion>.card:last-of-type { border-top-left-radius: 0; border-top-right-radius: 0 } .accordion>.card .card-header { margin-bottom: -1px } .breadcrumb { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; padding: .75rem 1rem; margin-bottom: 0; list-style: none; background-color: transparent; border-radius: .25rem } .breadcrumb-item+.breadcrumb-item { padding-left: .5rem } .breadcrumb-item+.breadcrumb-item:before { display: inline-block; padding-right: .5rem; color: #e0e6ed; content: "/" } .breadcrumb-item+.breadcrumb-item:hover:before { text-decoration: underline; text-decoration: none } .breadcrumb-item.active { color: #c0ccda } .pagination { display: -webkit-box; display: -ms-flexbox; display: flex; padding-left: 0; list-style: none; border-radius: .25rem } .page-link { position: relative; display: block; padding: .5rem .75rem; margin-left: -1px; line-height: 1.25; color: #c0ccda; background-color: #fff; border: 1px solid #e5e9f2 } .page-link:hover { z-index: 2; color: #c0ccda; text-decoration: none; background-color: #e5e9f2; border-color: #e5e9f2 } .page-link:focus { z-index: 2; outline: 0; -webkit-box-shadow: 0 0 0 rgba(99, 0, 230, .25); box-shadow: 0 0 0 rgba(99, 0, 230, .25) } .page-item:first-child .page-link { margin-left: 0; border-top-left-radius: .25rem; border-bottom-left-radius: .25rem } .page-item:last-child .page-link { border-top-right-radius: .25rem; border-bottom-right-radius: .25rem } .page-item.active .page-link { z-index: 1; color: #fff; background-color: #6300e6; border-color: #6300e6 } .page-item.disabled .page-link { color: #c0ccda; pointer-events: none; cursor: auto; background-color: #fff; border-color: #e5e9f2 } .pagination-lg .page-link { padding: .75rem 1.5rem; font-size: 1.25rem; line-height: 1.5 } .pagination-lg .page-item:first-child .page-link { border-top-left-radius: .375rem; border-bottom-left-radius: .375rem } .pagination-lg .page-item:last-child .page-link { border-top-right-radius: .375rem; border-bottom-right-radius: .375rem } .pagination-sm .page-link { padding: .25rem .5rem; font-size: .875rem; line-height: 1.5 } .pagination-sm .page-item:first-child .page-link { border-top-left-radius: .2rem; border-bottom-left-radius: .2rem } .pagination-sm .page-item:last-child .page-link { border-top-right-radius: .2rem; border-bottom-right-radius: .2rem } .badge { display: inline-block; padding: .25rem .5rem; font-size: 80%; font-weight: 700; line-height: 1; text-align: center; white-space: nowrap; vertical-align: baseline; border-radius: .25rem; -webkit-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out; transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out; -o-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out; transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out; transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out } @media (prefers-reduced-motion:reduce) { .badge { -webkit-transition: none; -o-transition: none; transition: none } } a.badge:focus, a.badge:hover { text-decoration: none } .badge:empty { display: none } .btn .badge { position: relative; top: -1px } .badge-pill { padding-right: .875em; padding-left: .875em; border-radius: 50rem } .badge-primary { color: #fff; background-color: #6e00ff } a.badge-primary:focus, a.badge-primary:hover { color: #fff; background-color: #5800cc } a.badge-primary.focus, a.badge-primary:focus { outline: 0; -webkit-box-shadow: 0 0 0 0 rgba(110, 0, 255, .5); box-shadow: 0 0 0 0 rgba(110, 0, 255, .5) } .badge-secondary { color: #273444; background-color: #eff2f7 } a.badge-secondary:focus, a.badge-secondary:hover { color: #273444; background-color: #cdd6e6 } a.badge-secondary.focus, a.badge-secondary:focus { outline: 0; -webkit-box-shadow: 0 0 0 0 rgba(239, 242, 247, .5); box-shadow: 0 0 0 0 rgba(239, 242, 247, .5) } .badge-success { color: #fff; background-color: #36b37e } a.badge-success:focus, a.badge-success:hover { color: #fff; background-color: #2a8c62 } a.badge-success.focus, a.badge-success:focus { outline: 0; -webkit-box-shadow: 0 0 0 0 rgba(54, 179, 126, .5); box-shadow: 0 0 0 0 rgba(54, 179, 126, .5) } .badge-info { color: #fff; background-color: #00b8d9 } a.badge-info:focus, a.badge-info:hover { color: #fff; background-color: #008da6 } a.badge-info.focus, a.badge-info:focus { outline: 0; -webkit-box-shadow: 0 0 0 0 rgba(0, 184, 217, .5); box-shadow: 0 0 0 0 rgba(0, 184, 217, .5) } .badge-warning { color: #fff; background-color: #ffab00 } a.badge-warning:focus, a.badge-warning:hover { color: #fff; background-color: #cc8900 } a.badge-warning.focus, a.badge-warning:focus { outline: 0; -webkit-box-shadow: 0 0 0 0 rgba(255, 171, 0, .5); box-shadow: 0 0 0 0 rgba(255, 171, 0, .5) } .badge-danger { color: #fff; background-color: #ff5630 } a.badge-danger:focus, a.badge-danger:hover { color: #fff; background-color: #fc2e00 } a.badge-danger.focus, a.badge-danger:focus { outline: 0; -webkit-box-shadow: 0 0 0 0 rgba(255, 86, 48, .5); box-shadow: 0 0 0 0 rgba(255, 86, 48, .5) } .badge-light { color: #273444; background-color: #eff2f7 } a.badge-light:focus, a.badge-light:hover { color: #273444; background-color: #cdd6e6 } a.badge-light.focus, a.badge-light:focus { outline: 0; -webkit-box-shadow: 0 0 0 0 rgba(239, 242, 247, .5); box-shadow: 0 0 0 0 rgba(239, 242, 247, .5) } .badge-dark { color: #fff; background-color: #273444 } a.badge-dark:focus, a.badge-dark:hover { color: #fff; background-color: #141b24 } a.badge-dark.focus, a.badge-dark:focus { outline: 0; -webkit-box-shadow: 0 0 0 0 rgba(39, 52, 68, .5); box-shadow: 0 0 0 0 rgba(39, 52, 68, .5) } .badge-neutral { color: #273444; background-color: #fff } a.badge-neutral:focus, a.badge-neutral:hover { color: #273444; background-color: #e6e6e6 } a.badge-neutral.focus, a.badge-neutral:focus { outline: 0; -webkit-box-shadow: 0 0 0 0 hsla(0, 0%, 100%, .5); box-shadow: 0 0 0 0 hsla(0, 0%, 100%, .5) } .badge-white { color: #273444; background-color: #fff } a.badge-white:focus, a.badge-white:hover { color: #273444; background-color: #e6e6e6 } a.badge-white.focus, a.badge-white:focus { outline: 0; -webkit-box-shadow: 0 0 0 0 hsla(0, 0%, 100%, .5); box-shadow: 0 0 0 0 hsla(0, 0%, 100%, .5) } .jumbotron { padding: 2rem 1rem; margin-bottom: 2rem; background-color: #eff2f7; border-radius: .375rem } @media (min-width:576px) { .jumbotron { padding: 4rem 2rem } } .jumbotron-fluid { padding-right: 0; padding-left: 0; border-radius: 0 } .alert { position: relative; padding: .875rem; margin-bottom: 1rem; border: 1px solid transparent; border-radius: .25rem } .alert-heading { color: inherit } .alert-link { font-weight: 600 } .alert-dismissible { padding-right: 3rem } .alert-dismissible .close { position: absolute; top: 0; right: 0; padding: .875rem; color: inherit } .alert-primary { color: #4816a2; background-color: #e2ccff; border-color: #d6b8ff } .alert-primary hr { border-top-color: #c79fff } .alert-primary .alert-link { color: #341075 } .alert-secondary { color: #8b939e; background-color: #fcfcfd; border-color: #fbfbfd } .alert-secondary hr { border-top-color: #eaeaf5 } .alert-secondary .alert-link { color: #707986 } .alert-success { color: #2b735f; background-color: #d7f0e5; border-color: #c7eadb } .alert-success hr { border-top-color: #b4e3cf } .alert-success .alert-link { color: #1d4e40 } .alert-info { color: #0f758e; background-color: #ccf1f7; border-color: #b8ebf4 } .alert-info hr { border-top-color: #a2e5f1 } .alert-info .alert-link { color: #0a4f60 } .alert-warning { color: #936f1d; background-color: #fec; border-color: #ffe7b8 } .alert-warning hr { border-top-color: #ffde9f } .alert-warning .alert-link { color: #684f15 } .alert-danger { color: #934236; background-color: #ffddd6; border-color: #ffd0c5 } .alert-danger hr { border-top-color: #ffbbac } .alert-danger .alert-link { color: #6e3128 } .alert-light { color: #8b939e; background-color: #fcfcfd; border-color: #fbfbfd } .alert-light hr { border-top-color: #eaeaf5 } .alert-light .alert-link { color: #707986 } .alert-dark { color: #233141; background-color: #d4d6da; border-color: #c3c6cb } .alert-dark hr { border-top-color: #b5b9bf } .alert-dark .alert-link { color: #111820 } .alert-neutral { color: #939aa2; background-color: #fff; border-color: #fff } .alert-neutral hr { border-top-color: #f2f2f2 } .alert-neutral .alert-link { color: #78808a } .alert-white { color: #939aa2; background-color: #fff; border-color: #fff } .alert-white hr { border-top-color: #f2f2f2 } .alert-white .alert-link { color: #78808a } @-webkit-keyframes progress-bar-stripes { 0% { background-position: .5rem 0 } to { background-position: 0 0 } } @keyframes progress-bar-stripes { 0% { background-position: .5rem 0 } to { background-position: 0 0 } } .progress { height: .5rem; overflow: hidden; font-size: .75rem; background-color: #eff2f7; border-radius: 50rem; -webkit-box-shadow: inset 0 .1rem .1rem rgba(31, 45, 61, .1); box-shadow: inset 0 .1rem .1rem rgba(31, 45, 61, .1) } .progress, .progress-bar { display: -webkit-box; display: -ms-flexbox; display: flex } .progress-bar { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; color: #fff; text-align: center; white-space: nowrap; background-color: #6e00ff; -webkit-transition: width .6s ease; -o-transition: width .6s ease; transition: width .6s ease } @media (prefers-reduced-motion:reduce) { .progress-bar { -webkit-transition: none; -o-transition: none; transition: none } } .progress-bar-striped { background-image: -o-linear-gradient(45deg, hsla(0, 0%, 100%, .15) 25%, transparent 25%, transparent 50%, hsla(0, 0%, 100%, .15) 50%, hsla(0, 0%, 100%, .15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, hsla(0, 0%, 100%, .15) 25%, transparent 0, transparent 50%, hsla(0, 0%, 100%, .15) 0, hsla(0, 0%, 100%, .15) 75%, transparent 0, transparent); background-size: .5rem .5rem } .progress-bar-animated { -webkit-animation: progress-bar-stripes 1s linear infinite; animation: progress-bar-stripes 1s linear infinite } @media (prefers-reduced-motion:reduce) { .progress-bar-animated { -webkit-animation: none; animation: none } } .media { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: start; -ms-flex-align: start; align-items: flex-start } .media-body { -webkit-box-flex: 1; -ms-flex: 1; flex: 1 } .list-group { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; padding-left: 0; margin-bottom: 0 } .list-group-item-action { width: 100%; color: #8492a6; text-align: inherit } .list-group-item-action:focus, .list-group-item-action:hover { z-index: 1; color: #8492a6; text-decoration: none; background-color: #fafbfe } .list-group-item-action:active { color: #8492a6; background-color: #eff2f7 } .list-group-item { position: relative; display: block; padding: 1rem 1.5rem; margin-bottom: -1px; background-color: #fff; border: 1px solid #eff2f7 } .list-group-item:first-child { border-top-left-radius: .25rem; border-top-right-radius: .25rem } .list-group-item:last-child { margin-bottom: 0; border-bottom-right-radius: .25rem; border-bottom-left-radius: .25rem } .list-group-item.disabled, .list-group-item:disabled { color: #c0ccda; pointer-events: none; background-color: #fff } .list-group-item.active { z-index: 2; color: #fff; background-color: #6300e6; border-color: #6300e6 } .list-group-horizontal { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row } .list-group-horizontal .list-group-item { margin-right: -1px; margin-bottom: 0 } .list-group-horizontal .list-group-item:first-child { border-top-left-radius: .25rem; border-bottom-left-radius: .25rem; border-top-right-radius: 0 } .list-group-horizontal .list-group-item:last-child { margin-right: 0; border-top-right-radius: .25rem; border-bottom-right-radius: .25rem; border-bottom-left-radius: 0 } @media (min-width:576px) { .list-group-horizontal-sm { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row } .list-group-horizontal-sm .list-group-item { margin-right: -1px; margin-bottom: 0 } .list-group-horizontal-sm .list-group-item:first-child { border-top-left-radius: .25rem; border-bottom-left-radius: .25rem; border-top-right-radius: 0 } .list-group-horizontal-sm .list-group-item:last-child { margin-right: 0; border-top-right-radius: .25rem; border-bottom-right-radius: .25rem; border-bottom-left-radius: 0 } } @media (min-width:768px) { .list-group-horizontal-md { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row } .list-group-horizontal-md .list-group-item { margin-right: -1px; margin-bottom: 0 } .list-group-horizontal-md .list-group-item:first-child { border-top-left-radius: .25rem; border-bottom-left-radius: .25rem; border-top-right-radius: 0 } .list-group-horizontal-md .list-group-item:last-child { margin-right: 0; border-top-right-radius: .25rem; border-bottom-right-radius: .25rem; border-bottom-left-radius: 0 } } @media (min-width:992px) { .list-group-horizontal-lg { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row } .list-group-horizontal-lg .list-group-item { margin-right: -1px; margin-bottom: 0 } .list-group-horizontal-lg .list-group-item:first-child { border-top-left-radius: .25rem; border-bottom-left-radius: .25rem; border-top-right-radius: 0 } .list-group-horizontal-lg .list-group-item:last-child { margin-right: 0; border-top-right-radius: .25rem; border-bottom-right-radius: .25rem; border-bottom-left-radius: 0 } } @media (min-width:1200px) { .list-group-horizontal-xl { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row } .list-group-horizontal-xl .list-group-item { margin-right: -1px; margin-bottom: 0 } .list-group-horizontal-xl .list-group-item:first-child { border-top-left-radius: .25rem; border-bottom-left-radius: .25rem; border-top-right-radius: 0 } .list-group-horizontal-xl .list-group-item:last-child { margin-right: 0; border-top-right-radius: .25rem; border-bottom-right-radius: .25rem; border-bottom-left-radius: 0 } } .list-group-flush .list-group-item { border-right: 0; border-left: 0; border-radius: 0 } .list-group-flush .list-group-item:last-child { margin-bottom: -1px } .list-group-flush:first-child .list-group-item:first-child { border-top: 0 } .list-group-flush:last-child .list-group-item:last-child { margin-bottom: 0; border-bottom: 0 } .list-group-item-primary { color: #4816a2; background-color: #d6b8ff } .list-group-item-primary.list-group-item-action:focus, .list-group-item-primary.list-group-item-action:hover { color: #4816a2; background-color: #c79fff } .list-group-item-primary.list-group-item-action.active { color: #fff; background-color: #4816a2; border-color: #4816a2 } .list-group-item-secondary { color: #8b939e; background-color: #fbfbfd } .list-group-item-secondary.list-group-item-action:focus, .list-group-item-secondary.list-group-item-action:hover { color: #8b939e; background-color: #eaeaf5 } .list-group-item-secondary.list-group-item-action.active { color: #fff; background-color: #8b939e; border-color: #8b939e } .list-group-item-success { color: #2b735f; background-color: #c7eadb } .list-group-item-success.list-group-item-action:focus, .list-group-item-success.list-group-item-action:hover { color: #2b735f; background-color: #b4e3cf } .list-group-item-success.list-group-item-action.active { color: #fff; background-color: #2b735f; border-color: #2b735f } .list-group-item-info { color: #0f758e; background-color: #b8ebf4 } .list-group-item-info.list-group-item-action:focus, .list-group-item-info.list-group-item-action:hover { color: #0f758e; background-color: #a2e5f1 } .list-group-item-info.list-group-item-action.active { color: #fff; background-color: #0f758e; border-color: #0f758e } .list-group-item-warning { color: #936f1d; background-color: #ffe7b8 } .list-group-item-warning.list-group-item-action:focus, .list-group-item-warning.list-group-item-action:hover { color: #936f1d; background-color: #ffde9f } .list-group-item-warning.list-group-item-action.active { color: #fff; background-color: #936f1d; border-color: #936f1d } .list-group-item-danger { color: #934236; background-color: #ffd0c5 } .list-group-item-danger.list-group-item-action:focus, .list-group-item-danger.list-group-item-action:hover { color: #934236; background-color: #ffbbac } .list-group-item-danger.list-group-item-action.active { color: #fff; background-color: #934236; border-color: #934236 } .list-group-item-light { color: #8b939e; background-color: #fbfbfd } .list-group-item-light.list-group-item-action:focus, .list-group-item-light.list-group-item-action:hover { color: #8b939e; background-color: #eaeaf5 } .list-group-item-light.list-group-item-action.active { color: #fff; background-color: #8b939e; border-color: #8b939e } .list-group-item-dark { color: #233141; background-color: #c3c6cb } .list-group-item-dark.list-group-item-action:focus, .list-group-item-dark.list-group-item-action:hover { color: #233141; background-color: #b5b9bf } .list-group-item-dark.list-group-item-action.active { color: #fff; background-color: #233141; border-color: #233141 } .list-group-item-neutral { color: #939aa2; background-color: #fff } .list-group-item-neutral.list-group-item-action:focus, .list-group-item-neutral.list-group-item-action:hover { color: #939aa2; background-color: #f2f2f2 } .list-group-item-neutral.list-group-item-action.active { color: #fff; background-color: #939aa2; border-color: #939aa2 } .list-group-item-white { color: #939aa2; background-color: #fff } .list-group-item-white.list-group-item-action:focus, .list-group-item-white.list-group-item-action:hover { color: #939aa2; background-color: #f2f2f2 } .list-group-item-white.list-group-item-action.active { color: #fff; background-color: #939aa2; border-color: #939aa2 } .close { float: right; font-size: 1.25rem; font-weight: 600; line-height: 1; text-shadow: none; opacity: .5 } .close, .close:hover { color: hsla(0, 0%, 100%, .6) } .close:hover { text-decoration: none } .close:not(:disabled):not(.disabled):focus, .close:not(:disabled):not(.disabled):hover { opacity: .75 } button.close { padding: 0; background-color: transparent; border: 0; -webkit-appearance: none; -moz-appearance: none; appearance: none } a.close.disabled { pointer-events: none } .toast { max-width: 350px; overflow: hidden; font-size: .875rem; background-color: hsla(0, 0%, 100%, .85); background-clip: padding-box; border: 1px solid rgba(0, 0, 0, .1); -webkit-box-shadow: 0 .25rem .75rem rgba(31, 45, 61, .1); box-shadow: 0 .25rem .75rem rgba(31, 45, 61, .1); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); opacity: 0; border-radius: .25rem } .toast:not(:last-child) { margin-bottom: .75rem } .toast.showing { opacity: 1 } .toast.show { display: block; opacity: 1 } .toast.hide { display: none } .toast-header { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; padding: .25rem .75rem; color: #c0ccda; background-color: hsla(0, 0%, 100%, .85); background-clip: padding-box; border-bottom: 1px solid rgba(0, 0, 0, .05) } .toast-body { padding: .75rem } .modal-open { overflow: hidden } .modal-open .modal { overflow-x: hidden; overflow-y: auto } .modal { position: fixed; top: 0; left: 0; z-index: 1050; display: none; width: 100%; height: 100%; overflow: hidden; outline: 0 } .modal-dialog { position: relative; width: auto; margin: .5rem; pointer-events: none } .modal.fade .modal-dialog { -webkit-transition: -webkit-transform .3s ease-out; transition: -webkit-transform .3s ease-out; -o-transition: transform .3s ease-out; transition: transform .3s ease-out; transition: transform .3s ease-out, -webkit-transform .3s ease-out; -webkit-transform: translateY(-50px); -ms-transform: translateY(-50px); transform: translateY(-50px) } @media (prefers-reduced-motion:reduce) { .modal.fade .modal-dialog { -webkit-transition: none; -o-transition: none; transition: none } } .modal.show .modal-dialog { -webkit-transform: none; -ms-transform: none; transform: none } .modal-dialog-scrollable { display: -webkit-box; display: -ms-flexbox; display: flex; max-height: calc(100% - 1rem) } .modal-dialog-scrollable .modal-content { max-height: calc(100vh - 1rem); overflow: hidden } .modal-dialog-scrollable .modal-footer, .modal-dialog-scrollable .modal-header { -ms-flex-negative: 0; flex-shrink: 0 } .modal-dialog-scrollable .modal-body { overflow-y: auto } .modal-dialog-centered { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; min-height: calc(100% - 1rem) } .modal-dialog-centered:before { display: block; height: calc(100vh - 1rem); content: "" } .modal-dialog-centered.modal-dialog-scrollable { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; height: 100% } .modal-dialog-centered.modal-dialog-scrollable .modal-content { max-height: none } .modal-dialog-centered.modal-dialog-scrollable:before { content: none } .modal-content { position: relative; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; width: 100%; pointer-events: auto; background-color: #fff; background-clip: padding-box; border: 1px solid rgba(31, 45, 61, .2); -webkit-box-shadow: 0 .25rem .5rem rgba(31, 45, 61, .5); box-shadow: 0 .25rem .5rem rgba(31, 45, 61, .5); outline: 0 } .modal-backdrop { position: fixed; top: 0; left: 0; z-index: 1040; width: 100vw; height: 100vh; background-color: #1f2d3d } .modal-backdrop.fade { opacity: 0 } .modal-backdrop.show { opacity: .3 } .modal-header { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: start; -ms-flex-align: start; align-items: flex-start; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; padding: 1.25rem; border-bottom: 1px solid #eff2f7; border-top-left-radius: .25rem; border-top-right-radius: .25rem } .modal-header .close { padding: 1.25rem; margin: -1rem -1rem -1rem auto } .modal-title { margin-bottom: 0; line-height: 1.7 } .modal-body { position: relative; -webkit-box-flex: 1; -ms-flex: 1 1 auto; flex: 1 1 auto; padding: 1.5rem } .modal-footer { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: end; -ms-flex-pack: end; justify-content: flex-end; padding: 1.5rem; border-top: 1px solid #eff2f7; border-bottom-right-radius: .25rem; border-bottom-left-radius: .25rem } .modal-footer>:not(:first-child) { margin-left: .25rem } .modal-footer>:not(:last-child) { margin-right: .25rem } .modal-scrollbar-measure { position: absolute; top: -9999px; width: 50px; height: 50px; overflow: scroll } @media (min-width:576px) { .modal-dialog { max-width: 500px; margin: 1.75rem auto } .modal-dialog-scrollable { max-height: calc(100% - 3.5rem) } .modal-dialog-scrollable .modal-content { max-height: calc(100vh - 3.5rem) } .modal-dialog-centered { min-height: calc(100% - 3.5rem) } .modal-dialog-centered:before { height: calc(100vh - 3.5rem) } .modal-content { -webkit-box-shadow: 0 .5rem 1rem rgba(31, 45, 61, .5); box-shadow: 0 .5rem 1rem rgba(31, 45, 61, .5) } .modal-sm { max-width: 300px } } @media (min-width:992px) { .modal-lg, .modal-xl { max-width: 800px } } @media (min-width:1200px) { .modal-xl { max-width: 1140px } } .tooltip { position: absolute; z-index: 1070; display: block; margin: 0; font-family: Nunito, sans-serif; font-style: normal; font-weight: 400; line-height: 1.7; text-align: left; text-align: start; text-decoration: none; text-shadow: none; text-transform: none; letter-spacing: normal; word-break: normal; word-spacing: normal; white-space: normal; line-break: auto; font-size: .875rem; word-wrap: break-word; opacity: 0 } .tooltip.show { opacity: .9 } .tooltip .arrow { position: absolute; display: block; width: .8rem; height: .4rem } .tooltip .arrow:before { position: absolute; content: ""; border-color: transparent; border-style: solid } .bs-tooltip-auto[x-placement^=top], .bs-tooltip-top { padding: .4rem 0 } .bs-tooltip-auto[x-placement^=top] .arrow, .bs-tooltip-top .arrow { bottom: 0 } .bs-tooltip-auto[x-placement^=top] .arrow:before, .bs-tooltip-top .arrow:before { top: 0; border-width: .4rem .4rem 0; border-top-color: #1f2d3d } .bs-tooltip-auto[x-placement^=right], .bs-tooltip-right { padding: 0 .4rem } .bs-tooltip-auto[x-placement^=right] .arrow, .bs-tooltip-right .arrow { left: 0; width: .4rem; height: .8rem } .bs-tooltip-auto[x-placement^=right] .arrow:before, .bs-tooltip-right .arrow:before { right: 0; border-width: .4rem .4rem .4rem 0; border-right-color: #1f2d3d } .bs-tooltip-auto[x-placement^=bottom], .bs-tooltip-bottom { padding: .4rem 0 } .bs-tooltip-auto[x-placement^=bottom] .arrow, .bs-tooltip-bottom .arrow { top: 0 } .bs-tooltip-auto[x-placement^=bottom] .arrow:before, .bs-tooltip-bottom .arrow:before { bottom: 0; border-width: 0 .4rem .4rem; border-bottom-color: #1f2d3d } .bs-tooltip-auto[x-placement^=left], .bs-tooltip-left { padding: 0 .4rem } .bs-tooltip-auto[x-placement^=left] .arrow, .bs-tooltip-left .arrow { right: 0; width: .4rem; height: .8rem } .bs-tooltip-auto[x-placement^=left] .arrow:before, .bs-tooltip-left .arrow:before { left: 0; border-width: .4rem 0 .4rem .4rem; border-left-color: #1f2d3d } .tooltip-inner { max-width: 200px; padding: .25rem .5rem; color: #fff; text-align: center; background-color: #1f2d3d; border-radius: .25rem } .popover { top: 0; left: 0; z-index: 1060; max-width: 276px; font-family: Nunito, sans-serif; font-style: normal; font-weight: 400; line-height: 1.7; text-align: left; text-align: start; text-decoration: none; text-shadow: none; text-transform: none; letter-spacing: normal; word-break: normal; word-spacing: normal; white-space: normal; line-break: auto; font-size: .875rem; word-wrap: break-word; background-color: #fff; background-clip: padding-box; border: 1px solid rgba(31, 45, 61, .05); border-radius: .375rem; -webkit-box-shadow: 0 .5rem 2rem 0 rgba(31, 45, 61, .2); box-shadow: 0 .5rem 2rem 0 rgba(31, 45, 61, .2) } .popover, .popover .arrow { position: absolute; display: block } .popover .arrow { width: 1rem; height: .5rem; margin: 0 .375rem } .popover .arrow:after, .popover .arrow:before { position: absolute; display: block; content: ""; border-color: transparent; border-style: solid } .bs-popover-auto[x-placement^=top], .bs-popover-top { margin-bottom: .5rem } .bs-popover-auto[x-placement^=top]>.arrow, .bs-popover-top>.arrow { bottom: calc(-.5rem + -1px) } .bs-popover-auto[x-placement^=top]>.arrow:before, .bs-popover-top>.arrow:before { bottom: 0; border-width: .5rem .5rem 0; border-top-color: transparent } .bs-popover-auto[x-placement^=top]>.arrow:after, .bs-popover-top>.arrow:after { bottom: 1px; border-width: .5rem .5rem 0; border-top-color: #fff } .bs-popover-auto[x-placement^=right], .bs-popover-right { margin-left: .5rem } .bs-popover-auto[x-placement^=right]>.arrow, .bs-popover-right>.arrow { left: calc(-.5rem + -1px); width: .5rem; height: 1rem; margin: .375rem 0 } .bs-popover-auto[x-placement^=right]>.arrow:before, .bs-popover-right>.arrow:before { left: 0; border-width: .5rem .5rem .5rem 0; border-right-color: transparent } .bs-popover-auto[x-placement^=right]>.arrow:after, .bs-popover-right>.arrow:after { left: 1px; border-width: .5rem .5rem .5rem 0; border-right-color: #fff } .bs-popover-auto[x-placement^=bottom], .bs-popover-bottom { margin-top: .5rem } .bs-popover-auto[x-placement^=bottom]>.arrow, .bs-popover-bottom>.arrow { top: calc(-.5rem + -1px) } .bs-popover-auto[x-placement^=bottom]>.arrow:before, .bs-popover-bottom>.arrow:before { top: 0; border-width: 0 .5rem .5rem; border-bottom-color: transparent } .bs-popover-auto[x-placement^=bottom]>.arrow:after, .bs-popover-bottom>.arrow:after { top: 1px; border-width: 0 .5rem .5rem; border-bottom-color: #fff } .bs-popover-auto[x-placement^=bottom] .popover-header:before, .bs-popover-bottom .popover-header:before { position: absolute; top: 0; left: 50%; display: block; width: 1rem; margin-left: -.5rem; content: ""; border-bottom: 1px solid #fff } .bs-popover-auto[x-placement^=left], .bs-popover-left { margin-right: .5rem } .bs-popover-auto[x-placement^=left]>.arrow, .bs-popover-left>.arrow { right: calc(-.5rem + -1px); width: .5rem; height: 1rem; margin: .375rem 0 } .bs-popover-auto[x-placement^=left]>.arrow:before, .bs-popover-left>.arrow:before { right: 0; border-width: .5rem 0 .5rem .5rem; border-left-color: transparent } .bs-popover-auto[x-placement^=left]>.arrow:after, .bs-popover-left>.arrow:after { right: 1px; border-width: .5rem 0 .5rem .5rem; border-left-color: #fff } .popover-header { padding: .75rem; margin-bottom: 0; font-size: 1rem; color: #3c4858; background-color: #fff; border-bottom: 1px solid #f2f2f2; border-top-left-radius: calc(.375rem - 1px); border-top-right-radius: calc(.375rem - 1px) } .popover-header:empty { display: none } .popover-body { padding: .75rem; color: #8492a6 } .carousel { position: relative } .carousel.pointer-event { -ms-touch-action: pan-y; touch-action: pan-y } .carousel-inner { position: relative; width: 100%; overflow: hidden } .carousel-inner:after { display: block; clear: both; content: "" } .carousel-item { position: relative; display: none; float: left; width: 100%; margin-right: -100%; -webkit-backface-visibility: hidden; backface-visibility: hidden; -webkit-transition: -webkit-transform .6s ease-in-out; transition: -webkit-transform .6s ease-in-out; -o-transition: transform .6s ease-in-out; transition: transform .6s ease-in-out; transition: transform .6s ease-in-out, -webkit-transform .6s ease-in-out } @media (prefers-reduced-motion:reduce) { .carousel-item { -webkit-transition: none; -o-transition: none; transition: none } } .carousel-item-next, .carousel-item-prev, .carousel-item.active { display: block } .active.carousel-item-right, .carousel-item-next:not(.carousel-item-left) { -webkit-transform: translateX(100%); -ms-transform: translateX(100%); transform: translateX(100%) } .active.carousel-item-left, .carousel-item-prev:not(.carousel-item-right) { -webkit-transform: translateX(-100%); -ms-transform: translateX(-100%); transform: translateX(-100%) } .carousel-fade .carousel-item { opacity: 0; -webkit-transition-property: opacity; -o-transition-property: opacity; transition-property: opacity; -webkit-transform: none; -ms-transform: none; transform: none } .carousel-fade .carousel-item-next.carousel-item-left, .carousel-fade .carousel-item-prev.carousel-item-right, .carousel-fade .carousel-item.active { z-index: 1; opacity: 1 } .carousel-fade .active.carousel-item-left, .carousel-fade .active.carousel-item-right { z-index: 0; opacity: 0; -webkit-transition: opacity 0s .6s; -o-transition: 0s .6s opacity; transition: opacity 0s .6s } @media (prefers-reduced-motion:reduce) { .carousel-fade .active.carousel-item-left, .carousel-fade .active.carousel-item-right { -webkit-transition: none; -o-transition: none; transition: none } } .carousel-control-next, .carousel-control-prev { position: absolute; top: 0; bottom: 0; z-index: 1; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; width: 15%; color: #fff; text-align: center; opacity: .5; -webkit-transition: opacity .15s ease; -o-transition: opacity .15s ease; transition: opacity .15s ease } @media (prefers-reduced-motion:reduce) { .carousel-control-next, .carousel-control-prev { -webkit-transition: none; -o-transition: none; transition: none } } .carousel-control-next:focus, .carousel-control-next:hover, .carousel-control-prev:focus, .carousel-control-prev:hover { color: #fff; text-decoration: none; outline: 0; opacity: .9 } .carousel-control-prev { left: 0 } .carousel-control-next { right: 0 } .carousel-control-next-icon, .carousel-control-prev-icon { display: inline-block; width: 20px; height: 20px; background: no-repeat 50%/100% 100% } .carousel-control-prev-icon { background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23FFF' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3E%3C/svg%3E") } .carousel-control-next-icon { background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23FFF' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3E%3C/svg%3E") } .carousel-indicators { position: absolute; right: 0; bottom: 0; left: 0; z-index: 15; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; padding-left: 0; margin-right: 15%; margin-left: 15%; list-style: none } .carousel-indicators li { -webkit-box-sizing: content-box; box-sizing: content-box; -webkit-box-flex: 0; -ms-flex: 0 1 auto; flex: 0 1 auto; width: 30px; height: 3px; margin-right: 3px; margin-left: 3px; text-indent: -999px; cursor: pointer; background-color: #fff; background-clip: padding-box; border-top: 10px solid transparent; border-bottom: 10px solid transparent; opacity: .5; -webkit-transition: opacity .6s ease; -o-transition: opacity .6s ease; transition: opacity .6s ease } @media (prefers-reduced-motion:reduce) { .carousel-indicators li { -webkit-transition: none; -o-transition: none; transition: none } } .carousel-indicators .active { opacity: 1 } .carousel-caption { position: absolute; right: 15%; bottom: 20px; left: 15%; z-index: 10; padding-top: 20px; padding-bottom: 20px; color: #fff; text-align: center } @-webkit-keyframes spinner-border { to { -webkit-transform: rotate(1turn); transform: rotate(1turn) } } @keyframes spinner-border { to { -webkit-transform: rotate(1turn); transform: rotate(1turn) } } .spinner-border { display: inline-block; width: 2rem; height: 2rem; vertical-align: text-bottom; border: .25em solid; border-right: .25em solid transparent; border-radius: 50%; -webkit-animation: spinner-border .75s linear infinite; animation: spinner-border .75s linear infinite } .spinner-border-sm { width: 1rem; height: 1rem; border-width: .2em } @-webkit-keyframes spinner-grow { 0% { -webkit-transform: scale(0); transform: scale(0) } 50% { opacity: 1 } } @keyframes spinner-grow { 0% { -webkit-transform: scale(0); transform: scale(0) } 50% { opacity: 1 } } .spinner-grow { display: inline-block; width: 2rem; height: 2rem; vertical-align: text-bottom; background-color: currentColor; border-radius: 50%; opacity: 0; -webkit-animation: spinner-grow .75s linear infinite; animation: spinner-grow .75s linear infinite } .spinner-grow-sm { width: 1rem; height: 1rem } .align-baseline { vertical-align: baseline !important } .align-top { vertical-align: top !important } .align-middle { vertical-align: middle !important } .align-bottom { vertical-align: bottom !important } .align-text-bottom { vertical-align: text-bottom !important } .align-text-top { vertical-align: text-top !important } .bg-primary { background-color: #6fd943 !important } a.bg-primary:focus, a.bg-primary:hover, button.bg-primary:focus, button.bg-primary:hover { background-color: #5800cc !important } .bg-secondary { background-color: #eff2f7 !important } a.bg-secondary:focus, a.bg-secondary:hover, button.bg-secondary:focus, button.bg-secondary:hover { background-color: #cdd6e6 !important } .bg-success { background-color: #36b37e !important } a.bg-success:focus, a.bg-success:hover, button.bg-success:focus, button.bg-success:hover { background-color: #2a8c62 !important } .bg-info { background-color: #00b8d9 !important } a.bg-info:focus, a.bg-info:hover, button.bg-info:focus, button.bg-info:hover { background-color: #008da6 !important } .bg-warning { background-color: #ffab00 !important } a.bg-warning:focus, a.bg-warning:hover, button.bg-warning:focus, button.bg-warning:hover { background-color: #cc8900 !important } .bg-danger { background-color: #ff5630 !important } a.bg-danger:focus, a.bg-danger:hover, button.bg-danger:focus, button.bg-danger:hover { background-color: #fc2e00 !important } .bg-light { background-color: #eff2f7 !important } a.bg-light:focus, a.bg-light:hover, button.bg-light:focus, button.bg-light:hover { background-color: #cdd6e6 !important } .bg-dark { background-color: #273444 !important } a.bg-dark:focus, a.bg-dark:hover, button.bg-dark:focus, button.bg-dark:hover { background-color: #141b24 !important } .bg-neutral { background-color: #fff !important } a.bg-neutral:focus, a.bg-neutral:hover, a.bg-white:focus, a.bg-white:hover, button.bg-neutral:focus, button.bg-neutral:hover, button.bg-white:focus, button.bg-white:hover { background-color: #e6e6e6 !important } .bg-white { background-color: #fff !important } .bg-transparent { background-color: transparent !important } .border { border: 1px solid #eff2f7 !important } .border-top { border-top: 1px solid #eff2f7 !important } .border-right { border-right: 1px solid #eff2f7 !important } .border-bottom { border-bottom: 1px solid #eff2f7 !important } .border-left { border-left: 1px solid #eff2f7 !important } .border-0 { border: 0 !important } .border-top-0 { border-top: 0 !important } .border-right-0 { border-right: 0 !important } .border-bottom-0 { border-bottom: 0 !important } .border-left-0 { border-left: 0 !important } .border-primary { border-color: #6e00ff !important } .border-secondary { border-color: #eff2f7 !important } .border-success { border-color: #36b37e !important } .border-info { border-color: #00b8d9 !important } .border-warning { border-color: #ffab00 !important } .border-danger { border-color: #ff5630 !important } .border-light { border-color: #eff2f7 !important } .border-dark { border-color: #273444 !important } .border-neutral, .border-white { border-color: #fff !important } .rounded-sm { border-radius: .2rem !important } .rounded { border-radius: .25rem !important } .rounded-top { border-top-left-radius: .25rem !important } .rounded-right, .rounded-top { border-top-right-radius: .25rem !important } .rounded-bottom, .rounded-right { border-bottom-right-radius: .25rem !important } .rounded-bottom, .rounded-left { border-bottom-left-radius: .25rem !important } .rounded-left { border-top-left-radius: .25rem !important } .rounded-lg { border-radius: .375rem !important } .rounded-circle { border-radius: 50% !important } .rounded-pill { border-radius: 50rem !important } .rounded-0 { border-radius: 0 !important } .clearfix:after { display: block; clear: both; content: "" } .d-none { display: none !important } .d-inline { display: inline !important } .d-inline-block { display: inline-block !important } .d-block { display: block !important } .d-table { display: table !important } .d-table-row { display: table-row !important } .d-table-cell { display: table-cell !important } .d-flex { display: -webkit-box !important; display: -ms-flexbox !important; display: flex !important } .d-inline-flex { display: -webkit-inline-box !important; display: -ms-inline-flexbox !important; display: inline-flex !important } @media (min-width:576px) { .d-sm-none { display: none !important } .d-sm-inline { display: inline !important } .d-sm-inline-block { display: inline-block !important } .d-sm-block { display: block !important } .d-sm-table { display: table !important } .d-sm-table-row { display: table-row !important } .d-sm-table-cell { display: table-cell !important } .d-sm-flex { display: -webkit-box !important; display: -ms-flexbox !important; display: flex !important } .d-sm-inline-flex { display: -webkit-inline-box !important; display: -ms-inline-flexbox !important; display: inline-flex !important } } @media (min-width:768px) { .d-md-none { display: none !important } .d-md-inline { display: inline !important } .d-md-inline-block { display: inline-block !important } .d-md-block { display: block !important } .d-md-table { display: table !important } .d-md-table-row { display: table-row !important } .d-md-table-cell { display: table-cell !important } .d-md-flex { display: -webkit-box !important; display: -ms-flexbox !important; display: flex !important } .d-md-inline-flex { display: -webkit-inline-box !important; display: -ms-inline-flexbox !important; display: inline-flex !important } } @media (min-width:992px) { .d-lg-none { display: none !important } .d-lg-inline { display: inline !important } .d-lg-inline-block { display: inline-block !important } .d-lg-block { display: block !important } .d-lg-table { display: table !important } .d-lg-table-row { display: table-row !important } .d-lg-table-cell { display: table-cell !important } .d-lg-flex { display: -webkit-box !important; display: -ms-flexbox !important; display: flex !important } .d-lg-inline-flex { display: -webkit-inline-box !important; display: -ms-inline-flexbox !important; display: inline-flex !important } } @media (min-width:1200px) { .d-xl-none { display: none !important } .d-xl-inline { display: inline !important } .d-xl-inline-block { display: inline-block !important } .d-xl-block { display: block !important } .d-xl-table { display: table !important } .d-xl-table-row { display: table-row !important } .d-xl-table-cell { display: table-cell !important } .d-xl-flex { display: -webkit-box !important; display: -ms-flexbox !important; display: flex !important } .d-xl-inline-flex { display: -webkit-inline-box !important; display: -ms-inline-flexbox !important; display: inline-flex !important } } @media print { .d-print-none { display: none !important } .d-print-inline { display: inline !important } .d-print-inline-block { display: inline-block !important } .d-print-block { display: block !important } .d-print-table { display: table !important } .d-print-table-row { display: table-row !important } .d-print-table-cell { display: table-cell !important } .d-print-flex { display: -webkit-box !important; display: -ms-flexbox !important; display: flex !important } .d-print-inline-flex { display: -webkit-inline-box !important; display: -ms-inline-flexbox !important; display: inline-flex !important } } .embed-responsive { position: relative; display: block; width: 100%; padding: 0; overflow: hidden } .embed-responsive:before { display: block; content: "" } .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-21by9:before { padding-top: 42.8571428571% } .embed-responsive-16by9:before { padding-top: 56.25% } .embed-responsive-4by3:before { padding-top: 75% } .embed-responsive-1by1:before { padding-top: 100% } .flex-row { -webkit-box-orient: horizontal !important; -ms-flex-direction: row !important; flex-direction: row !important } .flex-column, .flex-row { -webkit-box-direction: normal !important } .flex-column { -webkit-box-orient: vertical !important; -ms-flex-direction: column !important; flex-direction: column !important } .flex-row-reverse { -webkit-box-orient: horizontal !important; -ms-flex-direction: row-reverse !important; flex-direction: row-reverse !important } .flex-column-reverse, .flex-row-reverse { -webkit-box-direction: reverse !important } .flex-column-reverse { -webkit-box-orient: vertical !important; -ms-flex-direction: column-reverse !important; flex-direction: column-reverse !important } .flex-wrap { -ms-flex-wrap: wrap !important; flex-wrap: wrap !important } .flex-nowrap { -ms-flex-wrap: nowrap !important; flex-wrap: nowrap !important } .flex-wrap-reverse { -ms-flex-wrap: wrap-reverse !important; flex-wrap: wrap-reverse !important } .flex-fill { -webkit-box-flex: 1 !important; -ms-flex: 1 1 auto !important; flex: 1 1 auto !important } .flex-grow-0 { -webkit-box-flex: 0 !important; -ms-flex-positive: 0 !important; flex-grow: 0 !important } .flex-grow-1 { -webkit-box-flex: 1 !important; -ms-flex-positive: 1 !important; flex-grow: 1 !important } .flex-shrink-0 { -ms-flex-negative: 0 !important; flex-shrink: 0 !important } .flex-shrink-1 { -ms-flex-negative: 1 !important; flex-shrink: 1 !important } .justify-content-start { -webkit-box-pack: start !important; -ms-flex-pack: start !important; justify-content: flex-start !important } .justify-content-end { -webkit-box-pack: end !important; -ms-flex-pack: end !important; justify-content: flex-end !important } .justify-content-center { -webkit-box-pack: center !important; -ms-flex-pack: center !important; justify-content: center !important } .justify-content-between { -webkit-box-pack: justify !important; -ms-flex-pack: justify !important; justify-content: space-between !important } .justify-content-around { -ms-flex-pack: distribute !important; justify-content: space-around !important } .align-items-start { -webkit-box-align: start !important; -ms-flex-align: start !important; align-items: flex-start !important } .align-items-end { -webkit-box-align: end !important; -ms-flex-align: end !important; align-items: flex-end !important } .align-items-center { -webkit-box-align: center !important; -ms-flex-align: center !important; align-items: center !important } .align-items-baseline { -webkit-box-align: baseline !important; -ms-flex-align: baseline !important; align-items: baseline !important } .align-items-stretch { -webkit-box-align: stretch !important; -ms-flex-align: stretch !important; align-items: stretch !important } .align-content-start { -ms-flex-line-pack: start !important; align-content: flex-start !important } .align-content-end { -ms-flex-line-pack: end !important; align-content: flex-end !important } .align-content-center { -ms-flex-line-pack: center !important; align-content: center !important } .align-content-between { -ms-flex-line-pack: justify !important; align-content: space-between !important } .align-content-around { -ms-flex-line-pack: distribute !important; align-content: space-around !important } .align-content-stretch { -ms-flex-line-pack: stretch !important; align-content: stretch !important } .align-self-auto { -ms-flex-item-align: auto !important; align-self: auto !important } .align-self-start { -ms-flex-item-align: start !important; align-self: flex-start !important } .align-self-end { -ms-flex-item-align: end !important; align-self: flex-end !important } .align-self-center { -ms-flex-item-align: center !important; align-self: center !important } .align-self-baseline { -ms-flex-item-align: baseline !important; align-self: baseline !important } .align-self-stretch { -ms-flex-item-align: stretch !important; align-self: stretch !important } @media (min-width:576px) { .flex-sm-row { -webkit-box-orient: horizontal !important; -ms-flex-direction: row !important; flex-direction: row !important } .flex-sm-column, .flex-sm-row { -webkit-box-direction: normal !important } .flex-sm-column { -webkit-box-orient: vertical !important; -ms-flex-direction: column !important; flex-direction: column !important } .flex-sm-row-reverse { -webkit-box-orient: horizontal !important; -webkit-box-direction: reverse !important; -ms-flex-direction: row-reverse !important; flex-direction: row-reverse !important } .flex-sm-column-reverse { -webkit-box-orient: vertical !important; -webkit-box-direction: reverse !important; -ms-flex-direction: column-reverse !important; flex-direction: column-reverse !important } .flex-sm-wrap { -ms-flex-wrap: wrap !important; flex-wrap: wrap !important } .flex-sm-nowrap { -ms-flex-wrap: nowrap !important; flex-wrap: nowrap !important } .flex-sm-wrap-reverse { -ms-flex-wrap: wrap-reverse !important; flex-wrap: wrap-reverse !important } .flex-sm-fill { -webkit-box-flex: 1 !important; -ms-flex: 1 1 auto !important; flex: 1 1 auto !important } .flex-sm-grow-0 { -webkit-box-flex: 0 !important; -ms-flex-positive: 0 !important; flex-grow: 0 !important } .flex-sm-grow-1 { -webkit-box-flex: 1 !important; -ms-flex-positive: 1 !important; flex-grow: 1 !important } .flex-sm-shrink-0 { -ms-flex-negative: 0 !important; flex-shrink: 0 !important } .flex-sm-shrink-1 { -ms-flex-negative: 1 !important; flex-shrink: 1 !important } .justify-content-sm-start { -webkit-box-pack: start !important; -ms-flex-pack: start !important; justify-content: flex-start !important } .justify-content-sm-end { -webkit-box-pack: end !important; -ms-flex-pack: end !important; justify-content: flex-end !important } .justify-content-sm-center { -webkit-box-pack: center !important; -ms-flex-pack: center !important; justify-content: center !important } .justify-content-sm-between { -webkit-box-pack: justify !important; -ms-flex-pack: justify !important; justify-content: space-between !important } .justify-content-sm-around { -ms-flex-pack: distribute !important; justify-content: space-around !important } .align-items-sm-start { -webkit-box-align: start !important; -ms-flex-align: start !important; align-items: flex-start !important } .align-items-sm-end { -webkit-box-align: end !important; -ms-flex-align: end !important; align-items: flex-end !important } .align-items-sm-center { -webkit-box-align: center !important; -ms-flex-align: center !important; align-items: center !important } .align-items-sm-baseline { -webkit-box-align: baseline !important; -ms-flex-align: baseline !important; align-items: baseline !important } .align-items-sm-stretch { -webkit-box-align: stretch !important; -ms-flex-align: stretch !important; align-items: stretch !important } .align-content-sm-start { -ms-flex-line-pack: start !important; align-content: flex-start !important } .align-content-sm-end { -ms-flex-line-pack: end !important; align-content: flex-end !important } .align-content-sm-center { -ms-flex-line-pack: center !important; align-content: center !important } .align-content-sm-between { -ms-flex-line-pack: justify !important; align-content: space-between !important } .align-content-sm-around { -ms-flex-line-pack: distribute !important; align-content: space-around !important } .align-content-sm-stretch { -ms-flex-line-pack: stretch !important; align-content: stretch !important } .align-self-sm-auto { -ms-flex-item-align: auto !important; align-self: auto !important } .align-self-sm-start { -ms-flex-item-align: start !important; align-self: flex-start !important } .align-self-sm-end { -ms-flex-item-align: end !important; align-self: flex-end !important } .align-self-sm-center { -ms-flex-item-align: center !important; align-self: center !important } .align-self-sm-baseline { -ms-flex-item-align: baseline !important; align-self: baseline !important } .align-self-sm-stretch { -ms-flex-item-align: stretch !important; align-self: stretch !important } } @media (min-width:768px) { .flex-md-row { -webkit-box-orient: horizontal !important; -ms-flex-direction: row !important; flex-direction: row !important } .flex-md-column, .flex-md-row { -webkit-box-direction: normal !important } .flex-md-column { -webkit-box-orient: vertical !important; -ms-flex-direction: column !important; flex-direction: column !important } .flex-md-row-reverse { -webkit-box-orient: horizontal !important; -webkit-box-direction: reverse !important; -ms-flex-direction: row-reverse !important; flex-direction: row-reverse !important } .flex-md-column-reverse { -webkit-box-orient: vertical !important; -webkit-box-direction: reverse !important; -ms-flex-direction: column-reverse !important; flex-direction: column-reverse !important } .flex-md-wrap { -ms-flex-wrap: wrap !important; flex-wrap: wrap !important } .flex-md-nowrap { -ms-flex-wrap: nowrap !important; flex-wrap: nowrap !important } .flex-md-wrap-reverse { -ms-flex-wrap: wrap-reverse !important; flex-wrap: wrap-reverse !important } .flex-md-fill { -webkit-box-flex: 1 !important; -ms-flex: 1 1 auto !important; flex: 1 1 auto !important } .flex-md-grow-0 { -webkit-box-flex: 0 !important; -ms-flex-positive: 0 !important; flex-grow: 0 !important } .flex-md-grow-1 { -webkit-box-flex: 1 !important; -ms-flex-positive: 1 !important; flex-grow: 1 !important } .flex-md-shrink-0 { -ms-flex-negative: 0 !important; flex-shrink: 0 !important } .flex-md-shrink-1 { -ms-flex-negative: 1 !important; flex-shrink: 1 !important } .justify-content-md-start { -webkit-box-pack: start !important; -ms-flex-pack: start !important; justify-content: flex-start !important } .justify-content-md-end { -webkit-box-pack: end !important; -ms-flex-pack: end !important; justify-content: flex-end !important } .justify-content-md-center { -webkit-box-pack: center !important; -ms-flex-pack: center !important; justify-content: center !important } .justify-content-md-between { -webkit-box-pack: justify !important; -ms-flex-pack: justify !important; justify-content: space-between !important } .justify-content-md-around { -ms-flex-pack: distribute !important; justify-content: space-around !important } .align-items-md-start { -webkit-box-align: start !important; -ms-flex-align: start !important; align-items: flex-start !important } .align-items-md-end { -webkit-box-align: end !important; -ms-flex-align: end !important; align-items: flex-end !important } .align-items-md-center { -webkit-box-align: center !important; -ms-flex-align: center !important; align-items: center !important } .align-items-md-baseline { -webkit-box-align: baseline !important; -ms-flex-align: baseline !important; align-items: baseline !important } .align-items-md-stretch { -webkit-box-align: stretch !important; -ms-flex-align: stretch !important; align-items: stretch !important } .align-content-md-start { -ms-flex-line-pack: start !important; align-content: flex-start !important } .align-content-md-end { -ms-flex-line-pack: end !important; align-content: flex-end !important } .align-content-md-center { -ms-flex-line-pack: center !important; align-content: center !important } .align-content-md-between { -ms-flex-line-pack: justify !important; align-content: space-between !important } .align-content-md-around { -ms-flex-line-pack: distribute !important; align-content: space-around !important } .align-content-md-stretch { -ms-flex-line-pack: stretch !important; align-content: stretch !important } .align-self-md-auto { -ms-flex-item-align: auto !important; align-self: auto !important } .align-self-md-start { -ms-flex-item-align: start !important; align-self: flex-start !important } .align-self-md-end { -ms-flex-item-align: end !important; align-self: flex-end !important } .align-self-md-center { -ms-flex-item-align: center !important; align-self: center !important } .align-self-md-baseline { -ms-flex-item-align: baseline !important; align-self: baseline !important } .align-self-md-stretch { -ms-flex-item-align: stretch !important; align-self: stretch !important } } @media (min-width:992px) { .flex-lg-row { -webkit-box-orient: horizontal !important; -ms-flex-direction: row !important; flex-direction: row !important } .flex-lg-column, .flex-lg-row { -webkit-box-direction: normal !important } .flex-lg-column { -webkit-box-orient: vertical !important; -ms-flex-direction: column !important; flex-direction: column !important } .flex-lg-row-reverse { -webkit-box-orient: horizontal !important; -webkit-box-direction: reverse !important; -ms-flex-direction: row-reverse !important; flex-direction: row-reverse !important } .flex-lg-column-reverse { -webkit-box-orient: vertical !important; -webkit-box-direction: reverse !important; -ms-flex-direction: column-reverse !important; flex-direction: column-reverse !important } .flex-lg-wrap { -ms-flex-wrap: wrap !important; flex-wrap: wrap !important } .flex-lg-nowrap { -ms-flex-wrap: nowrap !important; flex-wrap: nowrap !important } .flex-lg-wrap-reverse { -ms-flex-wrap: wrap-reverse !important; flex-wrap: wrap-reverse !important } .flex-lg-fill { -webkit-box-flex: 1 !important; -ms-flex: 1 1 auto !important; flex: 1 1 auto !important } .flex-lg-grow-0 { -webkit-box-flex: 0 !important; -ms-flex-positive: 0 !important; flex-grow: 0 !important } .flex-lg-grow-1 { -webkit-box-flex: 1 !important; -ms-flex-positive: 1 !important; flex-grow: 1 !important } .flex-lg-shrink-0 { -ms-flex-negative: 0 !important; flex-shrink: 0 !important } .flex-lg-shrink-1 { -ms-flex-negative: 1 !important; flex-shrink: 1 !important } .justify-content-lg-start { -webkit-box-pack: start !important; -ms-flex-pack: start !important; justify-content: flex-start !important } .justify-content-lg-end { -webkit-box-pack: end !important; -ms-flex-pack: end !important; justify-content: flex-end !important } .justify-content-lg-center { -webkit-box-pack: center !important; -ms-flex-pack: center !important; justify-content: center !important } .justify-content-lg-between { -webkit-box-pack: justify !important; -ms-flex-pack: justify !important; justify-content: space-between !important } .justify-content-lg-around { -ms-flex-pack: distribute !important; justify-content: space-around !important } .align-items-lg-start { -webkit-box-align: start !important; -ms-flex-align: start !important; align-items: flex-start !important } .align-items-lg-end { -webkit-box-align: end !important; -ms-flex-align: end !important; align-items: flex-end !important } .align-items-lg-center { -webkit-box-align: center !important; -ms-flex-align: center !important; align-items: center !important } .align-items-lg-baseline { -webkit-box-align: baseline !important; -ms-flex-align: baseline !important; align-items: baseline !important } .align-items-lg-stretch { -webkit-box-align: stretch !important; -ms-flex-align: stretch !important; align-items: stretch !important } .align-content-lg-start { -ms-flex-line-pack: start !important; align-content: flex-start !important } .align-content-lg-end { -ms-flex-line-pack: end !important; align-content: flex-end !important } .align-content-lg-center { -ms-flex-line-pack: center !important; align-content: center !important } .align-content-lg-between { -ms-flex-line-pack: justify !important; align-content: space-between !important } .align-content-lg-around { -ms-flex-line-pack: distribute !important; align-content: space-around !important } .align-content-lg-stretch { -ms-flex-line-pack: stretch !important; align-content: stretch !important } .align-self-lg-auto { -ms-flex-item-align: auto !important; align-self: auto !important } .align-self-lg-start { -ms-flex-item-align: start !important; align-self: flex-start !important } .align-self-lg-end { -ms-flex-item-align: end !important; align-self: flex-end !important } .align-self-lg-center { -ms-flex-item-align: center !important; align-self: center !important } .align-self-lg-baseline { -ms-flex-item-align: baseline !important; align-self: baseline !important } .align-self-lg-stretch { -ms-flex-item-align: stretch !important; align-self: stretch !important } } @media (min-width:1200px) { .flex-xl-row { -webkit-box-orient: horizontal !important; -ms-flex-direction: row !important; flex-direction: row !important } .flex-xl-column, .flex-xl-row { -webkit-box-direction: normal !important } .flex-xl-column { -webkit-box-orient: vertical !important; -ms-flex-direction: column !important; flex-direction: column !important } .flex-xl-row-reverse { -webkit-box-orient: horizontal !important; -webkit-box-direction: reverse !important; -ms-flex-direction: row-reverse !important; flex-direction: row-reverse !important } .flex-xl-column-reverse { -webkit-box-orient: vertical !important; -webkit-box-direction: reverse !important; -ms-flex-direction: column-reverse !important; flex-direction: column-reverse !important } .flex-xl-wrap { -ms-flex-wrap: wrap !important; flex-wrap: wrap !important } .flex-xl-nowrap { -ms-flex-wrap: nowrap !important; flex-wrap: nowrap !important } .flex-xl-wrap-reverse { -ms-flex-wrap: wrap-reverse !important; flex-wrap: wrap-reverse !important } .flex-xl-fill { -webkit-box-flex: 1 !important; -ms-flex: 1 1 auto !important; flex: 1 1 auto !important } .flex-xl-grow-0 { -webkit-box-flex: 0 !important; -ms-flex-positive: 0 !important; flex-grow: 0 !important } .flex-xl-grow-1 { -webkit-box-flex: 1 !important; -ms-flex-positive: 1 !important; flex-grow: 1 !important } .flex-xl-shrink-0 { -ms-flex-negative: 0 !important; flex-shrink: 0 !important } .flex-xl-shrink-1 { -ms-flex-negative: 1 !important; flex-shrink: 1 !important } .justify-content-xl-start { -webkit-box-pack: start !important; -ms-flex-pack: start !important; justify-content: flex-start !important } .justify-content-xl-end { -webkit-box-pack: end !important; -ms-flex-pack: end !important; justify-content: flex-end !important } .justify-content-xl-center { -webkit-box-pack: center !important; -ms-flex-pack: center !important; justify-content: center !important } .justify-content-xl-between { -webkit-box-pack: justify !important; -ms-flex-pack: justify !important; justify-content: space-between !important } .justify-content-xl-around { -ms-flex-pack: distribute !important; justify-content: space-around !important } .align-items-xl-start { -webkit-box-align: start !important; -ms-flex-align: start !important; align-items: flex-start !important } .align-items-xl-end { -webkit-box-align: end !important; -ms-flex-align: end !important; align-items: flex-end !important } .align-items-xl-center { -webkit-box-align: center !important; -ms-flex-align: center !important; align-items: center !important } .align-items-xl-baseline { -webkit-box-align: baseline !important; -ms-flex-align: baseline !important; align-items: baseline !important } .align-items-xl-stretch { -webkit-box-align: stretch !important; -ms-flex-align: stretch !important; align-items: stretch !important } .align-content-xl-start { -ms-flex-line-pack: start !important; align-content: flex-start !important } .align-content-xl-end { -ms-flex-line-pack: end !important; align-content: flex-end !important } .align-content-xl-center { -ms-flex-line-pack: center !important; align-content: center !important } .align-content-xl-between { -ms-flex-line-pack: justify !important; align-content: space-between !important } .align-content-xl-around { -ms-flex-line-pack: distribute !important; align-content: space-around !important } .align-content-xl-stretch { -ms-flex-line-pack: stretch !important; align-content: stretch !important } .align-self-xl-auto { -ms-flex-item-align: auto !important; align-self: auto !important } .align-self-xl-start { -ms-flex-item-align: start !important; align-self: flex-start !important } .align-self-xl-end { -ms-flex-item-align: end !important; align-self: flex-end !important } .align-self-xl-center { -ms-flex-item-align: center !important; align-self: center !important } .align-self-xl-baseline { -ms-flex-item-align: baseline !important; align-self: baseline !important } .align-self-xl-stretch { -ms-flex-item-align: stretch !important; align-self: stretch !important } } .float-left { float: left !important } .float-right { float: right !important } .float-none { float: none !important } @media (min-width:576px) { .float-sm-left { float: left !important } .float-sm-right { float: right !important } .float-sm-none { float: none !important } } @media (min-width:768px) { .float-md-left { float: left !important } .float-md-right { float: right !important } .float-md-none { float: none !important } } @media (min-width:992px) { .float-lg-left { float: left !important } .float-lg-right { float: right !important } .float-lg-none { float: none !important } } @media (min-width:1200px) { .float-xl-left { float: left !important } .float-xl-right { float: right !important } .float-xl-none { float: none !important } } .overflow-auto { overflow: auto !important } .position-static { position: static !important } .position-relative { position: relative !important } .position-absolute { position: absolute !important } .position-fixed { position: fixed !important } .position-sticky { position: -webkit-sticky !important; position: sticky !important } .fixed-top { top: 0 } .fixed-bottom, .fixed-top { position: fixed; right: 0; left: 0; z-index: 1030 } .fixed-bottom { bottom: 0 } @supports ((position:-webkit-sticky) or (position:sticky)) { .sticky-top { position: -webkit-sticky; position: sticky; top: 0; z-index: 1020 } } .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0 } .sr-only-focusable:active, .sr-only-focusable:focus { position: static; width: auto; height: auto; overflow: visible; clip: auto; white-space: normal } .shadow-sm { -webkit-box-shadow: 0 .125rem .25rem rgba(31, 45, 61, .08) !important; box-shadow: 0 .125rem .25rem rgba(31, 45, 61, .08) !important } .shadow { -webkit-box-shadow: 0 0 1.25rem rgba(31, 45, 61, .08) !important; box-shadow: 0 0 1.25rem rgba(31, 45, 61, .08) !important } .shadow-lg { -webkit-box-shadow: 0 1rem 3rem rgba(31, 45, 61, .125) !important; box-shadow: 0 1rem 3rem rgba(31, 45, 61, .125) !important } .shadow-none { -webkit-box-shadow: none !important; box-shadow: none !important } .w-25 { width: 25% !important } .w-50 { width: 50% !important } .w-75 { width: 75% !important } .w-100 { width: 100% !important } .w-auto { width: auto !important } .w-10 { width: 10% !important } .w-15 { width: 15% !important } .h-25 { height: 25% !important } .h-50 { height: 50% !important } .h-75 { height: 75% !important } .h-100 { height: 100% !important } .h-auto { height: auto !important } .h-10 { height: 10% !important } .h-15 { height: 15% !important } .mw-100 { max-width: 100% !important } .mh-100 { max-height: 100% !important } .min-vw-100 { min-width: 100vw !important } .min-vh-100 { min-height: 100vh !important } .vw-100 { width: 100vw !important } .vh-100 { height: 100vh !important } .stretched-link:after { position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 1; pointer-events: auto; content: ""; background-color: transparent } .m-0 { margin: 0 !important } .mt-0, .my-0 { margin-top: 0 !important } .mr-0, .mx-0 { margin-right: 0 !important } .mb-0, .my-0 { margin-bottom: 0 !important } .ml-0, .mx-0 { margin-left: 0 !important } .m-1 { margin: .25rem !important } .mt-1, .my-1 { margin-top: .25rem !important } .mr-1, .mx-1 { margin-right: .25rem !important } .mb-1, .my-1 { margin-bottom: .25rem !important } .ml-1, .mx-1 { margin-left: .25rem !important } .m-2 { margin: .5rem !important } .mt-2, .my-2 { margin-top: .5rem !important } .mr-2, .mx-2 { margin-right: .5rem !important } .mb-2, .my-2 { margin-bottom: .5rem !important } .ml-2, .mx-2 { margin-left: .5rem !important } .m-3 { margin: 1rem !important } .mt-3, .my-3 { margin-top: 1rem !important } .mr-3, .mx-3 { margin-right: 1rem !important } .mb-3, .my-3 { margin-bottom: 1rem !important } .ml-3, .mx-3 { margin-left: 1rem !important } .m-4 { margin: 1.5rem !important } .mt-4, .my-4 { margin-top: 1.5rem !important } .mr-4, .mx-4 { margin-right: 1.5rem !important } .mb-4, .my-4 { margin-bottom: 1.5rem !important } .ml-4, .mx-4 { margin-left: 1.5rem !important } .m-5 { margin: 3rem !important } .mt-5, .my-5 { margin-top: 3rem !important } .mr-5, .mx-5 { margin-right: 3rem !important } .mb-5, .my-5 { margin-bottom: 3rem !important } .ml-5, .mx-5 { margin-left: 3rem !important } .m-6 { margin: 4.5rem !important } .mt-6, .my-6 { margin-top: 4.5rem !important } .mr-6, .mx-6 { margin-right: 4.5rem !important } .mb-6, .my-6 { margin-bottom: 4.5rem !important } .ml-6, .mx-6 { margin-left: 4.5rem !important } .m-7 { margin: 6rem !important } .mt-7, .my-7 { margin-top: 6rem !important } .mr-7, .mx-7 { margin-right: 6rem !important } .mb-7, .my-7 { margin-bottom: 6rem !important } .ml-7, .mx-7 { margin-left: 6rem !important } .m-8 { margin: 7.5rem !important } .mt-8, .my-8 { margin-top: 7.5rem !important } .mr-8, .mx-8 { margin-right: 7.5rem !important } .mb-8, .my-8 { margin-bottom: 7.5rem !important } .ml-8, .mx-8 { margin-left: 7.5rem !important } .m-9 { margin: 9rem !important } .mt-9, .my-9 { margin-top: 9rem !important } .mr-9, .mx-9 { margin-right: 9rem !important } .mb-9, .my-9 { margin-bottom: 9rem !important } .ml-9, .mx-9 { margin-left: 9rem !important } .m-10 { margin: 10.5rem !important } .mt-10, .my-10 { margin-top: 10.5rem !important } .mr-10, .mx-10 { margin-right: 10.5rem !important } .mb-10, .my-10 { margin-bottom: 10.5rem !important } .ml-10, .mx-10 { margin-left: 10.5rem !important } .p-0 { padding: 0 !important } .pt-0, .py-0 { padding-top: 0 !important } .pr-0, .px-0 { padding-right: 0 !important } .pb-0, .py-0 { padding-bottom: 0 !important } .pl-0, .px-0 { padding-left: 0 !important } .p-1 { padding: .25rem !important } .pt-1, .py-1 { padding-top: .25rem !important } .pr-1, .px-1 { padding-right: .25rem !important } .pb-1, .py-1 { padding-bottom: .25rem !important } .pl-1, .px-1 { padding-left: .25rem !important } .p-2 { padding: .5rem !important } .pt-2, .py-2 { padding-top: .5rem !important } .pr-2, .px-2 { padding-right: .5rem !important } .pb-2, .py-2 { padding-bottom: .5rem !important } .pl-2, .px-2 { padding-left: .5rem !important } .p-3 { padding: 1rem !important } .pt-3, .py-3 { padding-top: 1rem !important } .pr-3, .px-3 { padding-right: 1rem !important } .pb-3, .py-3 { padding-bottom: 1rem !important } .pl-3, .px-3 { padding-left: 1rem !important } .p-4 { padding: 1.5rem !important } .pt-4, .py-4 { padding-top: 1.5rem !important } .pr-4, .px-4 { padding-right: 1.5rem !important } .pb-4, .py-4 { padding-bottom: 1.5rem !important } .pl-4, .px-4 { padding-left: 1.5rem !important } .p-5 { padding: 3rem !important } .pt-5, .py-5 { padding-top: 3rem !important } .pr-5, .px-5 { padding-right: 3rem !important } .pb-5, .py-5 { padding-bottom: 3rem !important } .pl-5, .px-5 { padding-left: 3rem !important } .p-6 { padding: 4.5rem !important } .pt-6, .py-6 { padding-top: 4.5rem !important } .pr-6, .px-6 { padding-right: 4.5rem !important } .pb-6, .py-6 { padding-bottom: 4.5rem !important } .pl-6, .px-6 { padding-left: 4.5rem !important } .p-7 { padding: 6rem !important } .pt-7, .py-7 { padding-top: 6rem !important } .pr-7, .px-7 { padding-right: 6rem !important } .pb-7, .py-7 { padding-bottom: 6rem !important } .pl-7, .px-7 { padding-left: 6rem !important } .p-8 { padding: 7.5rem !important } .pt-8, .py-8 { padding-top: 7.5rem !important } .pr-8, .px-8 { padding-right: 7.5rem !important } .pb-8, .py-8 { padding-bottom: 7.5rem !important } .pl-8, .px-8 { padding-left: 7.5rem !important } .p-9 { padding: 9rem !important } .pt-9, .py-9 { padding-top: 9rem !important } .pr-9, .px-9 { padding-right: 9rem !important } .pb-9, .py-9 { padding-bottom: 9rem !important } .pl-9, .px-9 { padding-left: 9rem !important } .p-10 { padding: 10.5rem !important } .pt-10, .py-10 { padding-top: 10.5rem !important } .pr-10, .px-10 { padding-right: 10.5rem !important } .pb-10, .py-10 { padding-bottom: 10.5rem !important } .pl-10, .px-10 { padding-left: 10.5rem !important } .m-n1 { margin: -.25rem !important } .mt-n1, .my-n1 { margin-top: -.25rem !important } .mr-n1, .mx-n1 { margin-right: -.25rem !important } .mb-n1, .my-n1 { margin-bottom: -.25rem !important } .ml-n1, .mx-n1 { margin-left: -.25rem !important } .m-n2 { margin: -.5rem !important } .mt-n2, .my-n2 { margin-top: -.5rem !important } .mr-n2, .mx-n2 { margin-right: -.5rem !important } .mb-n2, .my-n2 { margin-bottom: -.5rem !important } .ml-n2, .mx-n2 { margin-left: -.5rem !important } .m-n3 { margin: -1rem !important } .mt-n3, .my-n3 { margin-top: -1rem !important } .mr-n3, .mx-n3 { margin-right: -1rem !important } .mb-n3, .my-n3 { margin-bottom: -1rem !important } .ml-n3, .mx-n3 { margin-left: -1rem !important } .m-n4 { margin: -1.5rem !important } .mt-n4, .my-n4 { margin-top: -1.5rem !important } .mr-n4, .mx-n4 { margin-right: -1.5rem !important } .mb-n4, .my-n4 { margin-bottom: -1.5rem !important } .ml-n4, .mx-n4 { margin-left: -1.5rem !important } .m-n5 { margin: -3rem !important } .mt-n5, .my-n5 { margin-top: -3rem !important } .mr-n5, .mx-n5 { margin-right: -3rem !important } .mb-n5, .my-n5 { margin-bottom: -3rem !important } .ml-n5, .mx-n5 { margin-left: -3rem !important } .m-n6 { margin: -4.5rem !important } .mt-n6, .my-n6 { margin-top: -4.5rem !important } .mr-n6, .mx-n6 { margin-right: -4.5rem !important } .mb-n6, .my-n6 { margin-bottom: -4.5rem !important } .ml-n6, .mx-n6 { margin-left: -4.5rem !important } .m-n7 { margin: -6rem !important } .mt-n7, .my-n7 { margin-top: -6rem !important } .mr-n7, .mx-n7 { margin-right: -6rem !important } .mb-n7, .my-n7 { margin-bottom: -6rem !important } .ml-n7, .mx-n7 { margin-left: -6rem !important } .m-n8 { margin: -7.5rem !important } .mt-n8, .my-n8 { margin-top: -7.5rem !important } .mr-n8, .mx-n8 { margin-right: -7.5rem !important } .mb-n8, .my-n8 { margin-bottom: -7.5rem !important } .ml-n8, .mx-n8 { margin-left: -7.5rem !important } .m-n9 { margin: -9rem !important } .mt-n9, .my-n9 { margin-top: -9rem !important } .mr-n9, .mx-n9 { margin-right: -9rem !important } .mb-n9, .my-n9 { margin-bottom: -9rem !important } .ml-n9, .mx-n9 { margin-left: -9rem !important } .m-n10 { margin: -10.5rem !important } .mt-n10, .my-n10 { margin-top: -10.5rem !important } .mr-n10, .mx-n10 { margin-right: -10.5rem !important } .mb-n10, .my-n10 { margin-bottom: -10.5rem !important } .ml-n10, .mx-n10 { margin-left: -10.5rem !important } .m-auto { margin: auto !important } .mt-auto, .my-auto { margin-top: auto !important } .mr-auto, .mx-auto { margin-right: auto !important } .mb-auto, .my-auto { margin-bottom: auto !important } .ml-auto, .mx-auto { margin-left: auto !important } @media (min-width:576px) { .m-sm-0 { margin: 0 !important } .mt-sm-0, .my-sm-0 { margin-top: 0 !important } .mr-sm-0, .mx-sm-0 { margin-right: 0 !important } .mb-sm-0, .my-sm-0 { margin-bottom: 0 !important } .ml-sm-0, .mx-sm-0 { margin-left: 0 !important } .m-sm-1 { margin: .25rem !important } .mt-sm-1, .my-sm-1 { margin-top: .25rem !important } .mr-sm-1, .mx-sm-1 { margin-right: .25rem !important } .mb-sm-1, .my-sm-1 { margin-bottom: .25rem !important } .ml-sm-1, .mx-sm-1 { margin-left: .25rem !important } .m-sm-2 { margin: .5rem !important } .mt-sm-2, .my-sm-2 { margin-top: .5rem !important } .mr-sm-2, .mx-sm-2 { margin-right: .5rem !important } .mb-sm-2, .my-sm-2 { margin-bottom: .5rem !important } .ml-sm-2, .mx-sm-2 { margin-left: .5rem !important } .m-sm-3 { margin: 1rem !important } .mt-sm-3, .my-sm-3 { margin-top: 1rem !important } .mr-sm-3, .mx-sm-3 { margin-right: 1rem !important } .mb-sm-3, .my-sm-3 { margin-bottom: 1rem !important } .ml-sm-3, .mx-sm-3 { margin-left: 1rem !important } .m-sm-4 { margin: 1.5rem !important } .mt-sm-4, .my-sm-4 { margin-top: 1.5rem !important } .mr-sm-4, .mx-sm-4 { margin-right: 1.5rem !important } .mb-sm-4, .my-sm-4 { margin-bottom: 1.5rem !important } .ml-sm-4, .mx-sm-4 { margin-left: 1.5rem !important } .m-sm-5 { margin: 3rem !important } .mt-sm-5, .my-sm-5 { margin-top: 3rem !important } .mr-sm-5, .mx-sm-5 { margin-right: 3rem !important } .mb-sm-5, .my-sm-5 { margin-bottom: 3rem !important } .ml-sm-5, .mx-sm-5 { margin-left: 3rem !important } .m-sm-6 { margin: 4.5rem !important } .mt-sm-6, .my-sm-6 { margin-top: 4.5rem !important } .mr-sm-6, .mx-sm-6 { margin-right: 4.5rem !important } .mb-sm-6, .my-sm-6 { margin-bottom: 4.5rem !important } .ml-sm-6, .mx-sm-6 { margin-left: 4.5rem !important } .m-sm-7 { margin: 6rem !important } .mt-sm-7, .my-sm-7 { margin-top: 6rem !important } .mr-sm-7, .mx-sm-7 { margin-right: 6rem !important } .mb-sm-7, .my-sm-7 { margin-bottom: 6rem !important } .ml-sm-7, .mx-sm-7 { margin-left: 6rem !important } .m-sm-8 { margin: 7.5rem !important } .mt-sm-8, .my-sm-8 { margin-top: 7.5rem !important } .mr-sm-8, .mx-sm-8 { margin-right: 7.5rem !important } .mb-sm-8, .my-sm-8 { margin-bottom: 7.5rem !important } .ml-sm-8, .mx-sm-8 { margin-left: 7.5rem !important } .m-sm-9 { margin: 9rem !important } .mt-sm-9, .my-sm-9 { margin-top: 9rem !important } .mr-sm-9, .mx-sm-9 { margin-right: 9rem !important } .mb-sm-9, .my-sm-9 { margin-bottom: 9rem !important } .ml-sm-9, .mx-sm-9 { margin-left: 9rem !important } .m-sm-10 { margin: 10.5rem !important } .mt-sm-10, .my-sm-10 { margin-top: 10.5rem !important } .mr-sm-10, .mx-sm-10 { margin-right: 10.5rem !important } .mb-sm-10, .my-sm-10 { margin-bottom: 10.5rem !important } .ml-sm-10, .mx-sm-10 { margin-left: 10.5rem !important } .p-sm-0 { padding: 0 !important } .pt-sm-0, .py-sm-0 { padding-top: 0 !important } .pr-sm-0, .px-sm-0 { padding-right: 0 !important } .pb-sm-0, .py-sm-0 { padding-bottom: 0 !important } .pl-sm-0, .px-sm-0 { padding-left: 0 !important } .p-sm-1 { padding: .25rem !important } .pt-sm-1, .py-sm-1 { padding-top: .25rem !important } .pr-sm-1, .px-sm-1 { padding-right: .25rem !important } .pb-sm-1, .py-sm-1 { padding-bottom: .25rem !important } .pl-sm-1, .px-sm-1 { padding-left: .25rem !important } .p-sm-2 { padding: .5rem !important } .pt-sm-2, .py-sm-2 { padding-top: .5rem !important } .pr-sm-2, .px-sm-2 { padding-right: .5rem !important } .pb-sm-2, .py-sm-2 { padding-bottom: .5rem !important } .pl-sm-2, .px-sm-2 { padding-left: .5rem !important } .p-sm-3 { padding: 1rem !important } .pt-sm-3, .py-sm-3 { padding-top: 1rem !important } .pr-sm-3, .px-sm-3 { padding-right: 1rem !important } .pb-sm-3, .py-sm-3 { padding-bottom: 1rem !important } .pl-sm-3, .px-sm-3 { padding-left: 1rem !important } .p-sm-4 { padding: 1.5rem !important } .pt-sm-4, .py-sm-4 { padding-top: 1.5rem !important } .pr-sm-4, .px-sm-4 { padding-right: 1.5rem !important } .pb-sm-4, .py-sm-4 { padding-bottom: 1.5rem !important } .pl-sm-4, .px-sm-4 { padding-left: 1.5rem !important } .p-sm-5 { padding: 3rem !important } .pt-sm-5, .py-sm-5 { padding-top: 3rem !important } .pr-sm-5, .px-sm-5 { padding-right: 3rem !important } .pb-sm-5, .py-sm-5 { padding-bottom: 3rem !important } .pl-sm-5, .px-sm-5 { padding-left: 3rem !important } .p-sm-6 { padding: 4.5rem !important } .pt-sm-6, .py-sm-6 { padding-top: 4.5rem !important } .pr-sm-6, .px-sm-6 { padding-right: 4.5rem !important } .pb-sm-6, .py-sm-6 { padding-bottom: 4.5rem !important } .pl-sm-6, .px-sm-6 { padding-left: 4.5rem !important } .p-sm-7 { padding: 6rem !important } .pt-sm-7, .py-sm-7 { padding-top: 6rem !important } .pr-sm-7, .px-sm-7 { padding-right: 6rem !important } .pb-sm-7, .py-sm-7 { padding-bottom: 6rem !important } .pl-sm-7, .px-sm-7 { padding-left: 6rem !important } .p-sm-8 { padding: 7.5rem !important } .pt-sm-8, .py-sm-8 { padding-top: 7.5rem !important } .pr-sm-8, .px-sm-8 { padding-right: 7.5rem !important } .pb-sm-8, .py-sm-8 { padding-bottom: 7.5rem !important } .pl-sm-8, .px-sm-8 { padding-left: 7.5rem !important } .p-sm-9 { padding: 9rem !important } .pt-sm-9, .py-sm-9 { padding-top: 9rem !important } .pr-sm-9, .px-sm-9 { padding-right: 9rem !important } .pb-sm-9, .py-sm-9 { padding-bottom: 9rem !important } .pl-sm-9, .px-sm-9 { padding-left: 9rem !important } .p-sm-10 { padding: 10.5rem !important } .pt-sm-10, .py-sm-10 { padding-top: 10.5rem !important } .pr-sm-10, .px-sm-10 { padding-right: 10.5rem !important } .pb-sm-10, .py-sm-10 { padding-bottom: 10.5rem !important } .pl-sm-10, .px-sm-10 { padding-left: 10.5rem !important } .m-sm-n1 { margin: -.25rem !important } .mt-sm-n1, .my-sm-n1 { margin-top: -.25rem !important } .mr-sm-n1, .mx-sm-n1 { margin-right: -.25rem !important } .mb-sm-n1, .my-sm-n1 { margin-bottom: -.25rem !important } .ml-sm-n1, .mx-sm-n1 { margin-left: -.25rem !important } .m-sm-n2 { margin: -.5rem !important } .mt-sm-n2, .my-sm-n2 { margin-top: -.5rem !important } .mr-sm-n2, .mx-sm-n2 { margin-right: -.5rem !important } .mb-sm-n2, .my-sm-n2 { margin-bottom: -.5rem !important } .ml-sm-n2, .mx-sm-n2 { margin-left: -.5rem !important } .m-sm-n3 { margin: -1rem !important } .mt-sm-n3, .my-sm-n3 { margin-top: -1rem !important } .mr-sm-n3, .mx-sm-n3 { margin-right: -1rem !important } .mb-sm-n3, .my-sm-n3 { margin-bottom: -1rem !important } .ml-sm-n3, .mx-sm-n3 { margin-left: -1rem !important } .m-sm-n4 { margin: -1.5rem !important } .mt-sm-n4, .my-sm-n4 { margin-top: -1.5rem !important } .mr-sm-n4, .mx-sm-n4 { margin-right: -1.5rem !important } .mb-sm-n4, .my-sm-n4 { margin-bottom: -1.5rem !important } .ml-sm-n4, .mx-sm-n4 { margin-left: -1.5rem !important } .m-sm-n5 { margin: -3rem !important } .mt-sm-n5, .my-sm-n5 { margin-top: -3rem !important } .mr-sm-n5, .mx-sm-n5 { margin-right: -3rem !important } .mb-sm-n5, .my-sm-n5 { margin-bottom: -3rem !important } .ml-sm-n5, .mx-sm-n5 { margin-left: -3rem !important } .m-sm-n6 { margin: -4.5rem !important } .mt-sm-n6, .my-sm-n6 { margin-top: -4.5rem !important } .mr-sm-n6, .mx-sm-n6 { margin-right: -4.5rem !important } .mb-sm-n6, .my-sm-n6 { margin-bottom: -4.5rem !important } .ml-sm-n6, .mx-sm-n6 { margin-left: -4.5rem !important } .m-sm-n7 { margin: -6rem !important } .mt-sm-n7, .my-sm-n7 { margin-top: -6rem !important } .mr-sm-n7, .mx-sm-n7 { margin-right: -6rem !important } .mb-sm-n7, .my-sm-n7 { margin-bottom: -6rem !important } .ml-sm-n7, .mx-sm-n7 { margin-left: -6rem !important } .m-sm-n8 { margin: -7.5rem !important } .mt-sm-n8, .my-sm-n8 { margin-top: -7.5rem !important } .mr-sm-n8, .mx-sm-n8 { margin-right: -7.5rem !important } .mb-sm-n8, .my-sm-n8 { margin-bottom: -7.5rem !important } .ml-sm-n8, .mx-sm-n8 { margin-left: -7.5rem !important } .m-sm-n9 { margin: -9rem !important } .mt-sm-n9, .my-sm-n9 { margin-top: -9rem !important } .mr-sm-n9, .mx-sm-n9 { margin-right: -9rem !important } .mb-sm-n9, .my-sm-n9 { margin-bottom: -9rem !important } .ml-sm-n9, .mx-sm-n9 { margin-left: -9rem !important } .m-sm-n10 { margin: -10.5rem !important } .mt-sm-n10, .my-sm-n10 { margin-top: -10.5rem !important } .mr-sm-n10, .mx-sm-n10 { margin-right: -10.5rem !important } .mb-sm-n10, .my-sm-n10 { margin-bottom: -10.5rem !important } .ml-sm-n10, .mx-sm-n10 { margin-left: -10.5rem !important } .m-sm-auto { margin: auto !important } .mt-sm-auto, .my-sm-auto { margin-top: auto !important } .mr-sm-auto, .mx-sm-auto { margin-right: auto !important } .mb-sm-auto, .my-sm-auto { margin-bottom: auto !important } .ml-sm-auto, .mx-sm-auto { margin-left: auto !important } } @media (min-width:768px) { .m-md-0 { margin: 0 !important } .mt-md-0, .my-md-0 { margin-top: 0 !important } .mr-md-0, .mx-md-0 { margin-right: 0 !important } .mb-md-0, .my-md-0 { margin-bottom: 0 !important } .ml-md-0, .mx-md-0 { margin-left: 0 !important } .m-md-1 { margin: .25rem !important } .mt-md-1, .my-md-1 { margin-top: .25rem !important } .mr-md-1, .mx-md-1 { margin-right: .25rem !important } .mb-md-1, .my-md-1 { margin-bottom: .25rem !important } .ml-md-1, .mx-md-1 { margin-left: .25rem !important } .m-md-2 { margin: .5rem !important } .mt-md-2, .my-md-2 { margin-top: .5rem !important } .mr-md-2, .mx-md-2 { margin-right: .5rem !important } .mb-md-2, .my-md-2 { margin-bottom: .5rem !important } .ml-md-2, .mx-md-2 { margin-left: .5rem !important } .m-md-3 { margin: 1rem !important } .mt-md-3, .my-md-3 { margin-top: 1rem !important } .mr-md-3, .mx-md-3 { margin-right: 1rem !important } .mb-md-3, .my-md-3 { margin-bottom: 1rem !important } .ml-md-3, .mx-md-3 { margin-left: 1rem !important } .m-md-4 { margin: 1.5rem !important } .mt-md-4, .my-md-4 { margin-top: 1.5rem !important } .mr-md-4, .mx-md-4 { margin-right: 1.5rem !important } .mb-md-4, .my-md-4 { margin-bottom: 1.5rem !important } .ml-md-4, .mx-md-4 { margin-left: 1.5rem !important } .m-md-5 { margin: 3rem !important } .mt-md-5, .my-md-5 { margin-top: 3rem !important } .mr-md-5, .mx-md-5 { margin-right: 3rem !important } .mb-md-5, .my-md-5 { margin-bottom: 3rem !important } .ml-md-5, .mx-md-5 { margin-left: 3rem !important } .m-md-6 { margin: 4.5rem !important } .mt-md-6, .my-md-6 { margin-top: 4.5rem !important } .mr-md-6, .mx-md-6 { margin-right: 4.5rem !important } .mb-md-6, .my-md-6 { margin-bottom: 4.5rem !important } .ml-md-6, .mx-md-6 { margin-left: 4.5rem !important } .m-md-7 { margin: 6rem !important } .mt-md-7, .my-md-7 { margin-top: 6rem !important } .mr-md-7, .mx-md-7 { margin-right: 6rem !important } .mb-md-7, .my-md-7 { margin-bottom: 6rem !important } .ml-md-7, .mx-md-7 { margin-left: 6rem !important } .m-md-8 { margin: 7.5rem !important } .mt-md-8, .my-md-8 { margin-top: 7.5rem !important } .mr-md-8, .mx-md-8 { margin-right: 7.5rem !important } .mb-md-8, .my-md-8 { margin-bottom: 7.5rem !important } .ml-md-8, .mx-md-8 { margin-left: 7.5rem !important } .m-md-9 { margin: 9rem !important } .mt-md-9, .my-md-9 { margin-top: 9rem !important } .mr-md-9, .mx-md-9 { margin-right: 9rem !important } .mb-md-9, .my-md-9 { margin-bottom: 9rem !important } .ml-md-9, .mx-md-9 { margin-left: 9rem !important } .m-md-10 { margin: 10.5rem !important } .mt-md-10, .my-md-10 { margin-top: 10.5rem !important } .mr-md-10, .mx-md-10 { margin-right: 10.5rem !important } .mb-md-10, .my-md-10 { margin-bottom: 10.5rem !important } .ml-md-10, .mx-md-10 { margin-left: 10.5rem !important } .p-md-0 { padding: 0 !important } .pt-md-0, .py-md-0 { padding-top: 0 !important } .pr-md-0, .px-md-0 { padding-right: 0 !important } .pb-md-0, .py-md-0 { padding-bottom: 0 !important } .pl-md-0, .px-md-0 { padding-left: 0 !important } .p-md-1 { padding: .25rem !important } .pt-md-1, .py-md-1 { padding-top: .25rem !important } .pr-md-1, .px-md-1 { padding-right: .25rem !important } .pb-md-1, .py-md-1 { padding-bottom: .25rem !important } .pl-md-1, .px-md-1 { padding-left: .25rem !important } .p-md-2 { padding: .5rem !important } .pt-md-2, .py-md-2 { padding-top: .5rem !important } .pr-md-2, .px-md-2 { padding-right: .5rem !important } .pb-md-2, .py-md-2 { padding-bottom: .5rem !important } .pl-md-2, .px-md-2 { padding-left: .5rem !important } .p-md-3 { padding: 1rem !important } .pt-md-3, .py-md-3 { padding-top: 1rem !important } .pr-md-3, .px-md-3 { padding-right: 1rem !important } .pb-md-3, .py-md-3 { padding-bottom: 1rem !important } .pl-md-3, .px-md-3 { padding-left: 1rem !important } .p-md-4 { padding: 1.5rem !important } .pt-md-4, .py-md-4 { padding-top: 1.5rem !important } .pr-md-4, .px-md-4 { padding-right: 1.5rem !important } .pb-md-4, .py-md-4 { padding-bottom: 1.5rem !important } .pl-md-4, .px-md-4 { padding-left: 1.5rem !important } .p-md-5 { padding: 3rem !important } .pt-md-5, .py-md-5 { padding-top: 3rem !important } .pr-md-5, .px-md-5 { padding-right: 3rem !important } .pb-md-5, .py-md-5 { padding-bottom: 3rem !important } .pl-md-5, .px-md-5 { padding-left: 3rem !important } .p-md-6 { padding: 4.5rem !important } .pt-md-6, .py-md-6 { padding-top: 4.5rem !important } .pr-md-6, .px-md-6 { padding-right: 4.5rem !important } .pb-md-6, .py-md-6 { padding-bottom: 4.5rem !important } .pl-md-6, .px-md-6 { padding-left: 4.5rem !important } .p-md-7 { padding: 6rem !important } .pt-md-7, .py-md-7 { padding-top: 6rem !important } .pr-md-7, .px-md-7 { padding-right: 6rem !important } .pb-md-7, .py-md-7 { padding-bottom: 6rem !important } .pl-md-7, .px-md-7 { padding-left: 6rem !important } .p-md-8 { padding: 7.5rem !important } .pt-md-8, .py-md-8 { padding-top: 7.5rem !important } .pr-md-8, .px-md-8 { padding-right: 7.5rem !important } .pb-md-8, .py-md-8 { padding-bottom: 7.5rem !important } .pl-md-8, .px-md-8 { padding-left: 7.5rem !important } .p-md-9 { padding: 9rem !important } .pt-md-9, .py-md-9 { padding-top: 9rem !important } .pr-md-9, .px-md-9 { padding-right: 9rem !important } .pb-md-9, .py-md-9 { padding-bottom: 9rem !important } .pl-md-9, .px-md-9 { padding-left: 9rem !important } .p-md-10 { padding: 10.5rem !important } .pt-md-10, .py-md-10 { padding-top: 10.5rem !important } .pr-md-10, .px-md-10 { padding-right: 10.5rem !important } .pb-md-10, .py-md-10 { padding-bottom: 10.5rem !important } .pl-md-10, .px-md-10 { padding-left: 10.5rem !important } .m-md-n1 { margin: -.25rem !important } .mt-md-n1, .my-md-n1 { margin-top: -.25rem !important } .mr-md-n1, .mx-md-n1 { margin-right: -.25rem !important } .mb-md-n1, .my-md-n1 { margin-bottom: -.25rem !important } .ml-md-n1, .mx-md-n1 { margin-left: -.25rem !important } .m-md-n2 { margin: -.5rem !important } .mt-md-n2, .my-md-n2 { margin-top: -.5rem !important } .mr-md-n2, .mx-md-n2 { margin-right: -.5rem !important } .mb-md-n2, .my-md-n2 { margin-bottom: -.5rem !important } .ml-md-n2, .mx-md-n2 { margin-left: -.5rem !important } .m-md-n3 { margin: -1rem !important } .mt-md-n3, .my-md-n3 { margin-top: -1rem !important } .mr-md-n3, .mx-md-n3 { margin-right: -1rem !important } .mb-md-n3, .my-md-n3 { margin-bottom: -1rem !important } .ml-md-n3, .mx-md-n3 { margin-left: -1rem !important } .m-md-n4 { margin: -1.5rem !important } .mt-md-n4, .my-md-n4 { margin-top: -1.5rem !important } .mr-md-n4, .mx-md-n4 { margin-right: -1.5rem !important } .mb-md-n4, .my-md-n4 { margin-bottom: -1.5rem !important } .ml-md-n4, .mx-md-n4 { margin-left: -1.5rem !important } .m-md-n5 { margin: -3rem !important } .mt-md-n5, .my-md-n5 { margin-top: -3rem !important } .mr-md-n5, .mx-md-n5 { margin-right: -3rem !important } .mb-md-n5, .my-md-n5 { margin-bottom: -3rem !important } .ml-md-n5, .mx-md-n5 { margin-left: -3rem !important } .m-md-n6 { margin: -4.5rem !important } .mt-md-n6, .my-md-n6 { margin-top: -4.5rem !important } .mr-md-n6, .mx-md-n6 { margin-right: -4.5rem !important } .mb-md-n6, .my-md-n6 { margin-bottom: -4.5rem !important } .ml-md-n6, .mx-md-n6 { margin-left: -4.5rem !important } .m-md-n7 { margin: -6rem !important } .mt-md-n7, .my-md-n7 { margin-top: -6rem !important } .mr-md-n7, .mx-md-n7 { margin-right: -6rem !important } .mb-md-n7, .my-md-n7 { margin-bottom: -6rem !important } .ml-md-n7, .mx-md-n7 { margin-left: -6rem !important } .m-md-n8 { margin: -7.5rem !important } .mt-md-n8, .my-md-n8 { margin-top: -7.5rem !important } .mr-md-n8, .mx-md-n8 { margin-right: -7.5rem !important } .mb-md-n8, .my-md-n8 { margin-bottom: -7.5rem !important } .ml-md-n8, .mx-md-n8 { margin-left: -7.5rem !important } .m-md-n9 { margin: -9rem !important } .mt-md-n9, .my-md-n9 { margin-top: -9rem !important } .mr-md-n9, .mx-md-n9 { margin-right: -9rem !important } .mb-md-n9, .my-md-n9 { margin-bottom: -9rem !important } .ml-md-n9, .mx-md-n9 { margin-left: -9rem !important } .m-md-n10 { margin: -10.5rem !important } .mt-md-n10, .my-md-n10 { margin-top: -10.5rem !important } .mr-md-n10, .mx-md-n10 { margin-right: -10.5rem !important } .mb-md-n10, .my-md-n10 { margin-bottom: -10.5rem !important } .ml-md-n10, .mx-md-n10 { margin-left: -10.5rem !important } .m-md-auto { margin: auto !important } .mt-md-auto, .my-md-auto { margin-top: auto !important } .mr-md-auto, .mx-md-auto { margin-right: auto !important } .mb-md-auto, .my-md-auto { margin-bottom: auto !important } .ml-md-auto, .mx-md-auto { margin-left: auto !important } } @media (min-width:992px) { .m-lg-0 { margin: 0 !important } .mt-lg-0, .my-lg-0 { margin-top: 0 !important } .mr-lg-0, .mx-lg-0 { margin-right: 0 !important } .mb-lg-0, .my-lg-0 { margin-bottom: 0 !important } .ml-lg-0, .mx-lg-0 { margin-left: 0 !important } .m-lg-1 { margin: .25rem !important } .mt-lg-1, .my-lg-1 { margin-top: .25rem !important } .mr-lg-1, .mx-lg-1 { margin-right: .25rem !important } .mb-lg-1, .my-lg-1 { margin-bottom: .25rem !important } .ml-lg-1, .mx-lg-1 { margin-left: .25rem !important } .m-lg-2 { margin: .5rem !important } .mt-lg-2, .my-lg-2 { margin-top: .5rem !important } .mr-lg-2, .mx-lg-2 { margin-right: .5rem !important } .mb-lg-2, .my-lg-2 { margin-bottom: .5rem !important } .ml-lg-2, .mx-lg-2 { margin-left: .5rem !important } .m-lg-3 { margin: 1rem !important } .mt-lg-3, .my-lg-3 { margin-top: 1rem !important } .mr-lg-3, .mx-lg-3 { margin-right: 1rem !important } .mb-lg-3, .my-lg-3 { margin-bottom: 1rem !important } .ml-lg-3, .mx-lg-3 { margin-left: 1rem !important } .m-lg-4 { margin: 1.5rem !important } .mt-lg-4, .my-lg-4 { margin-top: 1.5rem !important } .mr-lg-4, .mx-lg-4 { margin-right: 1.5rem !important } .mb-lg-4, .my-lg-4 { margin-bottom: 1.5rem !important } .ml-lg-4, .mx-lg-4 { margin-left: 1.5rem !important } .m-lg-5 { margin: 3rem !important } .mt-lg-5, .my-lg-5 { margin-top: 3rem !important } .mr-lg-5, .mx-lg-5 { margin-right: 3rem !important } .mb-lg-5, .my-lg-5 { margin-bottom: 3rem !important } .ml-lg-5, .mx-lg-5 { margin-left: 3rem !important } .m-lg-6 { margin: 4.5rem !important } .mt-lg-6, .my-lg-6 { margin-top: 4.5rem !important } .mr-lg-6, .mx-lg-6 { margin-right: 4.5rem !important } .mb-lg-6, .my-lg-6 { margin-bottom: 4.5rem !important } .ml-lg-6, .mx-lg-6 { margin-left: 4.5rem !important } .m-lg-7 { margin: 6rem !important } .mt-lg-7, .my-lg-7 { margin-top: 6rem !important } .mr-lg-7, .mx-lg-7 { margin-right: 6rem !important } .mb-lg-7, .my-lg-7 { margin-bottom: 6rem !important } .ml-lg-7, .mx-lg-7 { margin-left: 6rem !important } .m-lg-8 { margin: 7.5rem !important } .mt-lg-8, .my-lg-8 { margin-top: 7.5rem !important } .mr-lg-8, .mx-lg-8 { margin-right: 7.5rem !important } .mb-lg-8, .my-lg-8 { margin-bottom: 7.5rem !important } .ml-lg-8, .mx-lg-8 { margin-left: 7.5rem !important } .m-lg-9 { margin: 9rem !important } .mt-lg-9, .my-lg-9 { margin-top: 9rem !important } .mr-lg-9, .mx-lg-9 { margin-right: 9rem !important } .mb-lg-9, .my-lg-9 { margin-bottom: 9rem !important } .ml-lg-9, .mx-lg-9 { margin-left: 9rem !important } .m-lg-10 { margin: 10.5rem !important } .mt-lg-10, .my-lg-10 { margin-top: 10.5rem !important } .mr-lg-10, .mx-lg-10 { margin-right: 10.5rem !important } .mb-lg-10, .my-lg-10 { margin-bottom: 10.5rem !important } .ml-lg-10, .mx-lg-10 { margin-left: 10.5rem !important } .p-lg-0 { padding: 0 !important } .pt-lg-0, .py-lg-0 { padding-top: 0 !important } .pr-lg-0, .px-lg-0 { padding-right: 0 !important } .pb-lg-0, .py-lg-0 { padding-bottom: 0 !important } .pl-lg-0, .px-lg-0 { padding-left: 0 !important } .p-lg-1 { padding: .25rem !important } .pt-lg-1, .py-lg-1 { padding-top: .25rem !important } .pr-lg-1, .px-lg-1 { padding-right: .25rem !important } .pb-lg-1, .py-lg-1 { padding-bottom: .25rem !important } .pl-lg-1, .px-lg-1 { padding-left: .25rem !important } .p-lg-2 { padding: .5rem !important } .pt-lg-2, .py-lg-2 { padding-top: .5rem !important } .pr-lg-2, .px-lg-2 { padding-right: .5rem !important } .pb-lg-2, .py-lg-2 { padding-bottom: .5rem !important } .pl-lg-2, .px-lg-2 { padding-left: .5rem !important } .p-lg-3 { padding: 1rem !important } .pt-lg-3, .py-lg-3 { padding-top: 1rem !important } .pr-lg-3, .px-lg-3 { padding-right: 1rem !important } .pb-lg-3, .py-lg-3 { padding-bottom: 1rem !important } .pl-lg-3, .px-lg-3 { padding-left: 1rem !important } .p-lg-4 { padding: 1.5rem !important } .pt-lg-4, .py-lg-4 { padding-top: 1.5rem !important } .pr-lg-4, .px-lg-4 { padding-right: 1.5rem !important } .pb-lg-4, .py-lg-4 { padding-bottom: 1.5rem !important } .pl-lg-4, .px-lg-4 { padding-left: 1.5rem !important } .p-lg-5 { padding: 3rem !important } .pt-lg-5, .py-lg-5 { padding-top: 3rem !important } .pr-lg-5, .px-lg-5 { padding-right: 3rem !important } .pb-lg-5, .py-lg-5 { padding-bottom: 3rem !important } .pl-lg-5, .px-lg-5 { padding-left: 3rem !important } .p-lg-6 { padding: 4.5rem !important } .pt-lg-6, .py-lg-6 { padding-top: 4.5rem !important } .pr-lg-6, .px-lg-6 { padding-right: 4.5rem !important } .pb-lg-6, .py-lg-6 { padding-bottom: 4.5rem !important } .pl-lg-6, .px-lg-6 { padding-left: 4.5rem !important } .p-lg-7 { padding: 6rem !important } .pt-lg-7, .py-lg-7 { padding-top: 6rem !important } .pr-lg-7, .px-lg-7 { padding-right: 6rem !important } .pb-lg-7, .py-lg-7 { padding-bottom: 6rem !important } .pl-lg-7, .px-lg-7 { padding-left: 6rem !important } .p-lg-8 { padding: 7.5rem !important } .pt-lg-8, .py-lg-8 { padding-top: 7.5rem !important } .pr-lg-8, .px-lg-8 { padding-right: 7.5rem !important } .pb-lg-8, .py-lg-8 { padding-bottom: 7.5rem !important } .pl-lg-8, .px-lg-8 { padding-left: 7.5rem !important } .p-lg-9 { padding: 9rem !important } .pt-lg-9, .py-lg-9 { padding-top: 9rem !important } .pr-lg-9, .px-lg-9 { padding-right: 9rem !important } .pb-lg-9, .py-lg-9 { padding-bottom: 9rem !important } .pl-lg-9, .px-lg-9 { padding-left: 9rem !important } .p-lg-10 { padding: 10.5rem !important } .pt-lg-10, .py-lg-10 { padding-top: 10.5rem !important } .pr-lg-10, .px-lg-10 { padding-right: 10.5rem !important } .pb-lg-10, .py-lg-10 { padding-bottom: 10.5rem !important } .pl-lg-10, .px-lg-10 { padding-left: 10.5rem !important } .m-lg-n1 { margin: -.25rem !important } .mt-lg-n1, .my-lg-n1 { margin-top: -.25rem !important } .mr-lg-n1, .mx-lg-n1 { margin-right: -.25rem !important } .mb-lg-n1, .my-lg-n1 { margin-bottom: -.25rem !important } .ml-lg-n1, .mx-lg-n1 { margin-left: -.25rem !important } .m-lg-n2 { margin: -.5rem !important } .mt-lg-n2, .my-lg-n2 { margin-top: -.5rem !important } .mr-lg-n2, .mx-lg-n2 { margin-right: -.5rem !important } .mb-lg-n2, .my-lg-n2 { margin-bottom: -.5rem !important } .ml-lg-n2, .mx-lg-n2 { margin-left: -.5rem !important } .m-lg-n3 { margin: -1rem !important } .mt-lg-n3, .my-lg-n3 { margin-top: -1rem !important } .mr-lg-n3, .mx-lg-n3 { margin-right: -1rem !important } .mb-lg-n3, .my-lg-n3 { margin-bottom: -1rem !important } .ml-lg-n3, .mx-lg-n3 { margin-left: -1rem !important } .m-lg-n4 { margin: -1.5rem !important } .mt-lg-n4, .my-lg-n4 { margin-top: -1.5rem !important } .mr-lg-n4, .mx-lg-n4 { margin-right: -1.5rem !important } .mb-lg-n4, .my-lg-n4 { margin-bottom: -1.5rem !important } .ml-lg-n4, .mx-lg-n4 { margin-left: -1.5rem !important } .m-lg-n5 { margin: -3rem !important } .mt-lg-n5, .my-lg-n5 { margin-top: -3rem !important } .mr-lg-n5, .mx-lg-n5 { margin-right: -3rem !important } .mb-lg-n5, .my-lg-n5 { margin-bottom: -3rem !important } .ml-lg-n5, .mx-lg-n5 { margin-left: -3rem !important } .m-lg-n6 { margin: -4.5rem !important } .mt-lg-n6, .my-lg-n6 { margin-top: -4.5rem !important } .mr-lg-n6, .mx-lg-n6 { margin-right: -4.5rem !important } .mb-lg-n6, .my-lg-n6 { margin-bottom: -4.5rem !important } .ml-lg-n6, .mx-lg-n6 { margin-left: -4.5rem !important } .m-lg-n7 { margin: -6rem !important } .mt-lg-n7, .my-lg-n7 { margin-top: -6rem !important } .mr-lg-n7, .mx-lg-n7 { margin-right: -6rem !important } .mb-lg-n7, .my-lg-n7 { margin-bottom: -6rem !important } .ml-lg-n7, .mx-lg-n7 { margin-left: -6rem !important } .m-lg-n8 { margin: -7.5rem !important } .mt-lg-n8, .my-lg-n8 { margin-top: -7.5rem !important } .mr-lg-n8, .mx-lg-n8 { margin-right: -7.5rem !important } .mb-lg-n8, .my-lg-n8 { margin-bottom: -7.5rem !important } .ml-lg-n8, .mx-lg-n8 { margin-left: -7.5rem !important } .m-lg-n9 { margin: -9rem !important } .mt-lg-n9, .my-lg-n9 { margin-top: -9rem !important } .mr-lg-n9, .mx-lg-n9 { margin-right: -9rem !important } .mb-lg-n9, .my-lg-n9 { margin-bottom: -9rem !important } .ml-lg-n9, .mx-lg-n9 { margin-left: -9rem !important } .m-lg-n10 { margin: -10.5rem !important } .mt-lg-n10, .my-lg-n10 { margin-top: -10.5rem !important } .mr-lg-n10, .mx-lg-n10 { margin-right: -10.5rem !important } .mb-lg-n10, .my-lg-n10 { margin-bottom: -10.5rem !important } .ml-lg-n10, .mx-lg-n10 { margin-left: -10.5rem !important } .m-lg-auto { margin: auto !important } .mt-lg-auto, .my-lg-auto { margin-top: auto !important } .mr-lg-auto, .mx-lg-auto { margin-right: auto !important } .mb-lg-auto, .my-lg-auto { margin-bottom: auto !important } .ml-lg-auto, .mx-lg-auto { margin-left: auto !important } } @media (min-width:1200px) { .m-xl-0 { margin: 0 !important } .mt-xl-0, .my-xl-0 { margin-top: 0 !important } .mr-xl-0, .mx-xl-0 { margin-right: 0 !important } .mb-xl-0, .my-xl-0 { margin-bottom: 0 !important } .ml-xl-0, .mx-xl-0 { margin-left: 0 !important } .m-xl-1 { margin: .25rem !important } .mt-xl-1, .my-xl-1 { margin-top: .25rem !important } .mr-xl-1, .mx-xl-1 { margin-right: .25rem !important } .mb-xl-1, .my-xl-1 { margin-bottom: .25rem !important } .ml-xl-1, .mx-xl-1 { margin-left: .25rem !important } .m-xl-2 { margin: .5rem !important } .mt-xl-2, .my-xl-2 { margin-top: .5rem !important } .mr-xl-2, .mx-xl-2 { margin-right: .5rem !important } .mb-xl-2, .my-xl-2 { margin-bottom: .5rem !important } .ml-xl-2, .mx-xl-2 { margin-left: .5rem !important } .m-xl-3 { margin: 1rem !important } .mt-xl-3, .my-xl-3 { margin-top: 1rem !important } .mr-xl-3, .mx-xl-3 { margin-right: 1rem !important } .mb-xl-3, .my-xl-3 { margin-bottom: 1rem !important } .ml-xl-3, .mx-xl-3 { margin-left: 1rem !important } .m-xl-4 { margin: 1.5rem !important } .mt-xl-4, .my-xl-4 { margin-top: 1.5rem !important } .mr-xl-4, .mx-xl-4 { margin-right: 1.5rem !important } .mb-xl-4, .my-xl-4 { margin-bottom: 1.5rem !important } .ml-xl-4, .mx-xl-4 { margin-left: 1.5rem !important } .m-xl-5 { margin: 3rem !important } .mt-xl-5, .my-xl-5 { margin-top: 3rem !important } .mr-xl-5, .mx-xl-5 { margin-right: 3rem !important } .mb-xl-5, .my-xl-5 { margin-bottom: 3rem !important } .ml-xl-5, .mx-xl-5 { margin-left: 3rem !important } .m-xl-6 { margin: 4.5rem !important } .mt-xl-6, .my-xl-6 { margin-top: 4.5rem !important } .mr-xl-6, .mx-xl-6 { margin-right: 4.5rem !important } .mb-xl-6, .my-xl-6 { margin-bottom: 4.5rem !important } .ml-xl-6, .mx-xl-6 { margin-left: 4.5rem !important } .m-xl-7 { margin: 6rem !important } .mt-xl-7, .my-xl-7 { margin-top: 6rem !important } .mr-xl-7, .mx-xl-7 { margin-right: 6rem !important } .mb-xl-7, .my-xl-7 { margin-bottom: 6rem !important } .ml-xl-7, .mx-xl-7 { margin-left: 6rem !important } .m-xl-8 { margin: 7.5rem !important } .mt-xl-8, .my-xl-8 { margin-top: 7.5rem !important } .mr-xl-8, .mx-xl-8 { margin-right: 7.5rem !important } .mb-xl-8, .my-xl-8 { margin-bottom: 7.5rem !important } .ml-xl-8, .mx-xl-8 { margin-left: 7.5rem !important } .m-xl-9 { margin: 9rem !important } .mt-xl-9, .my-xl-9 { margin-top: 9rem !important } .mr-xl-9, .mx-xl-9 { margin-right: 9rem !important } .mb-xl-9, .my-xl-9 { margin-bottom: 9rem !important } .ml-xl-9, .mx-xl-9 { margin-left: 9rem !important } .m-xl-10 { margin: 10.5rem !important } .mt-xl-10, .my-xl-10 { margin-top: 10.5rem !important } .mr-xl-10, .mx-xl-10 { margin-right: 10.5rem !important } .mb-xl-10, .my-xl-10 { margin-bottom: 10.5rem !important } .ml-xl-10, .mx-xl-10 { margin-left: 10.5rem !important } .p-xl-0 { padding: 0 !important } .pt-xl-0, .py-xl-0 { padding-top: 0 !important } .pr-xl-0, .px-xl-0 { padding-right: 0 !important } .pb-xl-0, .py-xl-0 { padding-bottom: 0 !important } .pl-xl-0, .px-xl-0 { padding-left: 0 !important } .p-xl-1 { padding: .25rem !important } .pt-xl-1, .py-xl-1 { padding-top: .25rem !important } .pr-xl-1, .px-xl-1 { padding-right: .25rem !important } .pb-xl-1, .py-xl-1 { padding-bottom: .25rem !important } .pl-xl-1, .px-xl-1 { padding-left: .25rem !important } .p-xl-2 { padding: .5rem !important } .pt-xl-2, .py-xl-2 { padding-top: .5rem !important } .pr-xl-2, .px-xl-2 { padding-right: .5rem !important } .pb-xl-2, .py-xl-2 { padding-bottom: .5rem !important } .pl-xl-2, .px-xl-2 { padding-left: .5rem !important } .p-xl-3 { padding: 1rem !important } .pt-xl-3, .py-xl-3 { padding-top: 1rem !important } .pr-xl-3, .px-xl-3 { padding-right: 1rem !important } .pb-xl-3, .py-xl-3 { padding-bottom: 1rem !important } .pl-xl-3, .px-xl-3 { padding-left: 1rem !important } .p-xl-4 { padding: 1.5rem !important } .pt-xl-4, .py-xl-4 { padding-top: 1.5rem !important } .pr-xl-4, .px-xl-4 { padding-right: 1.5rem !important } .pb-xl-4, .py-xl-4 { padding-bottom: 1.5rem !important } .pl-xl-4, .px-xl-4 { padding-left: 1.5rem !important } .p-xl-5 { padding: 3rem !important } .pt-xl-5, .py-xl-5 { padding-top: 3rem !important } .pr-xl-5, .px-xl-5 { padding-right: 3rem !important } .pb-xl-5, .py-xl-5 { padding-bottom: 3rem !important } .pl-xl-5, .px-xl-5 { padding-left: 3rem !important } .p-xl-6 { padding: 4.5rem !important } .pt-xl-6, .py-xl-6 { padding-top: 4.5rem !important } .pr-xl-6, .px-xl-6 { padding-right: 4.5rem !important } .pb-xl-6, .py-xl-6 { padding-bottom: 4.5rem !important } .pl-xl-6, .px-xl-6 { padding-left: 4.5rem !important } .p-xl-7 { padding: 6rem !important } .pt-xl-7, .py-xl-7 { padding-top: 6rem !important } .pr-xl-7, .px-xl-7 { padding-right: 6rem !important } .pb-xl-7, .py-xl-7 { padding-bottom: 6rem !important } .pl-xl-7, .px-xl-7 { padding-left: 6rem !important } .p-xl-8 { padding: 7.5rem !important } .pt-xl-8, .py-xl-8 { padding-top: 7.5rem !important } .pr-xl-8, .px-xl-8 { padding-right: 7.5rem !important } .pb-xl-8, .py-xl-8 { padding-bottom: 7.5rem !important } .pl-xl-8, .px-xl-8 { padding-left: 7.5rem !important } .p-xl-9 { padding: 9rem !important } .pt-xl-9, .py-xl-9 { padding-top: 9rem !important } .pr-xl-9, .px-xl-9 { padding-right: 9rem !important } .pb-xl-9, .py-xl-9 { padding-bottom: 9rem !important } .pl-xl-9, .px-xl-9 { padding-left: 9rem !important } .p-xl-10 { padding: 10.5rem !important } .pt-xl-10, .py-xl-10 { padding-top: 10.5rem !important } .pr-xl-10, .px-xl-10 { padding-right: 10.5rem !important } .pb-xl-10, .py-xl-10 { padding-bottom: 10.5rem !important } .pl-xl-10, .px-xl-10 { padding-left: 10.5rem !important } .m-xl-n1 { margin: -.25rem !important } .mt-xl-n1, .my-xl-n1 { margin-top: -.25rem !important } .mr-xl-n1, .mx-xl-n1 { margin-right: -.25rem !important } .mb-xl-n1, .my-xl-n1 { margin-bottom: -.25rem !important } .ml-xl-n1, .mx-xl-n1 { margin-left: -.25rem !important } .m-xl-n2 { margin: -.5rem !important } .mt-xl-n2, .my-xl-n2 { margin-top: -.5rem !important } .mr-xl-n2, .mx-xl-n2 { margin-right: -.5rem !important } .mb-xl-n2, .my-xl-n2 { margin-bottom: -.5rem !important } .ml-xl-n2, .mx-xl-n2 { margin-left: -.5rem !important } .m-xl-n3 { margin: -1rem !important } .mt-xl-n3, .my-xl-n3 { margin-top: -1rem !important } .mr-xl-n3, .mx-xl-n3 { margin-right: -1rem !important } .mb-xl-n3, .my-xl-n3 { margin-bottom: -1rem !important } .ml-xl-n3, .mx-xl-n3 { margin-left: -1rem !important } .m-xl-n4 { margin: -1.5rem !important } .mt-xl-n4, .my-xl-n4 { margin-top: -1.5rem !important } .mr-xl-n4, .mx-xl-n4 { margin-right: -1.5rem !important } .mb-xl-n4, .my-xl-n4 { margin-bottom: -1.5rem !important } .ml-xl-n4, .mx-xl-n4 { margin-left: -1.5rem !important } .m-xl-n5 { margin: -3rem !important } .mt-xl-n5, .my-xl-n5 { margin-top: -3rem !important } .mr-xl-n5, .mx-xl-n5 { margin-right: -3rem !important } .mb-xl-n5, .my-xl-n5 { margin-bottom: -3rem !important } .ml-xl-n5, .mx-xl-n5 { margin-left: -3rem !important } .m-xl-n6 { margin: -4.5rem !important } .mt-xl-n6, .my-xl-n6 { margin-top: -4.5rem !important } .mr-xl-n6, .mx-xl-n6 { margin-right: -4.5rem !important } .mb-xl-n6, .my-xl-n6 { margin-bottom: -4.5rem !important } .ml-xl-n6, .mx-xl-n6 { margin-left: -4.5rem !important } .m-xl-n7 { margin: -6rem !important } .mt-xl-n7, .my-xl-n7 { margin-top: -6rem !important } .mr-xl-n7, .mx-xl-n7 { margin-right: -6rem !important } .mb-xl-n7, .my-xl-n7 { margin-bottom: -6rem !important } .ml-xl-n7, .mx-xl-n7 { margin-left: -6rem !important } .m-xl-n8 { margin: -7.5rem !important } .mt-xl-n8, .my-xl-n8 { margin-top: -7.5rem !important } .mr-xl-n8, .mx-xl-n8 { margin-right: -7.5rem !important } .mb-xl-n8, .my-xl-n8 { margin-bottom: -7.5rem !important } .ml-xl-n8, .mx-xl-n8 { margin-left: -7.5rem !important } .m-xl-n9 { margin: -9rem !important } .mt-xl-n9, .my-xl-n9 { margin-top: -9rem !important } .mr-xl-n9, .mx-xl-n9 { margin-right: -9rem !important } .mb-xl-n9, .my-xl-n9 { margin-bottom: -9rem !important } .ml-xl-n9, .mx-xl-n9 { margin-left: -9rem !important } .m-xl-n10 { margin: -10.5rem !important } .mt-xl-n10, .my-xl-n10 { margin-top: -10.5rem !important } .mr-xl-n10, .mx-xl-n10 { margin-right: -10.5rem !important } .mb-xl-n10, .my-xl-n10 { margin-bottom: -10.5rem !important } .ml-xl-n10, .mx-xl-n10 { margin-left: -10.5rem !important } .m-xl-auto { margin: auto !important } .mt-xl-auto, .my-xl-auto { margin-top: auto !important } .mr-xl-auto, .mx-xl-auto { margin-right: auto !important } .mb-xl-auto, .my-xl-auto { margin-bottom: auto !important } .ml-xl-auto, .mx-xl-auto { margin-left: auto !important } } .text-monospace { font-family: SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace !important } .text-justify { text-align: justify !important } .text-wrap { white-space: normal !important } .text-nowrap { white-space: nowrap !important } .text-truncate { overflow: hidden; -o-text-overflow: ellipsis; text-overflow: ellipsis; white-space: nowrap } .text-left { text-align: left !important } .text-right { text-align: right !important } .text-center { text-align: center !important } @media (min-width:576px) { .text-sm-left { text-align: left !important } .text-sm-right { text-align: right !important } .text-sm-center { text-align: center !important } } @media (min-width:768px) { .text-md-left { text-align: left !important } .text-md-right { text-align: right !important } .text-md-center { text-align: center !important } } @media (min-width:992px) { .text-lg-left { text-align: left !important } .text-lg-right { text-align: right !important } .text-lg-center { text-align: center !important } } @media (min-width:1200px) { .text-xl-left { text-align: left !important } .text-xl-right { text-align: right !important } .text-xl-center { text-align: center !important } } .text-lowercase { text-transform: lowercase !important } .text-uppercase { text-transform: uppercase !important } .text-capitalize { text-transform: capitalize !important } .font-weight-light { font-weight: 300 !important } .font-weight-lighter { font-weight: lighter !important } .font-weight-normal { font-weight: 400 !important } .font-weight-bold { font-weight: 600 !important } .font-italic { font-style: italic !important } .text-primary { color: #6e00ff !important } a.text-primary:focus, a.text-primary:hover { color: #4d00b3 !important } .text-secondary { color: #eff2f7 !important } a.text-secondary:focus, a.text-secondary:hover { color: #bcc9de !important } .text-success { color: #36b37e !important } a.text-success:focus, a.text-success:hover { color: #247855 !important } .text-info { color: #00b8d9 !important } a.text-info:focus, a.text-info:hover { color: #00778d !important } .text-warning { color: #ffab00 !important } a.text-warning:focus, a.text-warning:hover { color: #b37800 !important } .text-danger { color: #ff5630 !important } a.text-danger:focus, a.text-danger:hover { color: #e32a00 !important } .text-light { color: #eff2f7 !important } a.text-light:focus, a.text-light:hover { color: #bcc9de !important } .text-dark { color: #273444 !important } a.text-dark:focus, a.text-dark:hover { color: #0b0f13 !important } .text-neutral { color: #fff !important } a.text-neutral:focus, a.text-neutral:hover { color: #d9d9d9 !important } .text-white { color: #fff !important } a.text-white:focus, a.text-white:hover { color: #d9d9d9 !important } .text-body, .text-muted { color: #8492a6 !important } .text-black-50 { color: rgba(31, 45, 61, .5) !important } .text-white-50 { color: hsla(0, 0%, 100%, .5) !important } .text-hide { font: 0/0 a; color: transparent; text-shadow: none; background-color: transparent; border: 0 } .text-decoration-none { text-decoration: none !important } .text-break { word-break: break-word !important; overflow-wrap: break-word !important } .text-reset { color: inherit !important } .visible { visibility: visible !important } .invisible { visibility: hidden !important } @media print { *, :after, :before { text-shadow: none !important; -webkit-box-shadow: none !important; box-shadow: none !important } a:not(.btn) { text-decoration: underline } abbr[title]:after { content: " ("attr(title) ")" } pre { white-space: pre-wrap !important } blockquote, pre { border: 1px solid #d3dce6; page-break-inside: avoid } thead { display: table-header-group } img, tr { page-break-inside: avoid } h2, h3, p { orphans: 3; widows: 3 } h2, h3 { page-break-after: avoid } @page { size: a3 } .container, body { min-width: 992px !important } .navbar { display: none } .badge { border: 1px solid #1f2d3d } .table { border-collapse: collapse !important } .table td, .table th { background-color: #fff !important } .table-bordered td, .table-bordered th { border: 1px solid #e5e9f2 !important } .table-dark { color: inherit } .table-dark tbody+tbody, .table-dark td, .table-dark th, .table-dark thead th { border-color: #eff2f7 } .table .thead-dark th { color: inherit; border-color: #eff2f7 } } iframe { border: 0 } figcaption, figure, main { display: block; margin: 0 } figure { max-width: 100%; min-height: 1px } main { position: relative } button:focus { outline: none } svg { vertical-align: middle; overflow: hidden; width: 100% } @media (-ms-high-contrast:none), screen and (-ms-high-contrast:active) { img[src$=".svg"] { width: 100% } } [data-animate-hover] .animate-this { position: relative; top: 0; -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); -webkit-transition: all .2s ease; -o-transition: all .2s ease; transition: all .2s ease } @media (prefers-reduced-motion:reduce) { [data-animate-hover] .animate-this { -webkit-transition: none; -o-transition: none; transition: none } } [data-animate-hover="1"]:hover .animate-this { -webkit-transform: translateY(-1rem); -ms-transform: translateY(-1rem); transform: translateY(-1rem) } [data-animate-hover="1"]:hover .animate-this, [data-animate-hover="2"]:hover .animate-this { -webkit-box-shadow: 0 0 1.25rem rgba(31, 45, 61, .08); box-shadow: 0 0 1.25rem rgba(31, 45, 61, .08) } [data-animate-hover="2"]:hover .animate-this { -webkit-transform: scale(1.1); -ms-transform: scale(1.1); transform: scale(1.1); z-index: 10 } [data-animate-items] .animate-item, [data-animate-items] .animate-item--visible { -webkit-transition: all .2s ease; -o-transition: all .2s ease; transition: all .2s ease } @media (prefers-reduced-motion:reduce) { [data-animate-items] .animate-item, [data-animate-items] .animate-item--visible { -webkit-transition: none; -o-transition: none; transition: none } } [data-animate-items] .animate-item { display: none; opacity: 0; -webkit-animation: hide_item .2s ease forwards; animation: hide_item .2s ease forwards; -webkit-animation-delay: .5s; animation-delay: .5s } [data-animate-items]:hover .animate-item { display: block; -webkit-animation: show_item .2s ease forwards; animation: show_item .2s ease forwards; -webkit-animation-delay: .5s; animation-delay: .5s } @-webkit-keyframes text_slide { 0% { -webkit-transform: translateX(0); transform: translateX(0) } to { -webkit-transform: translateX(300px); transform: translateX(300px) } } @keyframes text_slide { 0% { -webkit-transform: translateX(0); transform: translateX(0) } to { -webkit-transform: translateX(300px); transform: translateX(300px) } } @-webkit-keyframes show_item { 0% { opacity: 0; -webkit-transform: translateY(300px); transform: translateY(300px) } to { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0) } } @keyframes show_item { 0% { opacity: 0; -webkit-transform: translateY(300px); transform: translateY(300px) } to { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0) } } @-webkit-keyframes hide_item { 0% { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0) } to { opacity: 0; -webkit-transform: translateY(300px); transform: translateY(300px) } } @keyframes hide_item { 0% { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0) } to { opacity: 0; -webkit-transform: translateY(300px); transform: translateY(300px) } } .hover-blurable { position: relative } .hover-blurable .blurable-item { -webkit-transition: 1s cubic-bezier(.19, 1, .22, 1); -o-transition: 1s cubic-bezier(.19, 1, .22, 1); transition: 1s cubic-bezier(.19, 1, .22, 1); -webkit-filter: blur(0); filter: blur(0); opacity: 1 } .hover-blurable .blurable-hidden { position: absolute; top: calc(50% + 7px); left: 50%; -webkit-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%); opacity: 0; -webkit-transition: all .2s ease; -o-transition: all .2s ease; transition: all .2s ease } @media (prefers-reduced-motion:reduce) { .hover-blurable .blurable-hidden { -webkit-transition: none; -o-transition: none; transition: none } } .hover-blurable:hover .blurable-item { opacity: .8; -webkit-filter: blur(10px); filter: blur(10px); -webkit-transform: scale(.95); -ms-transform: scale(.95); transform: scale(.95) } .hover-blurable:hover .blurable-hidden { opacity: 1; top: 50% } .bg-primary-light { background-color: #8b33ff !important } a.bg-primary-light:focus, a.bg-primary-light:hover, button.bg-primary-light:focus, button.bg-primary-light:hover { background-color: #6e00ff !important } .bg-primary-dark { background-color: #5800cc !important } a.bg-primary-dark:focus, a.bg-primary-dark:hover, button.bg-primary-dark:focus, button.bg-primary-dark:hover { background-color: #420099 !important } .bg-secondary-light { background-color: #fff !important } a.bg-secondary-light:focus, a.bg-secondary-light:hover, button.bg-secondary-light:focus, button.bg-secondary-light:hover { background-color: #dde3ee !important } .bg-secondary-dark { background-color: #cdd6e6 !important } a.bg-secondary-dark:focus, a.bg-secondary-dark:hover, button.bg-secondary-dark:focus, button.bg-secondary-dark:hover { background-color: #abbbd5 !important } .bg-success-light { background-color: #51cb97 !important } a.bg-success-light:focus, a.bg-success-light:hover, button.bg-success-light:focus, button.bg-success-light:hover { background-color: #36b37e !important } .bg-success-dark { background-color: #2a8c62 !important } a.bg-success-dark:focus, a.bg-success-dark:hover, button.bg-success-dark:focus, button.bg-success-dark:hover { background-color: #1e6547 !important } .bg-info-light { background-color: #0ddaff !important } a.bg-info-light:focus, a.bg-info-light:hover, button.bg-info-light:focus, button.bg-info-light:hover { background-color: #00b8d9 !important } .bg-info-dark { background-color: #008da6 !important } a.bg-info-dark:focus, a.bg-info-dark:hover, button.bg-info-dark:focus, button.bg-info-dark:hover { background-color: #006273 !important } .bg-warning-light { background-color: #ffbc33 !important } a.bg-warning-light:focus, a.bg-warning-light:hover, button.bg-warning-light:focus, button.bg-warning-light:hover { background-color: #ffab00 !important } .bg-warning-dark { background-color: #cc8900 !important } a.bg-warning-dark:focus, a.bg-warning-dark:hover, button.bg-warning-dark:focus, button.bg-warning-dark:hover { background-color: #996700 !important } .bg-danger-light { background-color: #ff8063 !important } a.bg-danger-light:focus, a.bg-danger-light:hover, button.bg-danger-light:focus, button.bg-danger-light:hover { background-color: #ff5630 !important } .bg-danger-dark { background-color: #fc2e00 !important } a.bg-danger-dark:focus, a.bg-danger-dark:hover, button.bg-danger-dark:focus, button.bg-danger-dark:hover { background-color: #c92500 !important } .bg-light-light { background-color: #fff !important } a.bg-light-light:focus, a.bg-light-light:hover, button.bg-light-light:focus, button.bg-light-light:hover { background-color: #dde3ee !important } .bg-light-dark { background-color: #cdd6e6 !important } a.bg-light-dark:focus, a.bg-light-dark:hover, button.bg-light-dark:focus, button.bg-light-dark:hover { background-color: #abbbd5 !important } .bg-dark-light { background-color: #3a4d64 !important } a.bg-dark-light:focus, a.bg-dark-light:hover, button.bg-dark-light:focus, button.bg-dark-light:hover { background-color: #273444 !important } .bg-dark-dark { background-color: #141b24 !important } a.bg-dark-dark:focus, a.bg-dark-dark:hover, button.bg-dark-dark:focus, button.bg-dark-dark:hover { background-color: #020203 !important } .bg-neutral-light { background-color: #fff !important } .bg-neutral-dark, a.bg-neutral-light:focus, a.bg-neutral-light:hover, button.bg-neutral-light:focus, button.bg-neutral-light:hover { background-color: #e6e6e6 !important } a.bg-neutral-dark:focus, a.bg-neutral-dark:hover, button.bg-neutral-dark:focus, button.bg-neutral-dark:hover { background-color: #ccc !important } .bg-white-light { background-color: #fff !important } .bg-white-dark, a.bg-white-light:focus, a.bg-white-light:hover, button.bg-white-light:focus, button.bg-white-light:hover { background-color: #e6e6e6 !important } a.bg-white-dark:focus, a.bg-white-dark:hover, button.bg-white-dark:focus, button.bg-white-dark:hover { background-color: #ccc !important } .bg-gradient-primary { background: -o-linear-gradient(40deg, #6e00ff 0, #b0f 100%) !important; background: linear-gradient(50deg, #6e00ff, #b0f) !important } .bg-gradient-secondary { background: -o-linear-gradient(40deg, #eff2f7 0, #eff0f7 100%) !important; background: linear-gradient(50deg, #eff2f7, #eff0f7) !important } .bg-gradient-success { background: -o-linear-gradient(40deg, #36b37e 0, #36b3a4 100%) !important; background: linear-gradient(50deg, #36b37e, #36b3a4) !important } .bg-gradient-info { background: -o-linear-gradient(40deg, #00b8d9 0, #0077d9 100%) !important; background: linear-gradient(50deg, #00b8d9, #0077d9) !important } .bg-gradient-warning { background: -o-linear-gradient(40deg, #ffab00 0, #fff800 100%) !important; background: linear-gradient(50deg, #ffab00, #fff800) !important } .bg-gradient-danger { background: -o-linear-gradient(40deg, #ff5630 0, #ff9430 100%) !important; background: linear-gradient(50deg, #ff5630, #ff9430) !important } .bg-gradient-light { background: -o-linear-gradient(40deg, #eff2f7 0, #eff0f7 100%) !important; background: linear-gradient(50deg, #eff2f7, #eff0f7) !important } .bg-gradient-dark { background: -o-linear-gradient(40deg, #273444 0, #272b44 100%) !important; background: linear-gradient(50deg, #273444, #272b44) !important } .bg-gradient-neutral, .bg-gradient-white { background: -o-linear-gradient(40deg, #fff 0, #fff 100%) !important; background: linear-gradient(50deg, #fff, #fff) !important } .bg-translucent-primary { background-color: rgba(95, 0, 219, .6) !important } a.bg-translucent-primary:focus, a.bg-translucent-primary:hover, button.bg-translucent-primary:focus, button.bg-translucent-primary:hover { background-color: rgba(84, 0, 194, .6) !important } .bg-translucent-secondary { background-color: rgba(215, 223, 235, .6) !important } a.bg-translucent-secondary:focus, a.bg-translucent-secondary:hover, button.bg-translucent-secondary:focus, button.bg-translucent-secondary:hover { background-color: rgba(198, 209, 227, .6) !important } .bg-translucent-success { background-color: rgba(46, 152, 107, .6) !important } a.bg-translucent-success:focus, a.bg-translucent-success:hover, button.bg-translucent-success:focus, button.bg-translucent-success:hover { background-color: rgba(40, 132, 93, .6) !important } .bg-translucent-info { background-color: rgba(0, 154, 181, .6) !important } a.bg-translucent-info:focus, a.bg-translucent-info:hover, button.bg-translucent-info:focus, button.bg-translucent-info:hover { background-color: rgba(0, 132, 156, .6) !important } .bg-translucent-warning { background-color: rgba(219, 147, 0, .6) !important } a.bg-translucent-warning:focus, a.bg-translucent-warning:hover, button.bg-translucent-warning:focus, button.bg-translucent-warning:hover { background-color: rgba(194, 130, 0, .6) !important } .bg-translucent-danger { background-color: rgba(255, 57, 12, .6) !important } a.bg-translucent-danger:focus, a.bg-translucent-danger:hover, button.bg-translucent-danger:focus, button.bg-translucent-danger:hover { background-color: rgba(242, 44, 0, .6) !important } .bg-translucent-light { background-color: rgba(215, 223, 235, .6) !important } a.bg-translucent-light:focus, a.bg-translucent-light:hover, button.bg-translucent-light:focus, button.bg-translucent-light:hover { background-color: rgba(198, 209, 227, .6) !important } .bg-translucent-dark { background-color: rgba(26, 35, 45, .6) !important } a.bg-translucent-dark:focus, a.bg-translucent-dark:hover, button.bg-translucent-dark:focus, button.bg-translucent-dark:hover { background-color: rgba(17, 22, 29, .6) !important } .bg-translucent-neutral { background-color: hsla(0, 0%, 92.9%, .6) !important } a.bg-translucent-neutral:focus, a.bg-translucent-neutral:hover, button.bg-translucent-neutral:focus, button.bg-translucent-neutral:hover { background-color: hsla(0, 0%, 87.8%, .6) !important } .bg-translucent-white { background-color: hsla(0, 0%, 92.9%, .6) !important } a.bg-translucent-white:focus, a.bg-translucent-white:hover, button.bg-translucent-white:focus, button.bg-translucent-white:hover { background-color: hsla(0, 0%, 87.8%, .6) !important } .bg-section-primary { background-color: #fff !important } .bg-section-secondary { background-color: #fafbfe !important } .bg-section-light { background-color: #e0e6ed !important } .bg-section-dark { background-color: #1a232d !important } .bg-brand-facebook { background-color: #3b5999 !important } a.bg-brand-facebook:focus, a.bg-brand-facebook:hover, button.bg-brand-facebook:focus, button.bg-brand-facebook:hover { background-color: #2d4474 !important } .bg-brand-twitter { background-color: #1da1f2 !important } a.bg-brand-twitter:focus, a.bg-brand-twitter:hover, button.bg-brand-twitter:focus, button.bg-brand-twitter:hover { background-color: #0c85d0 !important } .bg-brand-google-plus { background-color: #dd4b39 !important } a.bg-brand-google-plus:focus, a.bg-brand-google-plus:hover, button.bg-brand-google-plus:focus, button.bg-brand-google-plus:hover { background-color: #c23321 !important } .bg-brand-instagram { background-color: #e4405f !important } a.bg-brand-instagram:focus, a.bg-brand-instagram:hover, button.bg-brand-instagram:focus, button.bg-brand-instagram:hover { background-color: #d31e40 !important } .bg-brand-pinterest { background-color: #bd081c !important } a.bg-brand-pinterest:focus, a.bg-brand-pinterest:hover, button.bg-brand-pinterest:focus, button.bg-brand-pinterest:hover { background-color: #8c0615 !important } .bg-brand-youtube { background-color: #cd201f !important } a.bg-brand-youtube:focus, a.bg-brand-youtube:hover, button.bg-brand-youtube:focus, button.bg-brand-youtube:hover { background-color: #a11918 !important } .bg-brand-slack { background-color: #3aaf85 !important } a.bg-brand-slack:focus, a.bg-brand-slack:hover, button.bg-brand-slack:focus, button.bg-brand-slack:hover { background-color: #2d8968 !important } .bg-brand-dribbble { background-color: #ea4c89 !important } a.bg-brand-dribbble:focus, a.bg-brand-dribbble:hover, button.bg-brand-dribbble:focus, button.bg-brand-dribbble:hover { background-color: #e51e6b !important } .bg-brand-github { background-color: #222 !important } a.bg-brand-github:focus, a.bg-brand-github:hover, button.bg-brand-github:focus, button.bg-brand-github:hover { background-color: #090909 !important } .bg-brand-vimeo { background-color: #04a0f0 !important } a.bg-brand-vimeo:focus, a.bg-brand-vimeo:hover, button.bg-brand-vimeo:focus, button.bg-brand-vimeo:hover { background-color: #037fbe !important } .bg-gray-100 { background-color: #fafbfe !important } a.bg-gray-100:focus, a.bg-gray-100:hover, button.bg-gray-100:focus, button.bg-gray-100:hover { background-color: #d0d9f6 !important } .bg-gray-200 { background-color: #eff2f7 !important } a.bg-gray-200:focus, a.bg-gray-200:hover, button.bg-gray-200:focus, button.bg-gray-200:hover { background-color: #cdd6e6 !important } .bg-gray-300 { background-color: #e5e9f2 !important } a.bg-gray-300:focus, a.bg-gray-300:hover, button.bg-gray-300:focus, button.bg-gray-300:hover { background-color: #c3cce1 !important } .bg-gray-400 { background-color: #e0e6ed !important } a.bg-gray-400:focus, a.bg-gray-400:hover, button.bg-gray-400:focus, button.bg-gray-400:hover { background-color: #c0ccda !important } .bg-gray-500 { background-color: #d3dce6 !important } a.bg-gray-500:focus, a.bg-gray-500:hover, button.bg-gray-500:focus, button.bg-gray-500:hover { background-color: #b2c2d4 !important } .bg-gray-600 { background-color: #c0ccda !important } a.bg-gray-600:focus, a.bg-gray-600:hover, button.bg-gray-600:focus, button.bg-gray-600:hover { background-color: #a0b2c7 !important } .bg-gray-700 { background-color: #8492a6 !important } a.bg-gray-700:focus, a.bg-gray-700:hover, button.bg-gray-700:focus, button.bg-gray-700:hover { background-color: #68788f !important } .bg-gray-800 { background-color: #3c4858 !important } a.bg-gray-800:focus, a.bg-gray-800:hover, button.bg-gray-800:focus, button.bg-gray-800:hover { background-color: #272f3a !important } .bg-gray-900 { background-color: #273444 !important } a.bg-gray-900:focus, a.bg-gray-900:hover, button.bg-gray-900:focus, button.bg-gray-900:hover { background-color: #141b24 !important } .bg-black { background-color: #1f2d3d !important } a.bg-black:focus, a.bg-black:hover, button.bg-black:focus, button.bg-black:hover { background-color: #0e141b !important } .fill-blue { fill: #2684ff !important } .stroke-blue { stroke: #2684ff !important } .fill-indigo { fill: #6e00ff !important } .stroke-indigo { stroke: #6e00ff !important } .fill-purple { fill: #510fa8 !important } .stroke-purple { stroke: #510fa8 !important } .fill-pink { fill: #f074ad !important } .stroke-pink { stroke: #f074ad !important } .fill-red { fill: #ff5630 !important } .stroke-red { stroke: #ff5630 !important } .fill-orange { fill: #ffab00 !important } .stroke-orange { stroke: #ffab00 !important } .fill-yellow { fill: #fc0 !important } .stroke-yellow { stroke: #fc0 !important } .fill-green { fill: #36b37e !important } .stroke-green { stroke: #36b37e !important } .fill-teal { fill: #00b8d9 !important } .stroke-teal { stroke: #00b8d9 !important } .fill-cyan { fill: #4bd6e5 !important } .stroke-cyan { stroke: #4bd6e5 !important } .fill-gray { fill: #c0ccda !important } .stroke-gray { stroke: #c0ccda !important } .fill-gray-dark { fill: #3c4858 !important } .stroke-gray-dark { stroke: #3c4858 !important } .fill-primary { fill: #6e00ff !important } .stroke-primary { stroke: #6e00ff !important } .fill-secondary { fill: #eff2f7 !important } .stroke-secondary { stroke: #eff2f7 !important } .fill-success { fill: #36b37e !important } .stroke-success { stroke: #36b37e !important } .fill-info { fill: #00b8d9 !important } .stroke-info { stroke: #00b8d9 !important } .fill-warning { fill: #ffab00 !important } .stroke-warning { stroke: #ffab00 !important } .fill-danger { fill: #ff5630 !important } .stroke-danger { stroke: #ff5630 !important } .fill-light { fill: #eff2f7 !important } .stroke-light { stroke: #eff2f7 !important } .fill-dark { fill: #273444 !important } .stroke-dark { stroke: #273444 !important } .fill-neutral { fill: #fff !important } .stroke-neutral { stroke: #fff !important } .fill-white { fill: #fff !important } .stroke-white { stroke: #fff !important } .fill-primary-100 { fill: #fff !important } .fill-primary-200 { fill: #e2ccff !important } .fill-primary-300 { fill: #c599ff !important } .fill-primary-400 { fill: #a866ff !important } .fill-primary-500 { fill: #8b33ff !important } .fill-primary-600 { fill: #7d1aff !important } .stroke-primary-100 { stroke: #fff !important } .stroke-primary-200 { stroke: #e2ccff !important } .stroke-primary-300 { stroke: #c599ff !important } .stroke-primary-400 { stroke: #a866ff !important } .stroke-primary-500 { stroke: #8b33ff !important } .stroke-primary-600 { stroke: #7d1aff !important } .fill-section-primary { fill: #fff !important } .stroke-section-primary { stroke: #fff !important } .fill-section-secondary { fill: #fafbfe !important } .stroke-section-secondary { stroke: #fafbfe !important } .fill-section-light { fill: #e0e6ed !important } .stroke-section-light { stroke: #e0e6ed !important } .fill-section-dark { fill: #1a232d !important } .stroke-section-dark { stroke: #1a232d !important } .bg-cover { position: relative; background-repeat: no-repeat } .bg-absolute-cover { background-repeat: no-repeat; position: absolute; overflow: hidden; top: 0; left: 0; width: 100%; height: 100%; z-index: 100 } .bg-absolute-cover svg { height: 1000px; pointer-events: none } @media (max-width:1199.98px) { .bg-lg-cover { background-image: none !important } } @media (max-width:991.98px) { .bg-md-cover { background-image: none !important } } .bg-size--cover { background-size: cover } .bg-size--contain { background-size: contain } .bg-text { color: hsla(0, 0%, 100%, .2); position: absolute; top: 50%; left: 0; white-space: nowrap; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); text-transform: uppercase; font-size: 40rem; font-weight: 700 } .bg-inner--text { height: 1em; line-height: 1em; -webkit-transform: none; -ms-transform: none; transform: none; opacity: 1; -webkit-transition: 2s 0s; -o-transition: 2s 0s; transition: 2s 0s; display: block; -webkit-animation: text_slide 40s linear infinite; animation: text_slide 40s linear infinite; width: auto; max-width: none; white-space: nowrap; display: inline-block } .bg-noise { background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAMAAAAp4XiDAAAAUVBMVEWFhYWDg4N3d3dtbW17e3t1dXWBgYGHh4d5eXlzc3OLi4ubm5uVlZWPj4+NjY19fX2JiYl/f39ra2uRkZGZmZlpaWmXl5dvb29xcXGTk5NnZ2c8TV1mAAAAG3RSTlNAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEAvEOwtAAAFVklEQVR4XpWWB67c2BUFb3g557T/hRo9/WUMZHlgr4Bg8Z4qQgQJlHI4A8SzFVrapvmTF9O7dmYRFZ60YiBhJRCgh1FYhiLAmdvX0CzTOpNE77ME0Zty/nWWzchDtiqrmQDeuv3powQ5ta2eN0FY0InkqDD73lT9c9lEzwUNqgFHs9VQce3TVClFCQrSTfOiYkVJQBmpbq2L6iZavPnAPcoU0dSw0SUTqz/GtrGuXfbyyBniKykOWQWGqwwMA7QiYAxi+IlPdqo+hYHnUt5ZPfnsHJyNiDtnpJyayNBkF6cWoYGAMY92U2hXHF/C1M8uP/ZtYdiuj26UdAdQQSXQErwSOMzt/XWRWAz5GuSBIkwG1H3FabJ2OsUOUhGC6tK4EMtJO0ttC6IBD3kM0ve0tJwMdSfjZo+EEISaeTr9P3wYrGjXqyC1krcKdhMpxEnt5JetoulscpyzhXN5FRpuPHvbeQaKxFAEB6EN+cYN6xD7RYGpXpNndMmZgM5Dcs3YSNFDHUo2LGfZuukSWyUYirJAdYbF3MfqEKmjM+I2EfhA94iG3L7uKrR+GdWD73ydlIB+6hgref1QTlmgmbM3/LeX5GI1Ux1RWpgxpLuZ2+I+IjzZ8wqE4nilvQdkUdfhzI5QDWy+kw5Wgg2pGpeEVeCCA7b85BO3F9DzxB3cdqvBzWcmzbyMiqhzuYqtHRVG2y4x+KOlnyqla8AoWWpuBoYRxzXrfKuILl6SfiWCbjxoZJUaCBj1CjH7GIaDbc9kqBY3W/Rgjda1iqQcOJu2WW+76pZC9QG7M00dffe9hNnseupFL53r8F7YHSwJWUKP2q+k7RdsxyOB11n0xtOvnW4irMMFNV4H0uqwS5ExsmP9AxbDTc9JwgneAT5vTiUSm1E7BSflSt3bfa1tv8Di3R8n3Af7MNWzs49hmauE2wP+ttrq+AsWpFG2awvsuOqbipWHgtuvuaAE+A1Z/7gC9hesnr+7wqCwG8c5yAg3AL1fm8T9AZtp/bbJGwl1pNrE7RuOX7PeMRUERVaPpEs+yqeoSmuOlokqw49pgomjLeh7icHNlG19yjs6XXOMedYm5xH2YxpV2tc0Ro2jJfxC50ApuxGob7lMsxfTbeUv07TyYxpeLucEH1gNd4IKH2LAg5TdVhlCafZvpskfncCfx8pOhJzd76bJWeYFnFciwcYfubRc12Ip/ppIhA1/mSZ/RxjFDrJC5xifFjJpY2Xl5zXdguFqYyTR1zSp1Y9p+tktDYYSNflcxI0iyO4TPBdlRcpeqjK/piF5bklq77VSEaA+z8qmJTFzIWiitbnzR794USKBUaT0NTEsVjZqLaFVqJoPN9ODG70IPbfBHKK+/q/AWR0tJzYHRULOa4MP+W/HfGadZUbfw177G7j/OGbIs8TahLyynl4X4RinF793Oz+BU0saXtUHrVBFT/DnA3ctNPoGbs4hRIjTok8i+algT1lTHi4SxFvONKNrgQFAq2/gFnWMXgwffgYMJpiKYkmW3tTg3ZQ9Jq+f8XN+A5eeUKHWvJWJ2sgJ1Sop+wwhqFVijqWaJhwtD8MNlSBeWNNWTa5Z5kPZw5+LbVT99wqTdx29lMUH4OIG/D86ruKEauBjvH5xy6um/Sfj7ei6UUVk4AIl3MyD4MSSTOFgSwsH/QJWaQ5as7ZcmgBZkzjjU1UrQ74ci1gWBCSGHtuV1H2mhSnO3Wp/3fEV5a+4wz//6qy8JxjZsmxxy5+4w9CDNJY09T072iKG0EnOS0arEYgXqYnXcYHwjTtUNAcMelOd4xpkoqiTYICWFq0JSiPfPDQdnt+4/wuqcXY47QILbgAAAABJRU5ErkJggg==) } @media (max-width:991.98px) { .bg-img-holder { background-image: none !important } .bg-img-holder img { max-width: 100% } } @media (min-width:992px) { .bg-img-holder { position: absolute; height: 100%; min-height: 20rem; background-repeat: no-repeat; z-index: -1 } .bg-img-holder img { display: none } } .img-bg:after { position: absolute; content: ""; background: none no-repeat 50%; background-image: none; background-size: auto auto; background-size: contain; width: 783px; height: 725px; left: 31px; top: -168px; z-index: 1; background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='783' height='726' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M606.14 725.179c144.64-.87 225.447-587.194 144.64-694.046-73.915-97.74-579.852 50.733-716.756 222.443-12.763 16.009-22.32 32.22-28.019 48.451-66.83 190.337 442.822 424.098 600.136 423.152z' fill='%23EFF2F7' fill-rule='evenodd'/%3E%3C/svg%3E") } .img-bg img { position: relative; z-index: 2 } .border-sm { border-width: 2px !important } .border-md { border-width: 3px !important } .border-dashed { border-style: dashed !important } .border-dotted { border-style: dotted !important } .border-groove { border-style: groove !important } .rounded-left-pill { border-top-left-radius: 50rem !important; border-bottom-left-radius: 50rem !important } .rounded-right-pill { border-top-right-radius: 50rem !important; border-bottom-right-radius: 50rem !important } .delimiter-bottom, .delimiter-top { position: relative; border: 0 } .delimiter-top:before { top: 0 } .delimiter-bottom:after, .delimiter-top:before { content: ""; display: block; width: 80%; position: absolute; left: 50%; margin-left: -40%; height: 1px; background: -o-radial-gradient(center, ellipse, rgba(222, 228, 239, .2) 0, hsla(0, 0%, 100%, 0) 75%); background: radial-gradient(ellipse at center, rgba(222, 228, 239, .2) 0, hsla(0, 0%, 100%, 0) 75%) } .delimiter-bottom:after { bottom: 0 } .delimiter-dark:after, .delimiter-dark:before { background: -o-radial-gradient(center, ellipse, hsla(0, 0%, 100%, .2) 0, rgba(31, 45, 61, 0) 75%); background: radial-gradient(ellipse at center, hsla(0, 0%, 100%, .2) 0, rgba(31, 45, 61, 0) 75%) } .floating { -webkit-animation: floating 3s ease infinite; animation: floating 3s ease infinite; will-change: transform } .floating:hover { -webkit-animation-play-state: paused; animation-play-state: paused } .floating-lg { -webkit-animation: floating-lg 3s ease infinite; animation: floating-lg 3s ease infinite } .floating-sm { -webkit-animation: floating-sm 3s ease infinite; animation: floating-sm 3s ease infinite } @-webkit-keyframes floating-lg { 0% { -webkit-transform: translateY(0); transform: translateY(0) } 50% { -webkit-transform: translateY(15px); transform: translateY(15px) } to { -webkit-transform: translateY(0); transform: translateY(0) } } @keyframes floating-lg { 0% { -webkit-transform: translateY(0); transform: translateY(0) } 50% { -webkit-transform: translateY(15px); transform: translateY(15px) } to { -webkit-transform: translateY(0); transform: translateY(0) } } @-webkit-keyframes floating { 0% { -webkit-transform: translateY(0); transform: translateY(0) } 50% { -webkit-transform: translateY(10px); transform: translateY(10px) } to { -webkit-transform: translateY(0); transform: translateY(0) } } @keyframes floating { 0% { -webkit-transform: translateY(0); transform: translateY(0) } 50% { -webkit-transform: translateY(10px); transform: translateY(10px) } to { -webkit-transform: translateY(0); transform: translateY(0) } } @-webkit-keyframes floating-sm { 0% { -webkit-transform: translateY(0); transform: translateY(0) } 50% { -webkit-transform: translateY(5px); transform: translateY(5px) } to { -webkit-transform: translateY(0); transform: translateY(0) } } .floatfix:after, .floatfix:before { content: ""; display: table } .floatfix:after { clear: both } .overflow-visible { overflow: visible !important } .overflow-hidden { overflow: hidden !important } [class*=alpha] { -webkit-transition: all .2s ease; -o-transition: all .2s ease; transition: all .2s ease } [class*=faded] { position: relative } [class*=faded]:after { content: ""; position: absolute; width: 100%; height: 30% } .faded-top:after { top: 0; background: -o-linear-gradient(bottom, transparent 0, rgba(0, 0, 0, .6) 100%); background: -webkit-gradient(linear, left bottom, left top, from(transparent), to(rgba(0, 0, 0, .6))); background: linear-gradient(0deg, transparent 0, rgba(0, 0, 0, .6)) } .faded-bottom:after, .faded-top:after { filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000", endColorstr="#a6000000", GradientType=0) } .faded-bottom:after { bottom: 0; background: -o-linear-gradient(top, transparent 0, rgba(0, 0, 0, .6) 100%); background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, .6))); background: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, .6)) } [class*=hover-] { -webkit-transition: all .2s ease; -o-transition: all .2s ease; transition: all .2s ease } @media (prefers-reduced-motion:reduce) { [class*=hover-] { -webkit-transition: none; -o-transition: none; transition: none } } .img-center { display: block; margin-left: auto; margin-right: auto } .img-grayscale { -webkit-filter: grayscale(100%); filter: grayscale(100%) } .img-saturate { -webkit-filter: saturate(150%); filter: saturate(150%) } .img-back-shape img { background: url(../img/svg/backgrounds/bg-circles-1.svg) no-repeat scroll 50%/100% 100% border-box } .hover-opacity-0:hover, .opacity-0, .opacity-container:hover .hover-opacity-0 { opacity: 0 } .hover-opacity-1:hover, .opacity-1, .opacity-container:hover .hover-opacity-1 { opacity: .1 } .hover-opacity-2:hover, .opacity-2, .opacity-container:hover .hover-opacity-2 { opacity: .2 } .hover-opacity-3:hover, .opacity-3, .opacity-container:hover .hover-opacity-3 { opacity: .3 } .hover-opacity-4:hover, .opacity-4, .opacity-container:hover .hover-opacity-4 { opacity: .4 } .hover-opacity-5:hover, .opacity-5, .opacity-container:hover .hover-opacity-5 { opacity: .5 } .hover-opacity-6:hover, .opacity-6, .opacity-container:hover .hover-opacity-6 { opacity: .6 } .hover-opacity-7:hover, .opacity-7, .opacity-container:hover .hover-opacity-7 { opacity: .7 } .hover-opacity-8:hover, .opacity-8, .opacity-container:hover .hover-opacity-8 { opacity: .8 } .hover-opacity-9:hover, .opacity-9, .opacity-container:hover .hover-opacity-9 { opacity: .9 } .hover-opacity-10:hover, .opacity-10, .opacity-container:hover .hover-opacity-10 { opacity: 1 } .top-0 { top: 0 } .right-0 { right: 0 } .bottom-0 { bottom: 0 } .left-0 { left: 0 } .top-1 { top: .25rem } .right-1 { right: .25rem } .bottom-1 { bottom: .25rem } .left-1 { left: .25rem } .top-2 { top: .5rem } .right-2 { right: .5rem } .bottom-2 { bottom: .5rem } .left-2 { left: .5rem } .top-3 { top: 1rem } .right-3 { right: 1rem } .bottom-3 { bottom: 1rem } .left-3 { left: 1rem } .top-4 { top: 1.5rem } .right-4 { right: 1.5rem } .bottom-4 { bottom: 1.5rem } .left-4 { left: 1.5rem } .top-5 { top: 3rem } .right-5 { right: 3rem } .bottom-5 { bottom: 3rem } .left-5 { left: 3rem } .top-6 { top: 4.5rem } .right-6 { right: 4.5rem } .bottom-6 { bottom: 4.5rem } .left-6 { left: 4.5rem } .top-7 { top: 6rem } .right-7 { right: 6rem } .bottom-7 { bottom: 6rem } .left-7 { left: 6rem } .top-8 { top: 7.5rem } .right-8 { right: 7.5rem } .bottom-8 { bottom: 7.5rem } .left-8 { left: 7.5rem } .top-9 { top: 9rem } .right-9 { right: 9rem } .bottom-9 { bottom: 9rem } .left-9 { left: 9rem } .top-10 { top: 10.5rem } .right-10 { right: 10.5rem } .bottom-10 { bottom: 10.5rem } .left-10 { left: 10.5rem } .top-n1 { top: -.25rem } .right-n1 { right: -.25rem } .bottom-n1 { bottom: -.25rem } .left-n1 { left: -.25rem } .top-n2 { top: -.5rem } .right-n2 { right: -.5rem } .bottom-n2 { bottom: -.5rem } .left-n2 { left: -.5rem } .top-n3 { top: -1rem } .right-n3 { right: -1rem } .bottom-n3 { bottom: -1rem } .left-n3 { left: -1rem } .top-n4 { top: -1.5rem } .right-n4 { right: -1.5rem } .bottom-n4 { bottom: -1.5rem } .left-n4 { left: -1.5rem } .top-n5 { top: -3rem } .right-n5 { right: -3rem } .bottom-n5 { bottom: -3rem } .left-n5 { left: -3rem } .top-n6 { top: -4.5rem } .right-n6 { right: -4.5rem } .bottom-n6 { bottom: -4.5rem } .left-n6 { left: -4.5rem } .top-n7 { top: -6rem } .right-n7 { right: -6rem } .bottom-n7 { bottom: -6rem } .left-n7 { left: -6rem } .top-n8 { top: -7.5rem } .right-n8 { right: -7.5rem } .bottom-n8 { bottom: -7.5rem } .left-n8 { left: -7.5rem } .top-n9 { top: -9rem } .right-n9 { right: -9rem } .bottom-n9 { bottom: -9rem } .left-n9 { left: -9rem } .top-n10 { top: -10.5rem } .right-n10 { right: -10.5rem } .bottom-n10 { bottom: -10.5rem } .left-n10 { left: -10.5rem } .center { left: 50%; -webkit-transform: translateX(-50%); -ms-transform: translateX(-50%); transform: translateX(-50%) } .middle { top: 50%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%) } @media (max-width:991.98px) { [data-separator=rounded][data-separator-orientation=bottom] { border-radius: 0 0 3rem 3rem } [data-separator=rounded][data-separator-orientation=top] { border-radius: 3rem 3rem 0 0 } [data-separator=rounded-left][data-separator-orientation=bottom] { border-radius: 0 0 0 3rem } [data-separator=rounded-left][data-separator-orientation=top] { border-radius: 3rem 0 0 0 } [data-separator=rounded-right][data-separator-orientation=bottom] { border-radius: 0 0 3rem 0 } [data-separator=rounded-right][data-separator-orientation=top] { border-radius: 0 3rem 0 0 } } @media (min-width:768px) { [data-separator=rounded][data-separator-orientation=bottom] { border-radius: 0 0 5rem 5rem } [data-separator=rounded][data-separator-orientation=top] { border-radius: 5rem 5rem 0 0 } [data-separator=rounded-left][data-separator-orientation=bottom] { border-radius: 0 0 0 5rem } [data-separator=rounded-left][data-separator-orientation=top] { border-radius: 5rem 0 0 0 } [data-separator=rounded-right][data-separator-orientation=bottom] { border-radius: 0 0 5rem 0 } [data-separator=rounded-right][data-separator-orientation=top] { border-radius: 0 5rem 0 0 } } [data-separator=rounded-continuous] { position: relative; margin-bottom: 5rem; border-radius: 0 0 0 5rem } [data-separator=rounded-continuous]:after, [data-separator=rounded-continuous]:before { content: ""; position: absolute; pointer-events: none; left: 0; height: 5rem } [data-separator=rounded-continuous]:before { top: 100%; width: 100%; border-radius: 0 5rem 0 0 } [data-separator=rounded-continuous]:after { bottom: 0; z-index: -1; width: 50% } [data-separator=rounded-continuous]+section { padding-bottom: 5rem } [data-separator-bg=primary]:after, [data-separator-bg=primary]:before { background: #fff } [data-separator-bg=secondary]:after, [data-separator-bg=secondary]:before { background: #fafbfe } [data-separator-bg=light]:after, [data-separator-bg=light]:before { background: #e0e6ed } [data-separator-bg=dark]:after, [data-separator-bg=dark]:before { background: #1a232d } .shape-container { position: absolute; left: 0; right: 0; width: 100%; height: 150px; z-index: 2; -webkit-transform: translateZ(0); transform: translateZ(0); overflow: hidden } .shape-container svg { fill: #fff; pointer-events: none; vertical-align: baseline } .shape-container[data-shape-position=top] { top: 0; bottom: auto; margin-top: -1px } .shape-container[data-shape-position=bottom] { top: auto; bottom: 0; margin-bottom: -1px } .shape-container[data-shape-orientation=inverse] { -webkit-transform: rotate(180deg); -ms-transform: rotate(180deg); transform: rotate(180deg) } .shape-position-top { top: 0; margin-top: -1px } .shape-position-bottom { bottom: 0; margin-bottom: -1px } .shape-orientation-inverse { -webkit-transform: rotate(180deg); -ms-transform: rotate(180deg); transform: rotate(180deg) } @media screen and (-ms-high-contrast:active), screen and (-ms-high-contrast:none) { .ie-shape-wave-1 { height: 504px } .ie-shape-wave-3 { height: 231px } .ie-shape-clouds { height: 400px } } .h-100vh { height: 100vh !important } .row-grid+.row-grid, .row-grid>[class*=col-]+[class*=col-] { margin-top: 3rem } @media (min-width:992px) { .row.row-grid>[class*=col-lg-]+[class*=col-lg-] { margin-top: 0 } } @media (min-width:768px) { .row.row-grid>[class*=col-md-]+[class*=col-md-] { margin-top: 0 } } @media (min-width:576px) { .row.row-grid>[class*=col-sm-]+[class*=col-sm-] { margin-top: 0 } } @media (min-width:992px) { [class*=mb--], [class*=ml--], [class*=mr--], [class*=mt--] { position: relative; z-index: 5 } .mt--100 { margin-top: -100px !important } .mr--100 { margin-right: -100px !important } .mb--100 { margin-bottom: -100px !important } .ml--100 { margin-left: -100px !important } .mt--150 { margin-top: -150px !important } .mb--150 { margin-bottom: -150px !important } .mt--200 { margin-top: -200px !important } .mb--200 { margin-bottom: -200px !important } .mt--300 { margin-top: -300px !important } .mb--300 { margin-bottom: -300px !important } .pt-100 { padding-top: 100px !important } .pb-100 { padding-bottom: 100px !important } .pt-150 { padding-top: 150px !important } .pb-150 { padding-bottom: 150px !important } .pt-200 { padding-top: 200px !important } .pb-200 { padding-bottom: 200px !important } .pt-250 { padding-top: 250px !important } .pb-250 { padding-bottom: 250px !important } .pt-300 { padding-top: 300px !important } .pb-300 { padding-bottom: 300px !important } } [data-negative-margin].is_stuck { margin: 0 !important } [class*=shadow] { -webkit-transition: all .2s ease; -o-transition: all .2s ease; transition: all .2s ease } .hover-shadow-sm:hover { -webkit-box-shadow: 0 .125rem .25rem rgba(31, 45, 61, .08) !important; box-shadow: 0 .125rem .25rem rgba(31, 45, 61, .08) !important } .hover-shadow:hover { -webkit-box-shadow: 0 0 1.25rem rgba(31, 45, 61, .08) !important; box-shadow: 0 0 1.25rem rgba(31, 45, 61, .08) !important } .hover-shadow-lg:hover { -webkit-box-shadow: 0 1rem 3rem rgba(31, 45, 61, .125) !important; box-shadow: 0 1rem 3rem rgba(31, 45, 61, .125) !important } .hover-shadow-none:hover, .shadow-none { -webkit-box-shadow: none !important; box-shadow: none !important } .shadow-primary-sm { -webkit-box-shadow: 0 .125rem .25rem rgba(110, 0, 255, .4) !important; box-shadow: 0 .125rem .25rem rgba(110, 0, 255, .4) !important } .shadow-primary { -webkit-box-shadow: 0 .5rem 1rem rgba(110, 0, 255, .4) !important; box-shadow: 0 .5rem 1rem rgba(110, 0, 255, .4) !important } .shadow-primary-lg { -webkit-box-shadow: 0 1rem 3rem rgba(110, 0, 255, .4) !important; box-shadow: 0 1rem 3rem rgba(110, 0, 255, .4) !important } .shadow-secondary-sm { -webkit-box-shadow: 0 .125rem .25rem rgba(239, 242, 247, .4) !important; box-shadow: 0 .125rem .25rem rgba(239, 242, 247, .4) !important } .shadow-secondary { -webkit-box-shadow: 0 .5rem 1rem rgba(239, 242, 247, .4) !important; box-shadow: 0 .5rem 1rem rgba(239, 242, 247, .4) !important } .shadow-secondary-lg { -webkit-box-shadow: 0 1rem 3rem rgba(239, 242, 247, .4) !important; box-shadow: 0 1rem 3rem rgba(239, 242, 247, .4) !important } .shadow-success-sm { -webkit-box-shadow: 0 .125rem .25rem rgba(54, 179, 126, .4) !important; box-shadow: 0 .125rem .25rem rgba(54, 179, 126, .4) !important } .shadow-success { -webkit-box-shadow: 0 .5rem 1rem rgba(54, 179, 126, .4) !important; box-shadow: 0 .5rem 1rem rgba(54, 179, 126, .4) !important } .shadow-success-lg { -webkit-box-shadow: 0 1rem 3rem rgba(54, 179, 126, .4) !important; box-shadow: 0 1rem 3rem rgba(54, 179, 126, .4) !important } .shadow-info-sm { -webkit-box-shadow: 0 .125rem .25rem rgba(0, 184, 217, .4) !important; box-shadow: 0 .125rem .25rem rgba(0, 184, 217, .4) !important } .shadow-info { -webkit-box-shadow: 0 .5rem 1rem rgba(0, 184, 217, .4) !important; box-shadow: 0 .5rem 1rem rgba(0, 184, 217, .4) !important } .shadow-info-lg { -webkit-box-shadow: 0 1rem 3rem rgba(0, 184, 217, .4) !important; box-shadow: 0 1rem 3rem rgba(0, 184, 217, .4) !important } .shadow-warning-sm { -webkit-box-shadow: 0 .125rem .25rem rgba(255, 171, 0, .4) !important; box-shadow: 0 .125rem .25rem rgba(255, 171, 0, .4) !important } .shadow-warning { -webkit-box-shadow: 0 .5rem 1rem rgba(255, 171, 0, .4) !important; box-shadow: 0 .5rem 1rem rgba(255, 171, 0, .4) !important } .shadow-warning-lg { -webkit-box-shadow: 0 1rem 3rem rgba(255, 171, 0, .4) !important; box-shadow: 0 1rem 3rem rgba(255, 171, 0, .4) !important } .shadow-danger-sm { -webkit-box-shadow: 0 .125rem .25rem rgba(255, 86, 48, .4) !important; box-shadow: 0 .125rem .25rem rgba(255, 86, 48, .4) !important } .shadow-danger { -webkit-box-shadow: 0 .5rem 1rem rgba(255, 86, 48, .4) !important; box-shadow: 0 .5rem 1rem rgba(255, 86, 48, .4) !important } .shadow-danger-lg { -webkit-box-shadow: 0 1rem 3rem rgba(255, 86, 48, .4) !important; box-shadow: 0 1rem 3rem rgba(255, 86, 48, .4) !important } .shadow-light-sm { -webkit-box-shadow: 0 .125rem .25rem rgba(239, 242, 247, .4) !important; box-shadow: 0 .125rem .25rem rgba(239, 242, 247, .4) !important } .shadow-light { -webkit-box-shadow: 0 .5rem 1rem rgba(239, 242, 247, .4) !important; box-shadow: 0 .5rem 1rem rgba(239, 242, 247, .4) !important } .shadow-light-lg { -webkit-box-shadow: 0 1rem 3rem rgba(239, 242, 247, .4) !important; box-shadow: 0 1rem 3rem rgba(239, 242, 247, .4) !important } .shadow-dark-sm { -webkit-box-shadow: 0 .125rem .25rem rgba(39, 52, 68, .4) !important; box-shadow: 0 .125rem .25rem rgba(39, 52, 68, .4) !important } .shadow-dark { -webkit-box-shadow: 0 .5rem 1rem rgba(39, 52, 68, .4) !important; box-shadow: 0 .5rem 1rem rgba(39, 52, 68, .4) !important } .shadow-dark-lg { -webkit-box-shadow: 0 1rem 3rem rgba(39, 52, 68, .4) !important; box-shadow: 0 1rem 3rem rgba(39, 52, 68, .4) !important } .shadow-neutral-sm { -webkit-box-shadow: 0 .125rem .25rem hsla(0, 0%, 100%, .4) !important; box-shadow: 0 .125rem .25rem hsla(0, 0%, 100%, .4) !important } .shadow-neutral { -webkit-box-shadow: 0 .5rem 1rem hsla(0, 0%, 100%, .4) !important; box-shadow: 0 .5rem 1rem hsla(0, 0%, 100%, .4) !important } .shadow-neutral-lg { -webkit-box-shadow: 0 1rem 3rem hsla(0, 0%, 100%, .4) !important; box-shadow: 0 1rem 3rem hsla(0, 0%, 100%, .4) !important } .shadow-white-sm { -webkit-box-shadow: 0 .125rem .25rem hsla(0, 0%, 100%, .4) !important; box-shadow: 0 .125rem .25rem hsla(0, 0%, 100%, .4) !important } .shadow-white { -webkit-box-shadow: 0 .5rem 1rem hsla(0, 0%, 100%, .4) !important; box-shadow: 0 .5rem 1rem hsla(0, 0%, 100%, .4) !important } .shadow-white-lg { -webkit-box-shadow: 0 1rem 3rem hsla(0, 0%, 100%, .4) !important; box-shadow: 0 1rem 3rem hsla(0, 0%, 100%, .4) !important } .font-weight-300 { font-weight: 300 !important } .font-weight-400 { font-weight: 400 !important } .font-weight-500 { font-weight: 500 !important } .font-weight-600 { font-weight: 600 !important } .font-weight-700 { font-weight: 700 !important } .font-weight-800 { font-weight: 800 !important } .font-weight-900 { font-weight: 900 !important } .font-weight-bolder { font-weight: 700 !important } .text-underline { text-decoration: underline !important } .text-underline--dashed { border-bottom: 1px dashed !important } .text-line-through { text-decoration: line-through !important } a.text-muted:hover { color: #68788f !important } .text-xs { font-size: .75rem !important } .text-sm { font-size: .875rem !important } .text-lg { font-size: 1.25rem !important } .text-xl { font-size: 1.5rem !important } .lh-100 { line-height: 1 !important } .lh-110 { line-height: 1.1 !important } .lh-120 { line-height: 1.2 !important } .lh-130 { line-height: 1.3 !important } .lh-140 { line-height: 1.4 !important } .lh-150 { line-height: 1.5 !important } .lh-160 { line-height: 1.6 !important } .lh-170 { line-height: 1.7 !important } .lh-180 { line-height: 1.8 !important } .ls-1 { letter-spacing: .0625rem !important } .ls-15 { letter-spacing: .09375rem !important } .ls-2 { letter-spacing: .125rem !important } .text-limit { white-space: nowrap; overflow: hidden; -o-text-overflow: ellipsis; text-overflow: ellipsis } .transform-none { -webkit-transform: none !important; -ms-transform: none !important; transform: none !important } .hover-translate-y-n3:hover, .translate-y-n3 { -webkit-transform: translateY(-3px) !important; -ms-transform: translateY(-3px) !important; transform: translateY(-3px) !important } .hover-translate-y-n10:hover, .translate-y-n10 { -webkit-transform: translateY(-10px) !important; -ms-transform: translateY(-10px) !important; transform: translateY(-10px) !important } .hover-translate-x-50:hover, .translate-x-50 { -webkit-transform: translateX(50%) !important; -ms-transform: translateX(50%) !important; transform: translateX(50%) !important } .translate-y-50 { -webkit-transform: translateY(50%) !important; -ms-transform: translateY(50%) !important; transform: translateY(50%) !important } .translate-x-100 { -webkit-transform: translateX(100%) !important; -ms-transform: translateX(100%) !important; transform: translateX(100%) !important } .translate-y-100 { -webkit-transform: translateY(100%) !important; -ms-transform: translateY(100%) !important; transform: translateY(100%) !important } .translate-x-n50 { -webkit-transform: translateX(-50%) !important; -ms-transform: translateX(-50%) !important; transform: translateX(-50%) !important } .translate-y-n50 { -webkit-transform: translateY(-50%) !important; -ms-transform: translateY(-50%) !important; transform: translateY(-50%) !important } .translate-x-n100 { -webkit-transform: translateX(-100%) !important; -ms-transform: translateX(-100%) !important; transform: translateX(-100%) !important } .translate-y-n100 { -webkit-transform: translateY(-100%) !important; -ms-transform: translateY(-100%) !important; transform: translateY(-100%) !important } .scale-90 { -webkit-transform: scale(.9) !important; -ms-transform: scale(.9) !important; transform: scale(.9) !important } .scale-x-90 { -webkit-transform: scaleX(.9) !important; -ms-transform: scaleX(.9) !important; transform: scaleX(.9) !important } .scale-y-90 { -webkit-transform: scaleY(.9) !important; -ms-transform: scaleY(.9) !important; transform: scaleY(.9) !important } .scale-100 { -webkit-transform: scale(1) !important; -ms-transform: scale(1) !important; transform: scale(1) !important } .scale-x-100 { -webkit-transform: scaleX(1) !important; -ms-transform: scaleX(1) !important; transform: scaleX(1) !important } .scale-y-100 { -webkit-transform: scaleY(1) !important; -ms-transform: scaleY(1) !important; transform: scaleY(1) !important } .hover-scale-110:hover, .scale-110 { -webkit-transform: scale(1.1) !important; -ms-transform: scale(1.1) !important; transform: scale(1.1) !important } .hover-scale-x-110:hover, .scale-x-110 { -webkit-transform: scaleX(1.1) !important; -ms-transform: scaleX(1.1) !important; transform: scaleX(1.1) !important } .scale-y-110 { -webkit-transform: scaleY(1.1) !important; -ms-transform: scaleY(1.1) !important; transform: scaleY(1.1) !important } .hover-rotate-90:hover, .rotate-90 { -webkit-transform: rotate(90deg) !important; -ms-transform: rotate(90deg) !important; transform: rotate(90deg) !important } .hover-rotate-180:hover, .rotate-180 { -webkit-transform: rotate(180deg) !important; -ms-transform: rotate(180deg) !important; transform: rotate(180deg) !important } .hover-rotate-270:hover, .rotate-270 { -webkit-transform: rotate(270deg) !important; -ms-transform: rotate(270deg) !important; transform: rotate(270deg) !important } .hover-rotate-360:hover, .rotate-360 { -webkit-transform: rotate(1turn) !important; -ms-transform: rotate(1turn) !important; transform: rotate(1turn) !important } .hover-rotate-n90:hover, .rotate-n90 { -webkit-transform: rotate(-90deg) !important; -ms-transform: rotate(-90deg) !important; transform: rotate(-90deg) !important } .skew-x-5 { -webkit-transform: skewX(5deg) !important; -ms-transform: skewX(5deg) !important; transform: skewX(5deg) !important } .skew-y-5 { -webkit-transform: skewY(5deg) !important; -ms-transform: skewY(5deg) !important; transform: skewY(5deg) !important } .skew-x-n10 { -webkit-transform: skewX(-10deg) !important; -ms-transform: skewX(-10deg) !important; transform: skewX(-10deg) !important } .skew-y-n10 { -webkit-transform: skewY(-10deg) !important; -ms-transform: skewY(-10deg) !important; transform: skewY(-10deg) !important } .perspective-left { -webkit-transform: scale(1) perspective(2000px) rotateY(11deg) rotateX(2deg) rotate(-2deg); transform: scale(1) perspective(2000px) rotateY(11deg) rotateX(2deg) rotate(-2deg) } .perspective-right { -webkit-transform: scale(1) perspective(1040px) rotateY(-11deg) rotateX(2deg) rotate(2deg); transform: scale(1) perspective(1040px) rotateY(-11deg) rotateX(2deg) rotate(2deg) } .transform-origin-t { -webkit-transform-origin: 50% 0 !important; -ms-transform-origin: 50% 0 !important; transform-origin: 50% 0 !important } .transform-origin-r { -webkit-transform-origin: 100% 50% !important; -ms-transform-origin: 100% 50% !important; transform-origin: 100% 50% !important } .transform-origin-b { -webkit-transform-origin: 50% 100% !important; -ms-transform-origin: 50% 100% !important; transform-origin: 50% 100% !important } .transform-origin-l { -webkit-transform-origin: 0 50% !important; -ms-transform-origin: 0 50% !important; transform-origin: 0 50% !important } .zindex-100 { z-index: 100 !important } .zindex-101 { z-index: 101 !important } .zindex-102 { z-index: 102 !important } .action-item { display: inline-block; font-size: .875rem; cursor: pointer; color: #8492a6; background: transparent; border: 0; padding: .375rem .25rem; -webkit-transition: color .3s; -o-transition: color .3s; transition: color .3s } @media (prefers-reduced-motion:reduce) { .action-item { -webkit-transition: none; -o-transition: none; transition: none } } .action-item:hover { color: #a2acbb } .action-item span { padding-left: .35rem; display: inline-block } .actions-dark .action-item { color: hsla(0, 0%, 100%, .7) } .actions-dark .action-item:hover { color: #fff } .action-favorite { color: #fc0 } .action-favorite.active, .action-favorite:hover { color: #dbaf00 } .action-love { color: #ff5630 } .action-love.active, .action-love:hover { color: #ff390c } .action-like { color: #2684ff } .action-like.active, .action-like:hover { color: #0270ff } .action-item-lg { font-size: 1.25rem } .card>.actions { position: absolute; right: .875rem; top: 1rem } .card-stats .actions { right: .75rem; top: .5rem } .actions-toolbar { position: relative } .actions-search { display: none; opacity: 0; -webkit-box-align: center; -ms-flex-align: center; align-items: center; position: absolute; left: 0; top: 0; width: 100%; height: 100%; background-color: #fff; border-color: #eff2f7; z-index: 1; -webkit-box-shadow: 0 .75rem 1.5rem rgba(18, 38, 63, .03); box-shadow: 0 .75rem 1.5rem rgba(18, 38, 63, .03); border-radius: .375rem; -webkit-transition: all .2s ease; -o-transition: all .2s ease; transition: all .2s ease } @media (prefers-reduced-motion:reduce) { .actions-search { -webkit-transition: none; -o-transition: none; transition: none } } .actions-search.show { display: -webkit-box; display: -ms-flexbox; display: flex; opacity: 1 } .alert { font-size: .875rem } .alert strong { font-weight: 600 } .alert hr { margin: .875rem 0 } .alert p:last-child { margin-bottom: 0 } .alert-heading { font-weight: 600; font-size: 1.5rem; margin-top: .15rem } .alert-flush { border-radius: 0; border-left: 0; border-right: 0 } .alert-modern { display: inline-block; padding: .375rem 1rem .375rem .5rem; border-radius: 50rem } .alert-modern:after { margin-left: 10.2px; display: inline-block; font-style: normal; font-variant: normal; text-rendering: auto; -webkit-font-smoothing: antialiased; font-family: Font Awesome\ 5 Pro, Font Awesome\ 5 Free; font-weight: 700; content: "\F105" } .alert-modern:empty:after { margin-left: 0 } .alert-modern .badge+.alert-content { margin-left: .5rem } .alert-dark { background-color: #273444; color: #fff; border: 0 } .alert-dark .alert-link, .alert-dark .close:focus>span:not(.sr-only), .alert-dark .close:hover>span:not(.sr-only), .alert-dark .close>span:not(.sr-only) { color: #fff } .alert-dark hr { border-color: rgba(216, 203, 187, .1) } [class*=alert-outline-] { border-right: 1px solid } [class*=alert-outline-] .alert-group-prepend { padding-right: .875rem } .alert-outline-primary { background: transparent; color: #4816a2; border-color: #d6b8ff } .alert-outline-primary hr { border-top-color: #e5d2ff } .alert-outline-primary .alert-link { color: #4816a2 } .alert-outline-primary .alert-group-prepend { border-right: 1px solid #d6b8ff } .alert-outline-secondary { background: transparent; color: #8b939e; border-color: #fbfbfd } .alert-outline-secondary hr { border-top-color: #fff } .alert-outline-secondary .alert-link { color: #8b939e } .alert-outline-secondary .alert-group-prepend { border-right: 1px solid #fbfbfd } .alert-outline-success { background: transparent; color: #2b735f; border-color: #c7eadb } .alert-outline-success hr { border-top-color: #daf1e7 } .alert-outline-success .alert-link { color: #2b735f } .alert-outline-success .alert-group-prepend { border-right: 1px solid #c7eadb } .alert-outline-info { background: transparent; color: #0f758e; border-color: #b8ebf4 } .alert-outline-info hr { border-top-color: #cef1f7 } .alert-outline-info .alert-link { color: #0f758e } .alert-outline-info .alert-group-prepend { border-right: 1px solid #b8ebf4 } .alert-outline-warning { background: transparent; color: #936f1d; border-color: #ffe7b8 } .alert-outline-warning hr { border-top-color: #fff0d2 } .alert-outline-warning .alert-link { color: #936f1d } .alert-outline-warning .alert-group-prepend { border-right: 1px solid #ffe7b8 } .alert-outline-danger { background: transparent; color: #934236; border-color: #ffd0c5 } .alert-outline-danger hr { border-top-color: #ffe5df } .alert-outline-danger .alert-link { color: #934236 } .alert-outline-danger .alert-group-prepend { border-right: 1px solid #ffd0c5 } .alert-outline-light { background: transparent; color: #8b939e; border-color: #fbfbfd } .alert-outline-light hr { border-top-color: #fff } .alert-outline-light .alert-link { color: #8b939e } .alert-outline-light .alert-group-prepend { border-right: 1px solid #fbfbfd } .alert-outline-dark { background: transparent; color: #233141; border-color: #c3c6cb } .alert-outline-dark hr { border-top-color: #d1d3d7 } .alert-outline-dark .alert-link { color: #233141 } .alert-outline-dark .alert-group-prepend { border-right: 1px solid #c3c6cb } .alert-outline-neutral { background: transparent; color: #939aa2; border-color: #fff } .alert-outline-neutral hr { border-top-color: #fff } .alert-outline-neutral .alert-link { color: #939aa2 } .alert-outline-neutral .alert-group-prepend { border-right: 1px solid #fff } .alert-outline-white { background: transparent; color: #939aa2; border-color: #fff } .alert-outline-white hr { border-top-color: #fff } .alert-outline-white .alert-link { color: #939aa2 } .alert-outline-white .alert-group-prepend { border-right: 1px solid #fff } .alert-messages:not(:last-child) { margin-bottom: 1.25rem } .alert-notify { display: -webkit-box !important; display: -ms-flexbox !important; display: flex !important; max-width: 600px; width: calc(100% - 30px); padding-right: 80px; -webkit-box-shadow: 0 1rem 3rem rgba(31, 45, 61, .125); box-shadow: 0 1rem 3rem rgba(31, 45, 61, .125) } .alert-notify:hover { z-index: 1081 !important } .alert-group { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; padding-top: 0; padding-bottom: 0 } .alert-group .alert-group-prepend { display: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex; vertical-align: middle; margin-right: .5rem } .alert-group .alert-action, .alert-group .alert-content, .alert-group .alert-group-prepend { padding-top: .875rem; padding-bottom: .875rem } .alert-group .alert-action { margin-left: auto } .alert-group .btn { padding: .25rem .75rem; font-size: .875rem; line-height: 1.6 } .alert-group[class*=alert-outline] .alert-group-prepend { margin-right: .875rem } .alert-group-icon { display: inline-block; min-width: 26px; text-align: center } .alert-dismissible .alert-group-prepend { display: block } .alert-dismissible .close { top: 50%; right: .875rem; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); padding: 0 } .avatar { position: relative; color: #fff; display: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; font-size: 1rem; font-weight: 600; height: 50px; width: 50px } .avatar, .avatar img { border-radius: .25rem } .avatar img { width: 100% } .avatar.rounded-circle img { border-radius: 50% } .avatar span { background-color: #6e00ff } .avatar+.avatar { margin-left: .25rem } .avatar+.avatar-content { display: inline-block; margin-left: .75rem } .avatar-lg { width: 75px; height: 75px; font-size: 1.25rem } .avatar-sm { width: 31.25px; height: 31.25px; font-size: .75rem; border-radius: .2rem } .avatar-group { display: inline-block; line-height: 1 } .avatar-group .avatar { -webkit-transition: margin .15s ease-in-out; -o-transition: margin .15s ease-in-out; transition: margin .15s ease-in-out; z-index: 1 } .avatar-group .avatar:hover { z-index: 2 } .avatar-group .avatar img { border: 2px solid #fff } .avatar-group .avatar+.avatar { margin-left: -1.5rem; border-top-left-radius: 0; border-bottom-left-radius: 0 } .avatar-group .avatar-sm+.avatar-sm { margin-left: -1rem } .avatar-group:hover .avatar { border-top-left-radius: .25rem; border-bottom-left-radius: .25rem } .avatar-group:hover .avatar-sm { border-top-left-radius: .2rem; border-bottom-left-radius: .2rem } .hover-avatar-ungroup:hover .avatar:not(:first-child) { margin-left: 0 } .avatar-parent-child { display: inline-block; position: relative } .avatar-child { position: absolute; right: 0; bottom: 0; background-color: #fff; border: 2px solid #fff; border-radius: .2rem } .avatar.rounded-circle+.avatar-child { border-radius: 50% } .avatar+.avatar-child { width: 20px; height: 20px } .avatar-lg+.avatar-child { width: 24px; height: 24px } .avatar-sm+.avatar-child { width: 16px; height: 16px } .avatar+.avatar-badge { width: 14px; height: 14px; right: -6px; bottom: 15px } .avatar-lg+.avatar-badge { width: 16px; height: 16px; right: -5px; bottom: 20px } .avatar-sm+.badge { width: 12px; height: 12px; right: -6px; bottom: 10px } .avatar-connect { position: relative } .avatar-connect:before { content: ""; position: absolute; top: 50%; left: 0; width: 100%; border-bottom: 2px dashed #eff2f7 } .avatar-connect ul { margin: 0; padding: 0; list-style: none } .badge { display: inline; text-transform: none } .badge i { margin-right: .5rem } .badge-md { padding: .65em 1em } .badge-lg { padding: .85em 1.375em } .badge-inline { margin-right: .625rem } .badge-inline+span { top: 2px; position: relative } .badge-inline+span>a { text-decoration: underline } .btn .badge:not(:first-child) { margin-left: .5rem } .btn .badge:not(:last-child) { margin-right: .5rem } .badge-soft-primary { color: #6e00ff; background-color: #e2ccff } .badge-soft-primary[href]:focus, .badge-soft-primary[href]:hover { color: #6e00ff; text-decoration: none; background-color: #d4b3ff } .badge-soft-secondary { color: #eff2f7; background-color: #fcfcfd } .badge-soft-secondary[href]:focus, .badge-soft-secondary[href]:hover { color: #eff2f7; text-decoration: none; background-color: #ededf3 } .badge-soft-success { color: #36b37e; background-color: #d7f0e5 } .badge-soft-success[href]:focus, .badge-soft-success[href]:hover { color: #36b37e; text-decoration: none; background-color: #c4e9d9 } .badge-soft-info { color: #00b8d9; background-color: #ccf1f7 } .badge-soft-info[href]:focus, .badge-soft-info[href]:hover { color: #00b8d9; text-decoration: none; background-color: #b6ebf4 } .badge-soft-warning { color: #ffab00; background-color: #fec } .badge-soft-warning[href]:focus, .badge-soft-warning[href]:hover { color: #ffab00; text-decoration: none; background-color: #ffe6b3 } .badge-soft-danger { color: #ff5630; background-color: #ffddd6 } .badge-soft-danger[href]:focus, .badge-soft-danger[href]:hover { color: #ff5630; text-decoration: none; background-color: #ffc8bd } .badge-soft-light { color: #eff2f7; background-color: #fcfcfd } .badge-soft-light[href]:focus, .badge-soft-light[href]:hover { color: #eff2f7; text-decoration: none; background-color: #ededf3 } .badge-soft-dark { color: #273444; background-color: #d4d6da } .badge-soft-dark[href]:focus, .badge-soft-dark[href]:hover { color: #273444; text-decoration: none; background-color: #c6c9ce } .badge-soft-neutral { color: #fff; background-color: #fff } .badge-soft-neutral[href]:focus, .badge-soft-neutral[href]:hover { color: #fff; text-decoration: none; background-color: #f2f2f2 } .badge-soft-white { color: #fff; background-color: #fff } .badge-soft-white[href]:focus, .badge-soft-white[href]:hover { color: #fff; text-decoration: none; background-color: #f2f2f2 } .badge-dot { padding-left: 0; padding-right: 0; background: transparent; color: #8492a6; font-size: .875rem } .badge-dot i { display: inline-block; vertical-align: middle; width: .375rem; height: .375rem; border-radius: 50%; margin-right: .375rem } .badge-dot.badge-md i { width: .5rem; height: .5rem } .badge-dot.badge-lg i { width: .625rem; height: .625rem } .badge-circle { text-align: center; display: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; border-radius: 50%; padding: 0 !important; min-width: 1.25rem; min-height: 1.25rem; font-size: .75rem; font-weight: 600 } .badge-circle.badge-md { width: 1.5rem; height: 1.5rem } .badge-circle.badge-lg { width: 2rem; height: 2rem } .btn .badge-floating { position: absolute; top: -50%; right: 0; -webkit-transform: translate(50%, 50%); -ms-transform: translate(50%, 50%); transform: translate(50%, 50%); margin: 0; border: 3px solid } .bg-shape-circle { display: block; border-radius: 50%; background-color: rgba(31, 45, 61, .05); position: absolute; margin: auto } .bg-shape-circle-lg { width: 800px; height: 800px } .breadcrumb { border: 1px solid #eff2f7 } .breadcrumb-sm { font-size: .875rem } .breadcrumb-links { border: 0; background-color: transparent; border-radius: 0 } .breadcrumb-links .breadcrumb-item+.breadcrumb-item:before { content: ""; width: .3rem; height: .6rem; margin-right: .5rem; -webkit-mask: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iMTYiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTIgMTRsNi02LTYtNiIgc3Ryb2tlPSIjMDAwIiBzdHJva2Utd2lkdGg9IjIuNSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz48L3N2Zz4=) no-repeat 50% 50%; mask: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iMTYiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTIgMTRsNi02LTYtNiIgc3Ryb2tlPSIjMDAwIiBzdHJva2Utd2lkdGg9IjIuNSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz48L3N2Zz4=) no-repeat 50% 50%; -webkit-mask-size: contain; mask-size: contain; background: #e0e6ed } .breadcrumb-dark .breadcrumb-item a { color: hsla(0, 0%, 100%, .8) } .breadcrumb-dark .breadcrumb-item a:hover { color: #fff } .breadcrumb-dark .breadcrumb-item+.breadcrumb-item:before { color: hsla(0, 0%, 100%, .8) } .breadcrumb-light .breadcrumb-item a { color: rgba(39, 52, 68, .8) } .breadcrumb-light .breadcrumb-item a:hover { color: #273444 } .breadcrumb-light .breadcrumb-item+.breadcrumb-item:before { color: rgba(39, 52, 68, .8) } .btn { position: relative; -webkit-transition: all .2s ease; -o-transition: all .2s ease; transition: all .2s ease } @media (prefers-reduced-motion:reduce) { .btn { -webkit-transition: none; -o-transition: none; transition: none } } .btn:not(:last-child) { margin-right: .5rem } .btn-group>.btn { margin: 0 } .btn-neutral { background-color: #fff; color: #273444; border: 1px solid #eff2f7 } .btn-neutral:hover { border-color: #e5eaf2; background-color: #f7f7f7 } .btn-neutral:not(:disabled):not(.disabled).active { border-color: #6e00ff; color: #6e00ff; background-color: #fff } .btn-xl { padding: 1.5rem 2rem; font-size: 1.5rem; line-height: 1.5; border-radius: .5rem } @media (max-width:1200px) { .btn-xl { font-size: calc(1.275rem + .3vw) } } .btn-nobg { padding: 0 } .btn-nobg, .btn-nobg:hover { background: transparent !important } .btn-nobg:hover { border-color: transparent !important } .btn-nobg--hover:hover { background-color: transparent } .btn-soft-primary { color: #6e00ff; background-color: #e2ccff; border-color: #e2ccff; -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15) } .btn-soft-primary:hover { color: #fff; background-color: #6e00ff; border-color: #6e00ff; -webkit-box-shadow: 0 4px 11px rgba(226, 204, 255, .35); box-shadow: 0 4px 11px rgba(226, 204, 255, .35) } .btn-soft-primary.focus, .btn-soft-primary:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 0 rgba(99, 8, 227, .5); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 0 rgba(99, 8, 227, .5) } .btn-soft-primary.disabled, .btn-soft-primary:disabled { color: #6e00ff; background-color: #e2ccff; border-color: #e2ccff } .btn-soft-primary:not(:disabled):not(.disabled).active, .btn-soft-primary:not(:disabled):not(.disabled):active, .show>.btn-soft-primary.dropdown-toggle { color: #fff; background-color: #6e00ff; border-color: #6e00ff } .btn-soft-primary:not(:disabled):not(.disabled).active:focus, .btn-soft-primary:not(:disabled):not(.disabled):active:focus, .show>.btn-soft-primary.dropdown-toggle:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 0 rgba(99, 8, 227, .5); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 0 rgba(99, 8, 227, .5) } .btn-soft-secondary { color: #eff2f7; background-color: #fcfcfd; border-color: #fcfcfd; -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15) } .btn-soft-secondary:hover { color: #273444; background-color: #eff2f7; border-color: #eff2f7; -webkit-box-shadow: 0 4px 11px rgba(252, 252, 253, .35); box-shadow: 0 4px 11px rgba(252, 252, 253, .35) } .btn-soft-secondary.focus, .btn-soft-secondary:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 0 rgba(209, 214, 220, .5); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 0 rgba(209, 214, 220, .5) } .btn-soft-secondary.disabled, .btn-soft-secondary:disabled { color: #eff2f7; background-color: #fcfcfd; border-color: #fcfcfd } .btn-soft-secondary:not(:disabled):not(.disabled).active, .btn-soft-secondary:not(:disabled):not(.disabled):active, .show>.btn-soft-secondary.dropdown-toggle { color: #273444; background-color: #eff2f7; border-color: #eff2f7 } .btn-soft-secondary:not(:disabled):not(.disabled).active:focus, .btn-soft-secondary:not(:disabled):not(.disabled):active:focus, .show>.btn-soft-secondary.dropdown-toggle:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 0 rgba(209, 214, 220, .5); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 0 rgba(209, 214, 220, .5) } .btn-soft-success { color: #36b37e; background-color: #d7f0e5; border-color: #d7f0e5; -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15) } .btn-soft-success:hover { color: #fff; background-color: #36b37e; border-color: #36b37e; -webkit-box-shadow: 0 4px 11px rgba(215, 240, 229, .35); box-shadow: 0 4px 11px rgba(215, 240, 229, .35) } .btn-soft-success.focus, .btn-soft-success:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 0 rgba(52, 160, 117, .5); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 0 rgba(52, 160, 117, .5) } .btn-soft-success.disabled, .btn-soft-success:disabled { color: #36b37e; background-color: #d7f0e5; border-color: #d7f0e5 } .btn-soft-success:not(:disabled):not(.disabled).active, .btn-soft-success:not(:disabled):not(.disabled):active, .show>.btn-soft-success.dropdown-toggle { color: #fff; background-color: #36b37e; border-color: #36b37e } .btn-soft-success:not(:disabled):not(.disabled).active:focus, .btn-soft-success:not(:disabled):not(.disabled):active:focus, .show>.btn-soft-success.dropdown-toggle:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 0 rgba(52, 160, 117, .5); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 0 rgba(52, 160, 117, .5) } .btn-soft-info { color: #00b8d9; background-color: #ccf1f7; border-color: #ccf1f7; -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15) } .btn-soft-info:hover { color: #fff; background-color: #00b8d9; border-color: #00b8d9; -webkit-box-shadow: 0 4px 11px rgba(204, 241, 247, .35); box-shadow: 0 4px 11px rgba(204, 241, 247, .35) } .btn-soft-info.focus, .btn-soft-info:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 0 rgba(6, 164, 195, .5); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 0 rgba(6, 164, 195, .5) } .btn-soft-info.disabled, .btn-soft-info:disabled { color: #00b8d9; background-color: #ccf1f7; border-color: #ccf1f7 } .btn-soft-info:not(:disabled):not(.disabled).active, .btn-soft-info:not(:disabled):not(.disabled):active, .show>.btn-soft-info.dropdown-toggle { color: #fff; background-color: #00b8d9; border-color: #00b8d9 } .btn-soft-info:not(:disabled):not(.disabled).active:focus, .btn-soft-info:not(:disabled):not(.disabled):active:focus, .show>.btn-soft-info.dropdown-toggle:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 0 rgba(6, 164, 195, .5); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 0 rgba(6, 164, 195, .5) } .btn-soft-warning { color: #ffab00; background-color: #fec; border-color: #fec; -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15) } .btn-soft-warning:hover { color: #fff; background-color: #ffab00; border-color: #ffab00; -webkit-box-shadow: 0 4px 11px rgba(255, 238, 204, .35); box-shadow: 0 4px 11px rgba(255, 238, 204, .35) } .btn-soft-warning.focus, .btn-soft-warning:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 0 rgba(223, 153, 10, .5); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 0 rgba(223, 153, 10, .5) } .btn-soft-warning.disabled, .btn-soft-warning:disabled { color: #ffab00; background-color: #fec; border-color: #fec } .btn-soft-warning:not(:disabled):not(.disabled).active, .btn-soft-warning:not(:disabled):not(.disabled):active, .show>.btn-soft-warning.dropdown-toggle { color: #fff; background-color: #ffab00; border-color: #ffab00 } .btn-soft-warning:not(:disabled):not(.disabled).active:focus, .btn-soft-warning:not(:disabled):not(.disabled):active:focus, .show>.btn-soft-warning.dropdown-toggle:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 0 rgba(223, 153, 10, .5); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 0 rgba(223, 153, 10, .5) } .btn-soft-danger { color: #ff5630; background-color: #ffddd6; border-color: #ffddd6; -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15) } .btn-soft-danger:hover { color: #fff; background-color: #ff5630; border-color: #ff5630; -webkit-box-shadow: 0 4px 11px rgba(255, 221, 214, .35); box-shadow: 0 4px 11px rgba(255, 221, 214, .35) } .btn-soft-danger.focus, .btn-soft-danger:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 0 rgba(223, 81, 51, .5); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 0 rgba(223, 81, 51, .5) } .btn-soft-danger.disabled, .btn-soft-danger:disabled { color: #ff5630; background-color: #ffddd6; border-color: #ffddd6 } .btn-soft-danger:not(:disabled):not(.disabled).active, .btn-soft-danger:not(:disabled):not(.disabled):active, .show>.btn-soft-danger.dropdown-toggle { color: #fff; background-color: #ff5630; border-color: #ff5630 } .btn-soft-danger:not(:disabled):not(.disabled).active:focus, .btn-soft-danger:not(:disabled):not(.disabled):active:focus, .show>.btn-soft-danger.dropdown-toggle:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 0 rgba(223, 81, 51, .5); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 0 rgba(223, 81, 51, .5) } .btn-soft-light { color: #eff2f7; background-color: #fcfcfd; border-color: #fcfcfd; -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15) } .btn-soft-light:hover { color: #273444; background-color: #eff2f7; border-color: #eff2f7; -webkit-box-shadow: 0 4px 11px rgba(252, 252, 253, .35); box-shadow: 0 4px 11px rgba(252, 252, 253, .35) } .btn-soft-light.focus, .btn-soft-light:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 0 rgba(209, 214, 220, .5); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 0 rgba(209, 214, 220, .5) } .btn-soft-light.disabled, .btn-soft-light:disabled { color: #eff2f7; background-color: #fcfcfd; border-color: #fcfcfd } .btn-soft-light:not(:disabled):not(.disabled).active, .btn-soft-light:not(:disabled):not(.disabled):active, .show>.btn-soft-light.dropdown-toggle { color: #273444; background-color: #eff2f7; border-color: #eff2f7 } .btn-soft-light:not(:disabled):not(.disabled).active:focus, .btn-soft-light:not(:disabled):not(.disabled):active:focus, .show>.btn-soft-light.dropdown-toggle:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 0 rgba(209, 214, 220, .5); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 0 rgba(209, 214, 220, .5) } .btn-soft-dark { color: #273444; background-color: #d4d6da; border-color: #d4d6da; -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15) } .btn-soft-dark:hover { color: #fff; background-color: #273444; border-color: #273444; -webkit-box-shadow: 0 4px 11px rgba(212, 214, 218, .35); box-shadow: 0 4px 11px rgba(212, 214, 218, .35) } .btn-soft-dark.focus, .btn-soft-dark:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 0 rgba(39, 52, 68, .5); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 0 rgba(39, 52, 68, .5) } .btn-soft-dark.disabled, .btn-soft-dark:disabled { color: #273444; background-color: #d4d6da; border-color: #d4d6da } .btn-soft-dark:not(:disabled):not(.disabled).active, .btn-soft-dark:not(:disabled):not(.disabled):active, .show>.btn-soft-dark.dropdown-toggle { color: #fff; background-color: #273444; border-color: #273444 } .btn-soft-dark:not(:disabled):not(.disabled).active:focus, .btn-soft-dark:not(:disabled):not(.disabled):active:focus, .show>.btn-soft-dark.dropdown-toggle:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 0 rgba(39, 52, 68, .5); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 0 rgba(39, 52, 68, .5) } .btn-soft-neutral { color: #fff; background-color: #fff; border-color: #fff; -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15) } .btn-soft-neutral:hover { color: #273444; background-color: #fff; border-color: #fff; -webkit-box-shadow: 0 4px 11px hsla(0, 0%, 100%, .35); box-shadow: 0 4px 11px hsla(0, 0%, 100%, .35) } .btn-soft-neutral.focus, .btn-soft-neutral:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 0 rgba(223, 225, 227, .5); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 0 rgba(223, 225, 227, .5) } .btn-soft-neutral.disabled, .btn-soft-neutral:disabled { color: #fff; background-color: #fff; border-color: #fff } .btn-soft-neutral:not(:disabled):not(.disabled).active, .btn-soft-neutral:not(:disabled):not(.disabled):active, .show>.btn-soft-neutral.dropdown-toggle { color: #273444; background-color: #fff; border-color: #fff } .btn-soft-neutral:not(:disabled):not(.disabled).active:focus, .btn-soft-neutral:not(:disabled):not(.disabled):active:focus, .show>.btn-soft-neutral.dropdown-toggle:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 0 rgba(223, 225, 227, .5); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 0 rgba(223, 225, 227, .5) } .btn-soft-white { color: #fff; -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15) } .btn-soft-white, .btn-soft-white:hover { background-color: #fff; border-color: #fff } .btn-soft-white:hover { color: #273444; -webkit-box-shadow: 0 4px 11px hsla(0, 0%, 100%, .35); box-shadow: 0 4px 11px hsla(0, 0%, 100%, .35) } .btn-soft-white.focus, .btn-soft-white:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 0 rgba(223, 225, 227, .5); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 0 rgba(223, 225, 227, .5) } .btn-soft-white.disabled, .btn-soft-white:disabled { color: #fff; background-color: #fff; border-color: #fff } .btn-soft-white:not(:disabled):not(.disabled).active, .btn-soft-white:not(:disabled):not(.disabled):active, .show>.btn-soft-white.dropdown-toggle { color: #273444; background-color: #fff; border-color: #fff } .btn-soft-white:not(:disabled):not(.disabled).active:focus, .btn-soft-white:not(:disabled):not(.disabled):active:focus, .show>.btn-soft-white.dropdown-toggle:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 0 rgba(223, 225, 227, .5); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 0 rgba(223, 225, 227, .5) } .btn-facebook { color: #fff; background-color: #3b5999; border-color: #3b5999; -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15) } .btn-facebook:hover { color: #fff; background-color: #30497d; border-color: #2d4474 } .btn-facebook.focus, .btn-facebook:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(59, 89, 153, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(59, 89, 153, .35) } .btn-facebook.disabled, .btn-facebook:disabled { color: #fff; background-color: #3b5999; border-color: #3b5999 } .btn-facebook:not(:disabled):not(.disabled).active, .btn-facebook:not(:disabled):not(.disabled):active, .show>.btn-facebook.dropdown-toggle { color: #fff; background-color: #2d4474; border-color: #293e6b } .btn-facebook:not(:disabled):not(.disabled).active:focus, .btn-facebook:not(:disabled):not(.disabled):active:focus, .show>.btn-facebook.dropdown-toggle:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(59, 89, 153, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(59, 89, 153, .35) } .btn-twitter { color: #fff; background-color: #1da1f2; border-color: #1da1f2; -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15) } .btn-twitter:hover { color: #fff; background-color: #0d8ddc; border-color: #0c85d0 } .btn-twitter.focus, .btn-twitter:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(29, 161, 242, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(29, 161, 242, .35) } .btn-twitter.disabled, .btn-twitter:disabled { color: #fff; background-color: #1da1f2; border-color: #1da1f2 } .btn-twitter:not(:disabled):not(.disabled).active, .btn-twitter:not(:disabled):not(.disabled):active, .show>.btn-twitter.dropdown-toggle { color: #fff; background-color: #0c85d0; border-color: #0b7ec4 } .btn-twitter:not(:disabled):not(.disabled).active:focus, .btn-twitter:not(:disabled):not(.disabled):active:focus, .show>.btn-twitter.dropdown-toggle:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(29, 161, 242, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(29, 161, 242, .35) } .btn-google-plus { color: #fff; background-color: #dd4b39; border-color: #dd4b39; -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15) } .btn-google-plus:hover { color: #fff; background-color: #cd3623; border-color: #c23321 } .btn-google-plus.focus, .btn-google-plus:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(221, 75, 57, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(221, 75, 57, .35) } .btn-google-plus.disabled, .btn-google-plus:disabled { color: #fff; background-color: #dd4b39; border-color: #dd4b39 } .btn-google-plus:not(:disabled):not(.disabled).active, .btn-google-plus:not(:disabled):not(.disabled):active, .show>.btn-google-plus.dropdown-toggle { color: #fff; background-color: #c23321; border-color: #b7301f } .btn-google-plus:not(:disabled):not(.disabled).active:focus, .btn-google-plus:not(:disabled):not(.disabled):active:focus, .show>.btn-google-plus.dropdown-toggle:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(221, 75, 57, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(221, 75, 57, .35) } .btn-instagram { color: #fff; background-color: #e4405f; border-color: #e4405f; -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15) } .btn-instagram:hover { color: #fff; background-color: #de1f44; border-color: #d31e40 } .btn-instagram.focus, .btn-instagram:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(228, 64, 95, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(228, 64, 95, .35) } .btn-instagram.disabled, .btn-instagram:disabled { color: #fff; background-color: #e4405f; border-color: #e4405f } .btn-instagram:not(:disabled):not(.disabled).active, .btn-instagram:not(:disabled):not(.disabled):active, .show>.btn-instagram.dropdown-toggle { color: #fff; background-color: #d31e40; border-color: #c81c3d } .btn-instagram:not(:disabled):not(.disabled).active:focus, .btn-instagram:not(:disabled):not(.disabled):active:focus, .show>.btn-instagram.dropdown-toggle:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(228, 64, 95, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(228, 64, 95, .35) } .btn-pinterest { color: #fff; background-color: #bd081c; border-color: #bd081c; -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15) } .btn-pinterest:hover { color: #fff; background-color: #980617; border-color: #8c0615 } .btn-pinterest.focus, .btn-pinterest:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(189, 8, 28, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(189, 8, 28, .35) } .btn-pinterest.disabled, .btn-pinterest:disabled { color: #fff; background-color: #bd081c; border-color: #bd081c } .btn-pinterest:not(:disabled):not(.disabled).active, .btn-pinterest:not(:disabled):not(.disabled):active, .show>.btn-pinterest.dropdown-toggle { color: #fff; background-color: #8c0615; border-color: #800513 } .btn-pinterest:not(:disabled):not(.disabled).active:focus, .btn-pinterest:not(:disabled):not(.disabled):active:focus, .show>.btn-pinterest.dropdown-toggle:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(189, 8, 28, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(189, 8, 28, .35) } .btn-youtube { color: #fff; background-color: #cd201f; border-color: #cd201f; -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15) } .btn-youtube:hover { color: #fff; background-color: #ac1b1a; border-color: #a11918 } .btn-youtube.focus, .btn-youtube:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(205, 32, 31, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(205, 32, 31, .35) } .btn-youtube.disabled, .btn-youtube:disabled { color: #fff; background-color: #cd201f; border-color: #cd201f } .btn-youtube:not(:disabled):not(.disabled).active, .btn-youtube:not(:disabled):not(.disabled):active, .show>.btn-youtube.dropdown-toggle { color: #fff; background-color: #a11918; border-color: #961717 } .btn-youtube:not(:disabled):not(.disabled).active:focus, .btn-youtube:not(:disabled):not(.disabled):active:focus, .show>.btn-youtube.dropdown-toggle:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(205, 32, 31, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(205, 32, 31, .35) } .btn-slack { color: #fff; background-color: #3aaf85; border-color: #3aaf85; -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15) } .btn-slack:hover { color: #fff; background-color: #30926f; border-color: #2d8968 } .btn-slack.focus, .btn-slack:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(58, 175, 133, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(58, 175, 133, .35) } .btn-slack.disabled, .btn-slack:disabled { color: #fff; background-color: #3aaf85; border-color: #3aaf85 } .btn-slack:not(:disabled):not(.disabled).active, .btn-slack:not(:disabled):not(.disabled):active, .show>.btn-slack.dropdown-toggle { color: #fff; background-color: #2d8968; border-color: #2a7f61 } .btn-slack:not(:disabled):not(.disabled).active:focus, .btn-slack:not(:disabled):not(.disabled):active:focus, .show>.btn-slack.dropdown-toggle:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(58, 175, 133, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(58, 175, 133, .35) } .btn-dribbble { color: #fff; background-color: #ea4c89; border-color: #ea4c89; -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15) } .btn-dribbble:hover { color: #fff; background-color: #e62a72; border-color: #e51e6b } .btn-dribbble.focus, .btn-dribbble:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(234, 76, 137, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(234, 76, 137, .35) } .btn-dribbble.disabled, .btn-dribbble:disabled { color: #fff; background-color: #ea4c89; border-color: #ea4c89 } .btn-dribbble:not(:disabled):not(.disabled).active, .btn-dribbble:not(:disabled):not(.disabled):active, .show>.btn-dribbble.dropdown-toggle { color: #fff; background-color: #e51e6b; border-color: #dc1a65 } .btn-dribbble:not(:disabled):not(.disabled).active:focus, .btn-dribbble:not(:disabled):not(.disabled):active:focus, .show>.btn-dribbble.dropdown-toggle:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(234, 76, 137, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(234, 76, 137, .35) } .btn-github { color: #fff; background-color: #222; border-color: #222; -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15) } .btn-github:hover { color: #fff; background-color: #0f0f0f; border-color: #090909 } .btn-github.focus, .btn-github:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(34, 34, 34, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(34, 34, 34, .35) } .btn-github.disabled, .btn-github:disabled { color: #fff; background-color: #222; border-color: #222 } .btn-github:not(:disabled):not(.disabled).active, .btn-github:not(:disabled):not(.disabled):active, .show>.btn-github.dropdown-toggle { color: #fff; background-color: #090909; border-color: #020202 } .btn-github:not(:disabled):not(.disabled).active:focus, .btn-github:not(:disabled):not(.disabled):active:focus, .show>.btn-github.dropdown-toggle:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(34, 34, 34, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(34, 34, 34, .35) } .btn-vimeo { color: #fff; background-color: #04a0f0; border-color: #04a0f0; -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15) } .btn-vimeo:hover { color: #fff; background-color: #0387ca; border-color: #037fbe } .btn-vimeo.focus, .btn-vimeo:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(4, 160, 240, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(4, 160, 240, .35) } .btn-vimeo.disabled, .btn-vimeo:disabled { color: #fff; background-color: #04a0f0; border-color: #04a0f0 } .btn-vimeo:not(:disabled):not(.disabled).active, .btn-vimeo:not(:disabled):not(.disabled):active, .show>.btn-vimeo.dropdown-toggle { color: #fff; background-color: #037fbe; border-color: #0376b1 } .btn-vimeo:not(:disabled):not(.disabled).active:focus, .btn-vimeo:not(:disabled):not(.disabled):active:focus, .show>.btn-vimeo.dropdown-toggle:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(4, 160, 240, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(4, 160, 240, .35) } .btn i:not(:first-child), .btn svg:not(:first-child) { margin-left: .5rem } .btn i:not(:last-child), .btn svg:not(:last-child) { margin-right: .5rem } .btn-icon .btn-inner--text:not(:first-child) { margin-left: .75em } .btn-icon .btn-inner--text:not(:last-child) { margin-right: .75em } .btn-icon-only { width: 3rem; height: 3rem; line-height: 3rem; padding: 0 } .btn-group-sm>.btn-icon-only.btn, .btn-icon-only.btn-sm { width: 2rem; height: 2rem; line-height: 2rem } .btn-animated { overflow: hidden } .btn-animated, .btn-animated .btn-inner--visible { position: relative } .btn-animated .btn-inner--hidden { position: absolute; width: 100%; top: 50%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%) } .btn-animated-x .btn-inner--visible { right: 0; -webkit-transition: right .3s ease 0s; -o-transition: right .3s ease 0s; transition: right .3s ease 0s } @media (prefers-reduced-motion:reduce) { .btn-animated-x .btn-inner--visible { -webkit-transition: none; -o-transition: none; transition: none } } .btn-animated-x .btn-inner--hidden { right: -100%; -webkit-transition: right .3s ease 0s; -o-transition: right .3s ease 0s; transition: right .3s ease 0s } @media (prefers-reduced-motion:reduce) { .btn-animated-x .btn-inner--hidden { -webkit-transition: none; -o-transition: none; transition: none } } .btn-animated-x:hover .btn-inner--hidden { right: 0 } .btn-animated-x:hover .btn-inner--visible { right: 150% } .btn-animated-y .btn-inner--visible { top: 0; -webkit-transition: top .3s ease 0s; -o-transition: top .3s ease 0s; transition: top .3s ease 0s } @media (prefers-reduced-motion:reduce) { .btn-animated-y .btn-inner--visible { -webkit-transition: none; -o-transition: none; transition: none } } .btn-animated-y .btn-inner--hidden { left: 0; top: -100%; -webkit-transition: top .3s ease; -o-transition: top .3s ease; transition: top .3s ease } @media (prefers-reduced-motion:reduce) { .btn-animated-y .btn-inner--hidden { -webkit-transition: none; -o-transition: none; transition: none } } .btn-animated-y:hover .btn-inner--hidden { top: 50% } .btn-animated-y:hover .btn-inner--visible { top: 100px } .btn-action-label .btn-label:hover { background: transparent; color: #3c4858 } .btn-action-label .btn-secondary:hover { color: #6e00ff } .btn-icon-label { position: relative } .btn-icon-label .btn-inner--icon { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; position: absolute; height: 100%; line-height: 1; border-radius: 0; text-align: center; margin: 0; width: 3em; background-color: rgba(0, 0, 0, .1) } .btn-icon-label .btn-inner--icon:not(:first-child) { right: 0; top: 0; border-top-right-radius: inherit; border-bottom-right-radius: inherit } .btn-icon-label .btn-inner--icon:not(:last-child) { left: 0; top: 0; border-top-left-radius: inherit; border-bottom-left-radius: inherit } .btn-icon-label .btn-inner--icon svg { position: relative; top: 50%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%) } .btn-icon-label .btn-inner--text:not(:first-child) { padding-left: 3em } .btn-icon-label .btn-inner--text:not(:last-child) { padding-right: 3em } .btn-app-store { background: #000; color: #fff; position: relative; padding-left: 4.5rem; padding-right: 1.5rem } .btn-app-store i, .btn-app-store svg { font-size: 2.5rem; position: absolute; left: 1.25rem; top: 50%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%) } .btn-app-store .btn-inner--text { display: block; font-size: .75rem; line-height: .75rem; margin-bottom: .125rem } .btn-app-store .btn-inner--brand { display: block; text-align: left; font-size: 21px; line-height: 21px } .btn-app-store:hover { background-color: #5f00db; color: #fff } .btn-group-options .btn { min-height: 4.8rem; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center } .card { position: relative; margin-bottom: 30px; -webkit-box-shadow: 0 .75rem 1.5rem rgba(18, 38, 63, .03); box-shadow: 0 .75rem 1.5rem rgba(18, 38, 63, .03) } .card.hover-scale-110:hover { z-index: 2; border-radius: .375rem !important } .card-header { border-bottom: 1px solid #eff2f7 } .card-img-bg { width: 100%; height: 100%; position: absolute; left: 0; top: 0; background-size: cover; border-radius: .375rem; -webkit-backface-visibility: hidden; -webkit-transition: all .2s ease; -o-transition: all .2s ease; transition: all .2s ease } @media (prefers-reduced-motion:reduce) { .card-img-bg { -webkit-transition: none; -o-transition: none; transition: none } } .card-img-bg~.card-body { position: relative } .card:hover .card-img-bg { -webkit-transform: scale(1.1); -ms-transform: scale(1.1); transform: scale(1.1) } .card .animate-this, .card .card-image, .card>a { min-height: 1px } .card-group .card .mask { border-radius: 0 } [data-lg-columns="2"] { -webkit-column-count: 2 !important; column-count: 2 !important } @media (min-width:992px) and (max-width:1199.98px) { [data-lg-columns="3"] { -webkit-column-count: 3 !important; column-count: 3 !important } } @media (min-width:992px) and (max-width:1199.98px) { [data-lg-columns="4"] { -webkit-column-count: 4 !important; column-count: 4 !important } } .card-translucent-dark { background: hsla(0, 0%, 100%, .2) } .card-translucent-light { background: rgba(0, 0, 0, .2) } .card-comment-box { width: 100% } .card-comment-box input, .card-comment-box textarea { font-size: .875rem; border: 0; padding: .3125rem 0; margin: 0; color: #3c4858; outline: none; resize: none } .card-comment-box input, .card-comment-box input:focus, .card-comment-box textarea, .card-comment-box textarea:focus { -webkit-box-shadow: none; box-shadow: none; background: transparent } .card-profile .card-profile-image { width: 7rem; height: 7rem; border: .1875rem solid #fff; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%) } .card-profile .card-profile-image:hover { -webkit-transform: scale(1.1) translateY(-50%); -ms-transform: scale(1.1) translateY(-50%); transform: scale(1.1) translateY(-50%) } .card-profile .card-body { position: relative; z-index: 2; margin-top: -3.5rem } .card-profile-cover { max-height: 300px; overflow: hidden } .card-pricing .card-header { padding-top: 1.25rem; padding-bottom: 1.25rem } .card-pricing .list-unstyled li { padding: .5rem 0 } .card-pricing.popular { z-index: 1 } .card-pricing.scale-110 { border: 1px solid #eff2f7 !important; border-radius: .375rem !important } @media (max-width:991.98px) { .card-pricing.scale-110 { -webkit-transform: scale(1) !important; -ms-transform: scale(1) !important; transform: scale(1) !important } } .card-product { overflow: hidden } .card-product .card-image { padding: 1.5rem } .card-product .card-image img { -webkit-transform: scale(1); -ms-transform: scale(1); transform: scale(1); -webkit-transition: all .2s ease; -o-transition: all .2s ease; transition: all .2s ease; -webkit-transition-delay: .2s; -o-transition-delay: .2s; transition-delay: .2s } @media (prefers-reduced-motion:reduce) { .card-product .card-image img { -webkit-transition: none; -o-transition: none; transition: none } } .card-product:hover .card-image img { -webkit-transform: scale(1.1); -ms-transform: scale(1.1); transform: scale(1.1) } .card-product .card-price, .card-product .card-title { font-size: 1rem; font-weight: 600 } .card-product .card-price { display: block } .card-product .product-colors a { display: inline-block; float: none !important; width: 1rem; height: 1rem; margin-right: 3px; margin-bottom: 0; border-radius: 50%; -webkit-transition: all .2s ease; -o-transition: all .2s ease; transition: all .2s ease } @media (prefers-reduced-motion:reduce) { .card-product .product-colors a { -webkit-transition: none; -o-transition: none; transition: none } } .card-product .product-colors a:hover { -webkit-transform: scale(1.1); -ms-transform: scale(1.1); transform: scale(1.1) } .card-product .actions { opacity: 0; width: 80px; height: 40px; position: absolute; top: 10px; left: 10px } .card-product .actions.in { opacity: 1 } .card-product .actions.animated { -webkit-animation-duration: .5s; animation-duration: .5s } .card-product .actions .action-item { display: inline-block; float: left; width: 40px; height: 40px; line-height: 40px } .card-browser { background-color: #273444; position: relative } .card-browser:before { position: absolute; right: 0; top: 0; width: 100%; height: 100%; background: -webkit-linear-gradient(40deg, transparent, #273444); content: ""; border-radius: 6px; will-change: transform } .card-browser .card-header { position: relative; background-color: rgba(58, 77, 100, .8); border: 0 } .card-browser .card-header .dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: 3px } .card-browser .card-body { min-height: 300px; position: relative; overflow-x: hidden } .card-browser .card-body pre { color: #fff; margin: 0 } .card-overlay .card-img-overlay { color: #fff } .card-overlay .card-footer { background-color: #fff; border: 0 } .card-hover-overlay { overflow: hidden } .card-hover-overlay .card-img-overlay { opacity: 0; background-color: rgba(39, 52, 68, .4); -webkit-backface-visibility: hidden; backface-visibility: hidden; -webkit-transition: opacity .35s; -o-transition: opacity .35s; transition: opacity .35s } @media (prefers-reduced-motion:reduce) { .card-hover-overlay .card-img-overlay { -webkit-transition: none; -o-transition: none; transition: none } } .card-hover-overlay .card-img-overlay:after, .card-hover-overlay .card-img-overlay:before { pointer-events: none } .card-hover-overlay .card-img-overlay .actions .action-item, .card-hover-overlay .card-img-overlay .overlay-actions, .card-hover-overlay .card-img-overlay .overlay-text { -webkit-transform: translate3d(0, 200%, 0); transform: translate3d(0, 200%, 0); -webkit-transition: -webkit-transform .35s; transition: -webkit-transform .35s; -o-transition: transform .35s; transition: transform .35s; transition: transform .35s, -webkit-transform .35s } @media (prefers-reduced-motion:reduce) { .card-hover-overlay .card-img-overlay .actions .action-item, .card-hover-overlay .card-img-overlay .overlay-actions, .card-hover-overlay .card-img-overlay .overlay-text { -webkit-transition: none; -o-transition: none; transition: none } } .card-hover-overlay:hover .card-img-overlay { opacity: 1 } .card-hover-overlay:hover .card-img-overlay .actions .action-item, .card-hover-overlay:hover .card-img-overlay .overlay-actions, .card-hover-overlay:hover .card-img-overlay .overlay-text { -webkit-transform: translateZ(0); transform: translateZ(0) } .card-hover-overlay:hover .card-img-overlay .actions .action-item:first-child { -webkit-transition-delay: .1s; -o-transition-delay: .1s; transition-delay: .1s } .card-hover-overlay:hover .card-img-overlay .actions .action-item:nth-child(2) { -webkit-transition-delay: .15s; -o-transition-delay: .15s; transition-delay: .15s } .card-hover-overlay:hover .card-img-overlay .actions .action-item:nth-child(3) { -webkit-transition-delay: .2s; -o-transition-delay: .2s; transition-delay: .2s } .accordion .card { margin-bottom: 0 } .accordion .card-header { position: relative; cursor: pointer } .accordion .card-header:after { content: "+"; position: absolute; right: 1.5rem; top: 50%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); font-family: Nunito, sans-serif; font-weight: 700 } .accordion .card-header[aria-expanded=false]:after { content: "+" } .accordion .card-header[aria-expanded=true]:after { content: "-" } .accordion .card-header[aria-expanded=true] .heading { color: #6e00ff } .accordion-spaced .card { margin-bottom: 1.5rem; border-radius: .375rem !important } .client img { width: 100%; max-width: 6rem; height: auto; margin-left: auto; margin-right: auto } .close>span:not(.sr-only) { color: rgba(31, 45, 61, .5) } .close:focus>span:not(.sr-only), .close:hover>span:not(.sr-only) { color: rgba(31, 45, 61, .8) } .collage { height: 600px } .collage .bg-img-holder { position: relative; width: 100%; height: 100%; z-index: 0 } .collage .collage-bg { z-index: 3 } .collage .collage-back { position: absolute; top: 0; left: 0; z-index: 1 } .collage .collage-back img { max-width: 100% } .collage .collage-front { position: absolute; top: 0; left: 0; z-index: 2 } .collage .collage-front img { max-height: 100% } @media (max-width:991.98px) { .collage .collage-front { height: 100% !important } } .custom-control-label { line-height: 1.9 } .custom-color { list-style: none } .custom-color:after, .custom-color:before { content: ""; display: table } .custom-color:after { clear: both } .custom-color label { width: 2.25rem; height: 2.25rem; float: left; padding: .375rem; margin-bottom: 0; margin-right: .375rem; display: block; text-align: center; opacity: .7; border: 1px solid transparent; border-radius: .25rem; -webkit-transition: all .2s ease; -o-transition: all .2s ease; transition: all .2s ease; -webkit-transform: scale(.95); -ms-transform: scale(.95); transform: scale(.95) } @media (prefers-reduced-motion:reduce) { .custom-color label { -webkit-transition: none; -o-transition: none; transition: none } } .custom-color label:hover { cursor: pointer; opacity: 1 } .custom-color label i, .custom-color label svg { opacity: 0; color: hsla(0, 0%, 100%, .7) } .custom-color input { left: -9999px; position: absolute } .custom-color input:checked+label { -webkit-transform: scale(1.1); -ms-transform: scale(1.1); transform: scale(1.1); opacity: 1 } .custom-color input:checked+label i, .custom-color input:checked+label svg { opacity: 1 } .custom-color-sm label { width: 1.25rem; height: 1.25rem } .checkbox-alphanumeric { list-style: none } .checkbox-alphanumeric+.checkbox-alphanumeric { margin-left: .25rem } .checkbox-alphanumeric:after, .checkbox-alphanumeric:before { content: ""; display: table } .checkbox-alphanumeric:after { clear: both } .checkbox-alphanumeric>:not(:last-child) label { margin-right: .375rem } .checkbox-alphanumeric label { width: 2.25rem; height: 2.25rem; float: left; padding: .375rem 0; margin-bottom: 0; display: block; color: #c0ccda; font-weight: 400; font-size: .875rem; text-align: center; background: transparent; text-transform: uppercase; -webkit-transition: all .3s ease; -o-transition: all .3s ease; transition: all .3s ease; -webkit-transform: scale(.95); -ms-transform: scale(.95); transform: scale(.95); background: #e5e9f2; border: 0 solid #eff2f7; border-radius: .25rem } .checkbox-alphanumeric label img { max-width: 100% } .checkbox-alphanumeric label:hover { cursor: pointer; border-color: #e5e9f2 } .checkbox-alphanumeric input { left: -9999px; position: absolute } .checkbox-alphanumeric input:checked~label { color: #6300e6; border-color: #6300e6; -webkit-transform: scale(1.1); -ms-transform: scale(1.1); transform: scale(1.1) } .checkbox-alphanumeric-sm label { width: 1.25rem; height: 1.25rem } .custom-input-file { width: .1px; height: .1px; opacity: 0; outline: none; overflow: hidden; position: absolute; z-index: -1 } .custom-input-file+label { -o-text-overflow: ellipsis; text-overflow: ellipsis; white-space: nowrap; cursor: pointer; display: block; overflow: hidden; padding: .625rem 1.25rem; border: 1px solid #e0e6ed; border-radius: .25rem; color: #8492a6; background-color: #fff; outline: none; margin: 0 } .custom-input-file+label i { width: 1em; height: 1em; vertical-align: middle; fill: currentColor; margin-top: -.25em; margin-right: .5em } .custom-input-file+label:hover, .custom-input-file.has-focus+label, .custom-input-file:focus+label { background-color: #fff } .no-js .custom-input-file+label { display: none } .custom-input-file--2+label { color: #fff; border-color: #6e00ff; background: #6e00ff } .custom-input-file--2+label:hover, .custom-input-file--2.has-focus+label, .custom-input-file--2:focus+label { color: #fff; border-color: #5800cc; background: #5800cc } .custom-input-file-link+label { padding: 0; border: 0; background: transparent; color: #6e00ff; font-size: .875rem; font-weight: 600 } .custom-input-file-link+label:hover, .custom-input-file-link.has-focus+label, .custom-input-file-link:focus+label { background-color: transparent } .custom-switch { min-height: 1.5rem } .custom-switch .custom-control-label:before { top: 0; height: 1.5rem; border-radius: .75rem } .custom-switch .custom-control-label:after { top: .1875rem; left: -3.5625rem; background-color: #fff } .custom-switch .custom-control-input:checked~.custom-control-label:after { background-color: #fff; -webkit-transform: translateX(1.5rem); -ms-transform: translateX(1.5rem); transform: translateX(1.5rem) } .divider { position: relative; border: 0; width: 100% } .divider-md { width: 60% } .divider-sm { width: 40% } .divider-fade:before { content: ""; display: block; width: 80%; position: relative; top: 0; left: 50%; -webkit-transform: translateX(-50%); -ms-transform: translateX(-50%); transform: translateX(-50%); height: 1px; background: -o-radial-gradient(center, ellipse, #dee4ef 0, hsla(0, 0%, 100%, 0) 75%); background: radial-gradient(ellipse at center, #dee4ef 0, hsla(0, 0%, 100%, 0) 75%) } .divider-fade.divider-dark:before { background: -o-radial-gradient(center, ellipse, hsla(0, 0%, 100%, .2) 0, rgba(31, 45, 61, 0) 75%); background: radial-gradient(ellipse at center, hsla(0, 0%, 100%, .2) 0, rgba(31, 45, 61, 0) 75%) } .divider-icon { height: 20px; background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle fill='none' stroke='%23dee4ef' stroke-width='1' cx='10' cy='10' r='7'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: 50% 50% } .divider-icon:after, .divider-icon:before { content: ""; position: absolute; top: 50%; max-width: calc(50% - 25px); width: 100%; border-bottom: 1px solid #dee4ef } .divider-icon:before { right: calc(50% + 25px) } .divider-icon:after { left: calc(50% + 25px) } .divider-icon-fade:after, .divider-icon-fade:before { border: 0; height: 1px } .divider-icon-fade:before { background: -o-radial-gradient(right, ellipse, #dee4ef 0, hsla(0, 0%, 100%, 0) 75%); background: radial-gradient(ellipse at right, #dee4ef 0, hsla(0, 0%, 100%, 0) 75%) } .divider-icon-fade:after { background: -o-radial-gradient(left, ellipse, #dee4ef 0, hsla(0, 0%, 100%, 0) 75%); background: radial-gradient(ellipse at left, #dee4ef 0, hsla(0, 0%, 100%, 0) 75%) } .divider-vertical { width: 1px; height: 100px; margin-left: auto; margin-right: auto; border-left: 1px solid #dee4ef } .divider-vertical-fade { border: 0; background: -o-radial-gradient(center, ellipse, #dee4ef 0, hsla(0, 0%, 100%, 0) 75%); background: radial-gradient(ellipse at center, #dee4ef 0, hsla(0, 0%, 100%, 0) 75%) } .dropdown, .dropleft, .dropright, .dropup { display: inline-block } .dropdown-menu { font-size: .875rem } .dropdown-menu .dropdown-item>i, .dropdown-menu .dropdown-item>svg { margin-right: 1rem; font-size: 1rem; vertical-align: -17% } .dropdown-menu .dropdown-item img, .dropdown-menu .dropdown-item svg { width: auto; height: 14px; margin-right: .5rem; position: relative; top: -1px } .dropdown-menu .list-group-item .media p { color: #8492a6; line-height: 1.4 } .dropdown-menu .list-group-item .media:hover .heading { color: #6e00ff } .dropdown-menu-dark { background: #282f37; border: 0 } .dropdown-menu-dark .dropdown-item { color: hsla(0, 0%, 100%, .9) } .dropdown-menu-dark .dropdown-item:active, .dropdown-menu-dark .dropdown-item:focus, .dropdown-menu-dark .dropdown-item:hover { color: #fff; background: rgba(60, 72, 88, .1) } .dropdown-menu-dark .dropdown-divider { background: rgba(31, 45, 61, .2) } @media (min-width:992px) { .dropdown-menu-arrow:before { content: ""; background: #fff; -webkit-box-shadow: none; box-shadow: none; display: block; height: 16px; width: 16px; left: 1.25rem; position: absolute; bottom: 100%; z-index: -5; -webkit-transform: rotate(-45deg) translateY(1rem); -ms-transform: rotate(-45deg) translateY(1rem); transform: rotate(-45deg) translateY(1rem); border-radius: .2rem; -webkit-box-shadow: -1px -1px 10px -2px rgba(31, 45, 61, .2); box-shadow: -1px -1px 10px -2px rgba(31, 45, 61, .2) } .dropdown-menu-arrow.dropdown-menu-right:before { right: 2.5rem; left: auto } .dropdown-menu-sm { min-width: 10rem !important; border: .2rem } .dropdown-menu-sm.dropdown-menu-arrow:before { height: 14px; width: 14px; left: 10px } .dropdown-menu-sm.dropdown-menu-arrow.dropdown-menu-right:before { right: 20px; left: auto } .dropdown-menu-lg { min-width: 25rem !important; border-radius: .25rem } .dropdown-menu-xl { min-width: 35rem !important; border-radius: .25rem } } @media (min-width:992px) { .dropdown-fluid { position: static } .dropdown-fluid .dropdown-menu { width: calc(100% - 30px); max-width: 1200px; left: 15px; right: auto } .dropdown-fluid .dropdown-menu-right { right: 15px; left: auto } } @media (min-width:992px) { .dropdown-animate>.dropdown-menu { opacity: 0; position: absolute; display: block; pointer-events: none } .dropdown-animate:not([data-toggle=hover]) .dropdown-menu.show { pointer-events: auto; -webkit-animation: show-dropdown .3s ease forwards; animation: show-dropdown .3s ease forwards } .dropdown-animate:not([data-toggle=hover]) .dropdown-menu.hide { display: block; -webkit-animation: hide-dropdown .3s ease backwards; animation: hide-dropdown .3s ease backwards } .dropdown-animate[data-toggle=hover]>.dropdown-menu { display: block; margin: 0; -webkit-transform: translateX(0) translateY(-3px) scale(.97); -ms-transform: translateX(0) translateY(-3px) scale(.97); transform: translateX(0) translateY(-3px) scale(.97); -webkit-transition: all .2s ease; -o-transition: all .2s ease; transition: all .2s ease } } @media (min-width:992px) and (prefers-reduced-motion:reduce) { .dropdown-animate[data-toggle=hover]>.dropdown-menu { -webkit-transition: none; -o-transition: none; transition: none } } @media (min-width:992px) { .dropdown-animate[data-toggle=hover]:hover>.dropdown-menu { display: block; opacity: 1; pointer-events: auto; visibility: visible; -webkit-transform: translateX(0) translateY(-3px) scale(1); -ms-transform: translateX(0) translateY(-3px) scale(1); transform: translateX(0) translateY(-3px) scale(1) } } @-webkit-keyframes show-dropdown { 0% { opacity: 0; -webkit-transform: translateX(0) translateY(-3px) scale(.97); transform: translateX(0) translateY(-3px) scale(.97); -webkit-transition: all .3s ease; -o-transition: all .3s ease; transition: all .3s ease } to { -webkit-transform: translateX(0) translateY(-3px) scale(1); transform: translateX(0) translateY(-3px) scale(1); opacity: 1 } } @keyframes show-dropdown { 0% { opacity: 0; -webkit-transform: translateX(0) translateY(-3px) scale(.97); transform: translateX(0) translateY(-3px) scale(.97); -webkit-transition: all .3s ease; -o-transition: all .3s ease; transition: all .3s ease } to { -webkit-transform: translateX(0) translateY(-3px) scale(1); transform: translateX(0) translateY(-3px) scale(1); opacity: 1 } } @-webkit-keyframes hide-dropdown { 0% { opacity: 1; -webkit-transform: translateX(-16px) translateY(-3px) scale(1); transform: translateX(-16px) translateY(-3px) scale(1); -webkit-transition: all .3s ease; -o-transition: all .3s ease; transition: all .3s ease } to { opacity: 0; -webkit-transform: translateX(-16px) translateY(-3px) scale(.97); transform: translateX(-16px) translateY(-3px) scale(.97) } } @keyframes hide-dropdown { 0% { opacity: 1; -webkit-transform: translateX(-16px) translateY(-3px) scale(1); transform: translateX(-16px) translateY(-3px) scale(1); -webkit-transition: all .3s ease; -o-transition: all .3s ease; transition: all .3s ease } to { opacity: 0; -webkit-transform: translateX(-16px) translateY(-3px) scale(.97); transform: translateX(-16px) translateY(-3px) scale(.97) } } .dropdown-menu .dropdown-menu { left: 100%; margin: 0; right: auto; top: 0 } .dropdown-submenu { display: block; position: relative } .dropdown-submenu>.dropdown-menu:after { border: 0 !important } .dropdown-submenu>.dropdown-item:after, .dropdown-submenu>.list-group-item:after { margin-left: 10.2px; display: inline-block; font-style: normal; font-variant: normal; text-rendering: auto; -webkit-font-smoothing: antialiased; font-family: Font Awesome\ 5 Pro, Font Awesome\ 5 Free; font-weight: 700; content: "\F105" } .dropdown-submenu>.dropdown-item:empty:after, .dropdown-submenu>.list-group-item:empty:after { margin-left: 0 } .dropdown-submenu>.dropdown-item:after, .dropdown-submenu>.list-group-item:after { position: absolute; top: 50%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); right: 1rem; margin-left: 0; -webkit-transition: all .2s ease; -o-transition: all .2s ease; transition: all .2s ease } @media (prefers-reduced-motion:reduce) { .dropdown-submenu>.dropdown-item:after, .dropdown-submenu>.list-group-item:after { -webkit-transition: none; -o-transition: none; transition: none } } .dropdown-submenu>.dropdown-item:hover:after, .dropdown-submenu>.list-group-item:hover:after { -webkit-transform: translate(5px, -50%); -ms-transform: translate(5px, -50%); transform: translate(5px, -50%) } @media (max-width:991.98px) { .dropdown-submenu .dropdown-menu { padding: 0; -webkit-box-shadow: none; box-shadow: none; top: 0 } .dropdown-submenu .dropdown-item { padding-left: 3rem } } .dropdown-extend { position: static } .dropdown-extend .dropdown-menu { width: 100%; padding-right: 15px; padding-left: 15px; margin-right: auto; margin-left: auto } @media (min-width:576px) { .dropdown-extend .dropdown-menu { max-width: 540px } } @media (min-width:768px) { .dropdown-extend .dropdown-menu { max-width: 720px } } @media (min-width:992px) { .dropdown-extend .dropdown-menu { max-width: 960px } } @media (min-width:1200px) { .dropdown-extend .dropdown-menu { max-width: 1140px } } .footer { background-color: #fff; padding-top: 3rem } .footer .nav-link { font-size: .875rem } .footer .list-unstyled li a { display: inline-block; padding: .125rem 0 } .footer-light p { color: #8492a6 } .footer-light .heading { color: #3c4858 } .footer-light .list-unstyled li a { color: #8492a6 } .footer-light .list-unstyled li a:hover { color: #8492a6; text-decoration: underline } .footer-light .copyright a { color: #8492a6 } .footer-light .copyright a:hover { color: #6e00ff } .footer-dark p { color: hsla(0, 0%, 100%, .8) } .footer-dark .heading { color: #fff } .footer-dark .list-unstyled li a { color: hsla(0, 0%, 100%, .8) } .footer-dark .copyright a, .footer-dark .list-unstyled li a:hover { color: hsla(0, 0%, 100%, .9) } .footer-dark .copyright a:hover { color: #fff } .footer-dark { background-color: #273444; color: #d3dce6 } .footer-dark .heading { color: #eff2f7 } .footer-dark .footer-link, .footer-dark .list-unstyled li a, .footer-dark .nav .nav-item .nav-link { color: #d3dce6 } .footer-dark .footer-link:hover, .footer-dark .list-unstyled li a:hover, .footer-dark .nav .nav-item .nav-link:hover { color: #fff } .footer-dark hr { border-color: rgba(216, 203, 187, .1) } .footer-rotate { max-width: 1990px; margin-top: -26rem; margin-left: auto; margin-right: auto; padding-top: 26rem; position: relative; overflow: hidden } .footer-rotate:before { content: ""; background: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 2000 1000' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23FFF' d='M2000,0V923.45l-195.85-538.1a76.07875,76.07875,0,0,0-58.25-48.89L536.65,123.24a76.12151,76.12151,0,0,0-71.44,26L0,703.65V0Z'/%3E%3C/svg%3E") no-repeat scroll 50%/100% 100% border-box; right: calc(50% - 1000px); display: block; min-width: 2000px; height: 1000px; pointer-events: none; position: absolute; width: calc(100% + 10px); z-index: 10; top: 0 } .form-control:focus::-webkit-input-placeholder { color: #d3dce6 } .form-control:focus:-ms-input-placeholder { color: #d3dce6 } .form-control:focus::-ms-input-placeholder { color: #d3dce6 } .form-control:focus::placeholder { color: #d3dce6 } .form-control-muted { border-color: #edf0f5 } .form-control-muted, .form-control-muted:focus { background-color: #edf0f5 } .form-control-emphasized { background-color: #fff; border-color: #fff; -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, .1), 0 2px 4px rgba(0, 0, 0, .1); box-shadow: 0 0 0 1px rgba(0, 0, 0, .1), 0 2px 4px rgba(0, 0, 0, .1) } .form-control-emphasized:focus { background-color: #fff; border-color: transparent; -webkit-box-shadow: 0 0 0 2px #6e00ff; box-shadow: 0 0 0 2px #6e00ff } .form-control-flush { padding: 0 } .form-control-flush, .form-control-flush:focus { border-width: 0; background-color: transparent; -webkit-box-shadow: none; box-shadow: none } textarea[resize=none] { resize: none !important } textarea[resize=both] { resize: both !important } textarea[resize=vertical] { resize: vertical !important } textarea[resize=horizontal] { resize: horizontal !important } .form-control-xl { padding: 1.5rem 2rem; font-size: 1.5rem; line-height: 1.5; border-radius: .5rem } .form-primary .form-control { color: #fff; background-color: #5400c2; border: 1px solid #5400c2 } .form-primary .form-control:focus { background-color: #4b00ad; border: 1px solid #4b00ad } .form-primary .form-control::-webkit-input-placeholder { color: hsla(0, 0%, 100%, .8) } .form-primary .form-control:-ms-input-placeholder { color: hsla(0, 0%, 100%, .8) } .form-primary .form-control::-ms-input-placeholder { color: hsla(0, 0%, 100%, .8) } .form-primary .form-control::placeholder { color: hsla(0, 0%, 100%, .8) } .form-danger .form-control { color: #fff; background-color: #f22c00; border: 1px solid #f22c00 } .form-danger .form-control:focus { background-color: #dd2900; border: 1px solid #dd2900 } .form-danger .form-control::-webkit-input-placeholder { color: hsla(0, 0%, 100%, .8) } .form-danger .form-control:-ms-input-placeholder { color: hsla(0, 0%, 100%, .8) } .form-danger .form-control::-ms-input-placeholder { color: hsla(0, 0%, 100%, .8) } .form-danger .form-control::placeholder { color: hsla(0, 0%, 100%, .8) } .form-control-label { color: #3c4858; font-size: .875rem; font-weight: 600 } .has-floating-label { position: relative } .has-floating-label .control-label { font-size: 1rem; pointer-events: none; position: absolute; top: 50%; padding: 0 .625rem; margin: 0 .625rem; color: #c0ccda; -webkit-transform: translateY(-50%) scale(1); -ms-transform: translateY(-50%) scale(1); transform: translateY(-50%) scale(1); -webkit-transform-origin: left top; -ms-transform-origin: left top; transform-origin: left top; -webkit-transition: .3s; -o-transition: .3s; transition: .3s; z-index: 1 } .has-floating-label .input-group .control-label { left: 2rem } .has-floating-label.focused .control-label { padding: 0; margin: 0; top: -1.25rem; left: 0; -webkit-transform: translateY(0) scale(.85); -ms-transform: translateY(0) scale(.85); transform: translateY(0) scale(.85) } .has-floating-label .control-label-xl { font-size: 1.5rem; padding: 0 1rem; margin: 0 1rem } .has-floating-label .control-label-lg { font-size: 1.25rem; padding: 0 .9375rem; margin: 0 .9375rem } .has-floating-label .control-label-sm { font-size: .875rem; padding: 0 .625rem; margin: 0 .625rem } .form-stacked .form-control { position: relative; -webkit-box-sizing: border-box; box-sizing: border-box } .form-stacked .form-control:first-of-type { margin-bottom: -1px; border-bottom-right-radius: 0; border-bottom-left-radius: 0 } .form-stacked .form-control:not(:first-of-type):not(:last-of-type) { margin-bottom: -1px; border-radius: 0 } .form-stacked .form-control:last-of-type { border-top-left-radius: 0; border-top-right-radius: 0 } .form-stacked .form-control:focus { z-index: 2 } .frame-laptop { position: relative } .frame-laptop .frame-inner { overflow: hidden; position: absolute; width: 78%; height: 74%; left: 0; top: 0; background-color: #111; margin: 7.5% 11% 0; border-radius: .25rem; -webkit-box-shadow: inset 0 2px 5px 0 rgba(0, 0, 0, .2); box-shadow: inset 0 2px 5px 0 rgba(0, 0, 0, .2) } #header-main+section { padding-top: 7rem !important } #header-main+.header-1 { padding-top: 14rem !important } @media (min-width:768px) { .header-account-page { height: 350px } } @media (max-width:991.98px) { .header-account-page { padding-top: 9rem } } .header-account-page .btn-group-nav { position: relative; z-index: 1; -webkit-transform: translateY(50%); -ms-transform: translateY(50%); transform: translateY(50%) } .icon { min-width: 3rem; min-height: 3rem; line-height: 3rem } .icon i, .icon svg { font-size: 2.75rem } .icon img { width: 3rem; height: 3rem } .icon+.icon-text { padding-left: 1rem; width: calc(100% - 3rem - 1) } .icon-xl { min-width: 5rem; min-height: 5rem; line-height: 5rem } .icon-xl i, .icon-xl svg { font-size: 4.75rem } .icon-xl img { width: 5rem; height: 5rem } .icon-xl+.icon-text { width: calc(100% - 5rem - 1) } .icon-lg { min-width: 4rem; min-height: 4rem; line-height: 4rem } .icon-lg i, .icon-lg svg { font-size: 3.75rem } .icon-lg img { width: 4rem; height: 4rem } .icon-lg+.icon-text { width: calc(100% - 4rem - 1) } .icon-sm { min-width: 2rem; min-height: 2rem; line-height: 2rem } .icon-sm i, .icon-sm svg { font-size: 1.75rem } .icon-sm img { width: 2rem; height: 2rem } .icon-sm+.icon-text { width: calc(100% - 2rem - 1) } .icon-xs { min-width: 1rem; min-height: 1rem; line-height: 1rem } .icon-xs i, .icon-xs svg { font-size: .75rem } .icon-xs img { width: 1rem; height: 1rem } .icon-xs+.icon-text { width: calc(100% - 1rem - 1) } .icon-shape { display: inline-block; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; text-align: center; border-radius: .25rem } .icon-shape i, .icon-shape svg { font-size: 1.25rem } .icon-shape.icon-xl i, .icon-shape.icon-xl svg { font-size: 2.25rem } .icon-shape.icon-lg i, .icon-shape.icon-lg svg { font-size: 1.75rem } .icon-shape.icon-sm i, .icon-shape.icon-sm svg { font-size: 1rem } .icon-shape.icon-xs i, .icon-shape.icon-xs svg { font-size: .75rem } .icon-primary { color: #6e00ff; background-color: #e2ccff } .icon-outline-primary { color: #4f00b8; border: 3px solid rgba(139, 51, 255, .5) } .icon-secondary { color: #eff2f7; background-color: #fcfcfd } .icon-outline-secondary { color: #bdcbe2; border: 3px solid hsla(0, 0%, 100%, .5) } .icon-success { color: #36b37e; background-color: #d7f0e5 } .icon-outline-success { color: #218058; border: 3px solid rgba(81, 203, 151, .5) } .icon-info { color: #00b8d9; background-color: #ccf1f7 } .icon-outline-info { color: #007b92; border: 3px solid rgba(13, 218, 255, .5) } .icon-warning { color: #ffab00; background-color: #fec } .icon-outline-warning { color: #b87b00; border: 3px solid rgba(255, 188, 51, .5) } .icon-danger { color: #ff5630; background-color: #ffddd6 } .icon-outline-danger { color: #e82b00; border: 3px solid rgba(255, 128, 99, .5) } .icon-light { color: #eff2f7; background-color: #fcfcfd } .icon-outline-light { color: #bdcbe2; border: 3px solid hsla(0, 0%, 100%, .5) } .icon-dark { color: #273444; background-color: #d4d6da } .icon-outline-dark { color: #0c1118; border: 3px solid rgba(58, 77, 100, .5) } .icon-neutral { color: #fff; background-color: #fff } .icon-outline-neutral { color: #dddada; border: 3px solid hsla(0, 0%, 100%, .5) } .icon-white { color: #fff; background-color: #fff } .icon-outline-white { color: #dddada; border: 3px solid hsla(0, 0%, 100%, .5) } .icon-actions>a { display: inline-block; margin-right: .75rem; color: #c0ccda; font-size: .875rem } .icon-actions>a:last-of-type { margin-right: 0 } .icon-actions>a span { margin-left: .1875rem; font-weight: 600; color: #8492a6 } .icon-actions>a:hover span { color: #68788f } .icon-actions>a, .icon-actions>a.active, .icon-actions>a:hover { color: #3c4858 } .icon-actions>.favorite.active, .icon-actions>.favorite:hover { color: #fc0 } .icon-actions>.love.active, .icon-actions>.love:hover { color: #ff5630 } .icon-actions>.like.active, .icon-actions>.like:hover { color: #2684ff } .icon-actions-lg a { font-size: 1.25rem; margin-right: .875rem } .has-floating-items { padding-bottom: 18rem !important } .has-floating-items svg { height: auto } @media (min-width:768px) { .has-floating-items { padding-bottom: 18rem !important } } .floating-items { position: relative; left: 50%; margin-left: -570px; z-index: 10 } .icon-floating { position: absolute; text-align: center; -webkit-box-shadow: 0 30px 40px 0 rgba(31, 45, 61, .1); box-shadow: 0 30px 40px 0 rgba(31, 45, 61, .1); border-radius: 50% } .icon-floating svg { width: 50px } .icon-floating span { height: 100% } .icon-floating img { max-width: 100% } .icon-floating img, .icon-floating span { display: inline-block; vertical-align: middle } .icon-floating:first-child { top: 140px; left: -60px; width: 120px; height: 120px } .icon-floating:nth-child(2) { top: 200px; left: 180px; width: 160px; height: 160px; -webkit-animation-delay: .5s; animation-delay: .5s } .icon-floating:nth-child(3) { top: 120px; left: 480px; width: 80px; height: 80px; -webkit-animation-delay: 1s; animation-delay: 1s } .icon-floating:nth-child(4) { top: 210px; left: 680px; width: 140px; height: 140px; -webkit-animation-delay: 1.5s; animation-delay: 1.5s } .icon-floating:nth-child(5) { top: 100px; left: 920px; width: 100px; height: 100px; -webkit-animation-delay: 2s; animation-delay: 2s } .icon-floating:nth-child(6) { top: 200px; left: 1120px; width: 80px; height: 80px; -webkit-animation-delay: 2.5s; animation-delay: 2.5s } .icon-sm svg { width: 36px } .icon-lg svg { width: 76px } @media (min-width:992px) and (max-width:1199.98px) { .icon-floating:first-child, .icon-floating:nth-child(6) { display: none } } @media (max-width:991.98px) { .icon-floating:first-child, .icon-floating:nth-child(2), .icon-floating:nth-child(3) { display: none } .icon-floating:nth-child(4), .icon-floating:nth-child(5), .icon-floating:nth-child(6) { width: 100px; height: 100px; top: 80px } .icon-floating:nth-child(4) { left: 300px } .icon-floating:nth-child(5) { left: 500px } .icon-floating:nth-child(6) { left: 700px } .icon-floating svg { width: 40px } } @media (max-width:767.98px) { .icon-floating:nth-child(4), .icon-floating:nth-child(5), .icon-floating:nth-child(6) { width: 80px; height: 80px; top: 80px } .icon-floating:nth-child(4) { left: 400px } .icon-floating:nth-child(5) { left: 530px } .icon-floating:nth-child(6) { left: 660px } } .floating-color { position: absolute; background-color: #fff; -webkit-box-shadow: 0 30px 40px 0 rgba(0, 0, 0, .1); box-shadow: 0 30px 40px 0 rgba(0, 0, 0, .1); text-align: center; border-radius: 50%; -webkit-animation: floating 3s ease infinite; animation: floating 3s ease infinite } .floating-color span { display: inline-block; border-radius: 20px; position: relative; top: 50%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); font-size: .875rem; color: hsla(0, 0%, 100%, .5) } .floating-color:first-child { top: 140px; left: -60px; width: 120px; height: 120px } .floating-color:nth-child(2) { top: 200px; left: 180px; width: 160px; height: 160px; -webkit-animation-delay: .5s; animation-delay: .5s } .floating-color:nth-child(3) { top: 120px; left: 480px; width: 80px; height: 80px; -webkit-animation-delay: 1s; animation-delay: 1s } .floating-color:nth-child(4) { top: 210px; left: 680px; width: 140px; height: 140px; -webkit-animation-delay: 1.5s; animation-delay: 1.5s } .floating-color:nth-child(5) { top: 100px; left: 920px; width: 100px; height: 100px; -webkit-animation-delay: 2s; animation-delay: 2s } .floating-color:nth-child(6) { top: 200px; left: 1120px; width: 80px; height: 80px; -webkit-animation-delay: 2.5s; animation-delay: 2.5s } .input-group-text { -webkit-transition: all .2s ease; -o-transition: all .2s ease; transition: all .2s ease } .input-group-flush .form-control, .input-group-flush .input-group-text { border: 0 !important } .focused .input-group { -webkit-box-shadow: inset 0 1px 1px rgba(31, 45, 61, .075), 0 0 20px rgba(110, 0, 255, .1); box-shadow: inset 0 1px 1px rgba(31, 45, 61, .075), 0 0 20px rgba(110, 0, 255, .1) } .focused .input-group .form-control { -webkit-box-shadow: none !important; box-shadow: none !important } .focused .input-group-text { color: #6e00ff; background-color: #eff2f7; border-color: rgba(110, 0, 255, .5) } .input-group-merge .input-group-text { color: #c0ccda; background-color: #fff; border: 1px solid #e0e6ed } .input-group-merge .form-control { -webkit-box-shadow: none; box-shadow: none } .input-group-merge .form-control:not(:first-child):not(.is-valid):not(.is-invalid) { border-left: 0; padding-left: 0 } .input-group-merge .form-control:not(:last-child):not(.is-valid):not(.is-invalid) { border-right: 0; padding-right: 0 } .input-group-merge.rounded-pill .form-control:first-child { padding-left: 1.5rem; border-top-left-radius: 50rem; border-bottom-left-radius: 50rem } .input-group-merge.rounded-pill .input-group-append>.btn { padding-right: 1.5rem; border-top-right-radius: 50rem; border-bottom-right-radius: 50rem } .focused .input-group-merge .input-group-text { background-color: #fff; border-color: rgba(110, 0, 255, .5) } .list-group { list-style-type: none } .list-group-space .list-group-item { mardin-bottom: 1.5rem; border-radius: .25rem } .list-group-img { width: 3rem; height: 3rem; border-radius: 50%; vertical-align: top; margin: -.1rem 1.2rem 0 -.2rem } .list-group-content { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; min-width: 0 } .list-group-content p { line-height: 1.5; margin: .2rem 0 0 } .list-group-heading { color: #3c4858 } .list-group-heading>small { float: right; color: #d3dce6; font-weight: 500 } .list-group-sm .list-group-item { padding: .675rem 1.25rem; font-size: .875rem } .list-icon i, .list-icon svg { margin-right: 1rem; font-size: .875rem; position: relative } .list-bullet i, .list-bullet svg { margin-right: 1rem; font-size: 8px; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); top: 2px; position: relative } .list-unstyled .list-link { display: block; color: #8492a6; padding-top: .25rem; padding-bottom: .25rem } .list-unstyled .list-link:hover { color: #6e00ff } .list-unstyled .list-link i { margin-right: .5rem; font-size: .75rem } .map-canvas { position: relative; width: 100%; height: 400px; border-radius: .25rem } .mask { position: absolute; top: 0; left: 0; width: 100%; height: 100%; -webkit-transition: all .2s ease; -o-transition: all .2s ease; transition: all .2s ease } @media (prefers-reduced-motion:reduce) { .mask { -webkit-transition: none; -o-transition: none; transition: none } } .mask+.container { position: relative } .card .mask { border-radius: .375rem } .card .hover-mask { opacity: 0; -webkit-transition-delay: .15s; -o-transition-delay: .15s; transition-delay: .15s } .card:hover .hover-mask { opacity: .4 } .mask-body { position: fixed; top: 0; left: 0; width: 100%; height: 100%; cursor: pointer; z-index: 1040 } .mask-body-dark { background: rgba(31, 45, 61, .3) } .mask-body-light { background: hsla(0, 0%, 100%, .3) } .media-comment+.media-comment { margin-top: 1.25rem } .media-comment-bubble { border-radius: 20px; border-top-left-radius: 0; position: relative; background-color: #f7f7f7; padding: 1rem 1.25rem } .media-comment-bubble.left-top:after { content: " "; position: absolute; width: 0; height: 0; left: -16px; right: auto; top: 0; bottom: auto; border: 18px solid transparent; border-top-color: #f7f7f7 } .modal-content { border: 0; border-radius: .25rem } .modal-fluid .modal-dialog { margin-top: 0; margin-bottom: 0 } .modal-fluid .modal-content { border-radius: 0 } .modal-primary .modal-title { color: #fff } .modal-primary .modal-footer, .modal-primary .modal-header { border-color: hsla(0, 0%, 100%, .075) } .modal-primary .modal-content { background-color: #6e00ff; color: #fff } .modal-primary .close>span:not(.sr-only), .modal-primary .modal-content .heading { color: #fff } .modal-secondary .modal-title { color: #273444 } .modal-secondary .modal-footer, .modal-secondary .modal-header { border-color: rgba(39, 52, 68, .075) } .modal-secondary .modal-content { background-color: #eff2f7; color: #273444 } .modal-secondary .modal-content .heading { color: #273444 } .modal-secondary .close>span:not(.sr-only), .modal-success .modal-title { color: #fff } .modal-success .modal-footer, .modal-success .modal-header { border-color: hsla(0, 0%, 100%, .075) } .modal-success .modal-content { background-color: #36b37e; color: #fff } .modal-info .modal-title, .modal-success .close>span:not(.sr-only), .modal-success .modal-content .heading { color: #fff } .modal-info .modal-footer, .modal-info .modal-header { border-color: hsla(0, 0%, 100%, .075) } .modal-info .modal-content { background-color: #00b8d9; color: #fff } .modal-info .close>span:not(.sr-only), .modal-info .modal-content .heading, .modal-warning .modal-title { color: #fff } .modal-warning .modal-footer, .modal-warning .modal-header { border-color: hsla(0, 0%, 100%, .075) } .modal-warning .modal-content { background-color: #ffab00; color: #fff } .modal-danger .modal-title, .modal-warning .close>span:not(.sr-only), .modal-warning .modal-content .heading { color: #fff } .modal-danger .modal-footer, .modal-danger .modal-header { border-color: hsla(0, 0%, 100%, .075) } .modal-danger .modal-content { background-color: #ff5630; color: #fff } .modal-danger .close>span:not(.sr-only), .modal-danger .modal-content .heading { color: #fff } .modal-light .modal-title { color: #273444 } .modal-light .modal-footer, .modal-light .modal-header { border-color: rgba(39, 52, 68, .075) } .modal-light .modal-content { background-color: #eff2f7; color: #273444 } .modal-light .modal-content .heading { color: #273444 } .modal-dark .modal-title, .modal-light .close>span:not(.sr-only) { color: #fff } .modal-dark .modal-footer, .modal-dark .modal-header { border-color: hsla(0, 0%, 100%, .075) } .modal-dark .modal-content { background-color: #273444; color: #fff } .modal-dark .close>span:not(.sr-only), .modal-dark .modal-content .heading { color: #fff } .modal-neutral .modal-title { color: #273444 } .modal-neutral .modal-footer, .modal-neutral .modal-header { border-color: rgba(39, 52, 68, .075) } .modal-neutral .modal-content { background-color: #fff; color: #273444 } .modal-neutral .modal-content .heading { color: #273444 } .modal-neutral .close>span:not(.sr-only) { color: #fff } .modal-white .modal-title { color: #273444 } .modal-white .modal-footer, .modal-white .modal-header { border-color: rgba(39, 52, 68, .075) } .modal-white .modal-content { background-color: #fff; color: #273444 } .modal-white .modal-content .heading { color: #273444 } .modal-white .close>span:not(.sr-only) { color: #fff } .modal-dialog-vertical { height: 100%; max-width: 350px; margin: 0 } .modal-dialog-vertical .modal-content { height: inherit; border-width: 0 1px 0 0; border-radius: 0 } .modal-dialog-vertical .modal-header { border-radius: inherit } .modal-dialog-vertical .modal-body { height: inherit; overflow-y: auto } .modal.fade .modal-dialog-vertical { -webkit-transform: translateX(-100%); -ms-transform: translateX(-100%); transform: translateX(-100%) } .modal.show .modal-dialog-vertical { -webkit-transform: translateX(0); -ms-transform: translateX(0); transform: translateX(0) } .modal.fixed-right { padding-right: 0 !important } .modal.fixed-right .modal-dialog-vertical { margin-left: auto } .modal.fixed-right.fade .modal-dialog-vertical { -webkit-transform: translateX(100%); -ms-transform: translateX(100%); transform: translateX(100%) } .modal.fixed-right.show .modal-dialog-vertical { -webkit-transform: translateX(0); -ms-transform: translateX(0); transform: translateX(0) } .nav-link { color: #8492a6 } .nav-link.active, .nav-link:hover { color: #6e00ff } .nav-pills-icon .nav-link:not(.active) { background-color: #eff2f7 } .nav-pills-icon .nav-link:not(:last-child) { margin-right: .5rem } @media (min-width:768px) { .nav-pills-circle { padding: 0 50px } .nav-pills-circle .nav-item { min-width: 200px; background: transparent; border: 0; padding: 0; position: relative } .nav-pills-circle .nav-link { position: relative; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; width: 80px; height: 80px; margin: auto; border-radius: 50%; background: #eff2f7; color: #273444; z-index: 10 } .nav-pills-circle.nav-pills-connect .nav-item:not(:last-child):before { content: ""; display: block; position: relative; top: 50%; left: 50%; -webkit-transform: translate(50%, 50%); -ms-transform: translate(50%, 50%); transform: translate(50%, 50%); height: 1px; width: 50%; background: #eff2f7; z-index: 0 } } .nav-tabs .nav-item .nav-link { padding: .75rem 1rem; -webkit-transition: color .35s ease, border-color .35s ease; -o-transition: color .35s ease, border-color .35s ease; transition: color .35s ease, border-color .35s ease; border: 0; border-bottom: 2px solid hsla(0, 0%, 100%, 0) } .nav-tabs .nav-item .nav-link.active { color: #6e00ff; border-color: #6e00ff } .nav-tabs .nav-item .nav-link:not(.active) { color: #8492a6 } .nav-dots { top: 50%; right: 2rem; position: fixed; z-index: 200; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%) } .nav-dots .nav-link { display: block; margin: 5px; position: relative } .nav-dots .nav-link:before { content: ""; border-radius: 50%; position: absolute; z-index: 1; height: 6px; width: 6px; border: 0; background: #fff; left: 50%; top: 50%; margin: -2px 0 0 -2px; -webkit-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%); -webkit-transition: all .1s ease-in-out; -o-transition: all .1s ease-in-out; transition: all .1s ease-in-out } .nav-dots .nav-link.active:before, .nav-dots .nav-link:hover:before { height: 12px; width: 12px } .navbar { z-index: 101 } .navbar, .navbar .container { position: relative } .navbar-nav .nav-link { font-size: .875rem; font-weight: 600; text-transform: none; letter-spacing: 0; -webkit-transition: all .15s linear; -o-transition: all .15s linear; transition: all .15s linear } @media (prefers-reduced-motion:reduce) { .navbar-nav .nav-link { -webkit-transition: none; -o-transition: none; transition: none } } .navbar-nav .nav-link i, .navbar-nav .nav-link img, .navbar-nav .nav-link svg { margin-right: .5rem } .navbar-nav .nav-link img { width: auto; height: 14px; margin-right: .5rem; position: relative; top: -1px } .navbar-text { font-size: .875rem } .header, .navbar, .navbar-top { -webkit-transition: all .2s ease; -o-transition: all .2s ease; transition: all .2s ease } @media (prefers-reduced-motion:reduce) { .header, .navbar, .navbar-top { -webkit-transition: none; -o-transition: none; transition: none } } .border-bottom.navbar-dark { border-color: hsla(0, 0%, 100%, .1) !important } .border-bottom.navbar-light { border-color: rgba(31, 45, 61, .04) !important } .header-transparent { position: absolute; top: 0; left: 0; width: 100% } .header-transparent .navbar-top { border: 0; padding-left: 1rem; padding-right: 1rem } .header-transparent .navbar-top:not(.navbar-collapsed) { background-color: transparent !important } .header-transparent .navbar:not(.sticky):not(.navbar-collapsed) { background-color: transparent !important; border: 0; -webkit-box-shadow: none; box-shadow: none } .header-transparent+main section:first-child:not([data-spotlight]) .container { padding-top: 5rem } .header-collapse-show { min-height: 100%; width: 100%; position: fixed; z-index: 1000 } .navbar-sticky { position: -webkit-sticky } .navbar-sticky.sticky { position: fixed; width: 100%; left: 0; top: -100px; -webkit-transform: translateY(100px); -ms-transform: translateY(100px); transform: translateY(100px); z-index: 1030; border-top: 0; -webkit-transition: all .2s ease; -o-transition: all .2s ease; transition: all .2s ease } @media (prefers-reduced-motion:reduce) { .navbar-sticky.sticky { -webkit-transition: none; -o-transition: none; transition: none } } .navbar-top { position: relative; z-index: 110; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; padding-top: .75rem; padding-bottom: .75rem } .navbar-top .navbar-nav { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row } .navbar-top .navbar-nav .nav-item:last-child { margin-right: 0 } .navbar-top .navbar-nav .nav-link { padding: .5rem } @media (max-width:575.98px) { .navbar-expand-sm.navbar-collapsed { height: 100vh; -webkit-box-align: start; -ms-flex-align: start; align-items: start; overflow-y: scroll } .navbar-expand-sm .navbar-nav .nav-link { padding: .625rem 0 } .navbar-expand-sm .navbar-nav .dropdown-menu { -webkit-box-shadow: none; box-shadow: none; min-width: auto } .navbar-expand-sm .navbar-nav .dropdown-menu .media svg { width: 30px } .navbar-expand-sm .navbar-collapse { z-index: 1050; height: auto !important; opacity: 0 } .navbar-expand-sm .navbar-collapse.collapsing, .navbar-expand-sm .navbar-collapse.show { -webkit-animation: show-navbar-collapse .2s ease forwards; animation: show-navbar-collapse .2s ease forwards; -webkit-animation-delay: .15s; animation-delay: .15s } .navbar-expand-sm .navbar-collapse.collapsing-out { opacity: 0; -webkit-transition: opacity .3s linear; -o-transition: opacity .3s linear; transition: opacity .3s linear; -webkit-animation-delay: 0; animation-delay: 0; -webkit-animation: none; animation: none } } @media (min-width:576px) { .navbar-expand-sm .navbar-nav .nav-item { margin-right: .5rem } .navbar-expand-sm .navbar-nav .nav-link { padding-top: .75rem; padding-bottom: .75rem; border-radius: 0 } .navbar-expand-sm .navbar-nav .nav-link-icon { border-radius: 0 } } @media (max-width:767.98px) { .navbar-expand-md.navbar-collapsed { height: 100vh; -webkit-box-align: start; -ms-flex-align: start; align-items: start; overflow-y: scroll } .navbar-expand-md .navbar-nav .nav-link { padding: .625rem 0 } .navbar-expand-md .navbar-nav .dropdown-menu { -webkit-box-shadow: none; box-shadow: none; min-width: auto } .navbar-expand-md .navbar-nav .dropdown-menu .media svg { width: 30px } .navbar-expand-md .navbar-collapse { z-index: 1050; height: auto !important; opacity: 0 } .navbar-expand-md .navbar-collapse.collapsing, .navbar-expand-md .navbar-collapse.show { -webkit-animation: show-navbar-collapse .2s ease forwards; animation: show-navbar-collapse .2s ease forwards; -webkit-animation-delay: .15s; animation-delay: .15s } .navbar-expand-md .navbar-collapse.collapsing-out { opacity: 0; -webkit-transition: opacity .3s linear; -o-transition: opacity .3s linear; transition: opacity .3s linear; -webkit-animation-delay: 0; animation-delay: 0; -webkit-animation: none; animation: none } } @media (min-width:768px) { .navbar-expand-md .navbar-nav .nav-item { margin-right: .5rem } .navbar-expand-md .navbar-nav .nav-link { padding-top: .75rem; padding-bottom: .75rem; border-radius: 0 } .navbar-expand-md .navbar-nav .nav-link-icon { border-radius: 0 } } @media (max-width:991.98px) { .navbar-expand-lg.navbar-collapsed { height: 100vh; -webkit-box-align: start; -ms-flex-align: start; align-items: start; overflow-y: scroll } .navbar-expand-lg .navbar-nav .nav-link { padding: .625rem 0 } .navbar-expand-lg .navbar-nav .dropdown-menu { -webkit-box-shadow: none; box-shadow: none; min-width: auto } .navbar-expand-lg .navbar-nav .dropdown-menu .media svg { width: 30px } .navbar-expand-lg .navbar-collapse { z-index: 1050; height: auto !important; opacity: 0 } .navbar-expand-lg .navbar-collapse.collapsing, .navbar-expand-lg .navbar-collapse.show { -webkit-animation: show-navbar-collapse .2s ease forwards; animation: show-navbar-collapse .2s ease forwards; -webkit-animation-delay: .15s; animation-delay: .15s } .navbar-expand-lg .navbar-collapse.collapsing-out { opacity: 0; -webkit-transition: opacity .3s linear; -o-transition: opacity .3s linear; transition: opacity .3s linear; -webkit-animation-delay: 0; animation-delay: 0; -webkit-animation: none; animation: none } } @media (min-width:992px) { .navbar-expand-lg .navbar-nav .nav-item { margin-right: .5rem } .navbar-expand-lg .navbar-nav .nav-link { padding-top: .75rem; padding-bottom: .75rem; border-radius: 0 } .navbar-expand-lg .navbar-nav .nav-link-icon { border-radius: 0 } } @media (max-width:1199.98px) { .navbar-expand-xl.navbar-collapsed { height: 100vh; -webkit-box-align: start; -ms-flex-align: start; align-items: start; overflow-y: scroll } .navbar-expand-xl .navbar-nav .nav-link { padding: .625rem 0 } .navbar-expand-xl .navbar-nav .dropdown-menu { -webkit-box-shadow: none; box-shadow: none; min-width: auto } .navbar-expand-xl .navbar-nav .dropdown-menu .media svg { width: 30px } .navbar-expand-xl .navbar-collapse { z-index: 1050; height: auto !important; opacity: 0 } .navbar-expand-xl .navbar-collapse.collapsing, .navbar-expand-xl .navbar-collapse.show { -webkit-animation: show-navbar-collapse .2s ease forwards; animation: show-navbar-collapse .2s ease forwards; -webkit-animation-delay: .15s; animation-delay: .15s } .navbar-expand-xl .navbar-collapse.collapsing-out { opacity: 0; -webkit-transition: opacity .3s linear; -o-transition: opacity .3s linear; transition: opacity .3s linear; -webkit-animation-delay: 0; animation-delay: 0; -webkit-animation: none; animation: none } } @media (min-width:1200px) { .navbar-expand-xl .navbar-nav .nav-item { margin-right: .5rem } .navbar-expand-xl .navbar-nav .nav-link { padding-top: .75rem; padding-bottom: .75rem; border-radius: 0 } .navbar-expand-xl .navbar-nav .nav-link-icon { border-radius: 0 } } .navbar-expand.navbar-collapsed { height: 100vh; -webkit-box-align: start; -ms-flex-align: start; align-items: start; overflow-y: scroll } .navbar-expand .navbar-nav .nav-link { padding: .625rem 0 } .navbar-expand .navbar-nav .dropdown-menu { -webkit-box-shadow: none; box-shadow: none; min-width: auto } .navbar-expand .navbar-nav .dropdown-menu .media svg { width: 30px } .navbar-expand .navbar-collapse { z-index: 1050; height: auto !important; opacity: 0 } .navbar-expand .navbar-collapse.collapsing, .navbar-expand .navbar-collapse.show { -webkit-animation: show-navbar-collapse .2s ease forwards; animation: show-navbar-collapse .2s ease forwards; -webkit-animation-delay: .15s; animation-delay: .15s } .navbar-expand .navbar-collapse.collapsing-out { opacity: 0; -webkit-transition: opacity .3s linear; -o-transition: opacity .3s linear; transition: opacity .3s linear; -webkit-animation-delay: 0; animation-delay: 0; -webkit-animation: none; animation: none } .navbar-expand .navbar-nav .nav-item { margin-right: .5rem } .navbar-expand .navbar-nav .nav-link { padding-top: .75rem; padding-bottom: .75rem; border-radius: 0 } .navbar-expand .navbar-nav .nav-link-icon { border-radius: 0 } @-webkit-keyframes show-navbar-collapse { 0% { opacity: 0; -webkit-transform: translateX(30px); transform: translateX(30px) } to { opacity: 1; -webkit-transform: translateX(0); transform: translateX(0) } } @keyframes show-navbar-collapse { 0% { opacity: 0; -webkit-transform: translateX(30px); transform: translateX(30px) } to { opacity: 1; -webkit-transform: translateX(0); transform: translateX(0) } } .navbar-vertical { padding-top: 0; border-width: 0 0 1px; border-style: solid; -webkit-box-shadow: none !important; box-shadow: none !important } .navbar-vertical.navbar-light { background-color: #fff; border-color: #eff2f7 } .navbar-vertical.navbar-dark { background-color: transparent; border-color: hsla(0, 0%, 100%, .1) } .navbar-vertical .navbar-brand { margin-right: 0 } .navbar-vertical .navbar-brand-img, .navbar-vertical .navbar-brand>img { max-width: 100%; max-height: 2rem } @media (min-width:768px) { .navbar-vertical .navbar-collapse { margin-left: -1rem; margin-right: -1rem } } .navbar-vertical .navbar-nav { margin-left: -1rem; margin-right: -1rem } .navbar-vertical .navbar-nav .nav-link { padding-left: 1rem; padding-right: 1rem; font-size: .875rem; font-weight: 600 } .navbar-vertical .navbar-nav .nav-link.active { position: relative } .navbar-vertical .navbar-nav .nav-link>i { min-width: 2rem; font-size: .9375rem; line-height: 1.7rem } .navbar-vertical .navbar-nav .nav-link .dropdown-menu { border: none } .navbar-vertical .navbar-nav .nav-link .dropdown-menu .dropdown-menu { margin-left: .5rem } .navbar-vertical .navbar-nav .nav-sm .nav-link { font-size: .8125rem } .navbar-vertical .navbar-nav .nav-link { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center } .navbar-vertical .navbar-nav .nav-link[data-toggle=collapse]:after { display: inline-block; font-style: normal; font-variant: normal; text-rendering: auto; -webkit-font-smoothing: antialiased; font-family: Font Awesome\ 5 Free; font-weight: 700; content: "\F105"; margin-left: auto; color: #e0e6ed; -webkit-transition: all .2s ease; -o-transition: all .2s ease; transition: all .2s ease } @media (prefers-reduced-motion:reduce) { .navbar-vertical .navbar-nav .nav-link[data-toggle=collapse]:after { -webkit-transition: none; -o-transition: none; transition: none } } .navbar-vertical .navbar-nav .nav-link[data-toggle=collapse][aria-expanded=true]:after { color: #6e00ff; -webkit-transform: rotate(90deg); -ms-transform: rotate(90deg); transform: rotate(90deg) } .navbar-vertical .navbar-nav .nav .nav-link { padding-left: 3rem } .navbar-vertical .navbar-nav .nav .nav .nav-link { padding-left: 3.5rem } .navbar-vertical .navbar-heading { padding-top: .5rem; padding-bottom: .5rem; font-size: .75rem; text-transform: uppercase; letter-spacing: .04em } .navbar-vertical.navbar-expand-xs { display: block; position: fixed; top: 0; bottom: 0; width: 100%; max-width: 0; overflow-y: auto; padding-left: 0; padding-right: 0 } .navbar-vertical.navbar-expand-xs .navbar-inner { padding-left: 1.5rem; padding-right: 1.5rem } .navbar-vertical.navbar-expand-xs>[class*=container] { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: stretch; -ms-flex-align: stretch; align-items: stretch; min-height: 100%; padding-left: 0; padding-right: 0 } @media (-ms-high-contrast:active), (-ms-high-contrast:none) { .navbar-vertical.navbar-expand-xs>[class*=container] { min-height: none; height: 100% } } .navbar-vertical.navbar-expand-xs.fixed-left { left: 0; border-width: 0 1px 0 0 } .navbar-vertical.navbar-expand-xs.fixed-right { right: 0; border-width: 0 0 0 1px } .navbar-vertical.navbar-expand-xs .navbar-collapse { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: stretch; -ms-flex-align: stretch; align-items: stretch; margin-left: -1.5rem; margin-right: -1.5rem; padding-left: 1.5rem; padding-right: 1.5rem; opacity: 1 } .navbar-vertical.navbar-expand-xs .navbar-collapse>* { min-width: 100% } .navbar-vertical.navbar-expand-xs .navbar-nav { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; margin-left: -1.5rem; margin-right: -1.5rem } .navbar-vertical.navbar-expand-xs .navbar-nav .nav-link { padding: .375rem 1.5rem } .navbar-vertical.navbar-expand-xs .navbar-nav>.nav-item { margin-top: 2px } .navbar-vertical.navbar-expand-xs .navbar-nav>.nav-item>.nav-link.active { background: #fafbfe; margin-right: .5rem; margin-left: .5rem; padding-left: 1rem; padding-right: 1rem; border-radius: .25rem } .navbar-vertical.navbar-expand-xs .lavalamp-object { width: calc(100% - 1rem) !important; background: #6e00ff; color: #fff; margin-right: .5rem; margin-left: .5rem; padding-left: 1rem; padding-right: 1rem; border-radius: .25rem } .navbar-vertical.navbar-expand-xs .navbar-nav .nav .nav-link { padding-top: .25rem; padding-bottom: .25rem; padding-left: 3.5rem } .navbar-vertical.navbar-expand-xs .navbar-nav .nav .nav .nav-link { padding-left: 4.25rem } @media (min-width:576px) { .navbar-vertical.navbar-expand-sm { display: block; position: fixed; top: 0; bottom: 0; width: 100%; max-width: 0; overflow-y: auto; padding-left: 0; padding-right: 0 } .navbar-vertical.navbar-expand-sm .navbar-inner { padding-left: 1.5rem; padding-right: 1.5rem } .navbar-vertical.navbar-expand-sm>[class*=container] { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: stretch; -ms-flex-align: stretch; align-items: stretch; min-height: 100%; padding-left: 0; padding-right: 0 } } @media (min-width:576px) and (-ms-high-contrast:active), (min-width:576px) and (-ms-high-contrast:none) { .navbar-vertical.navbar-expand-sm>[class*=container] { min-height: none; height: 100% } } @media (min-width:576px) { .navbar-vertical.navbar-expand-sm.fixed-left { left: 0; border-width: 0 1px 0 0 } } @media (min-width:576px) { .navbar-vertical.navbar-expand-sm.fixed-right { right: 0; border-width: 0 0 0 1px } } @media (min-width:576px) { .navbar-vertical.navbar-expand-sm .navbar-collapse { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: stretch; -ms-flex-align: stretch; align-items: stretch; margin-left: -1.5rem; margin-right: -1.5rem; padding-left: 1.5rem; padding-right: 1.5rem; opacity: 1 } .navbar-vertical.navbar-expand-sm .navbar-collapse>* { min-width: 100% } } @media (min-width:576px) { .navbar-vertical.navbar-expand-sm .navbar-nav { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; margin-left: -1.5rem; margin-right: -1.5rem } } @media (min-width:576px) { .navbar-vertical.navbar-expand-sm .navbar-nav .nav-link { padding: .375rem 1.5rem } } @media (min-width:576px) { .navbar-vertical.navbar-expand-sm .navbar-nav>.nav-item { margin-top: 2px } .navbar-vertical.navbar-expand-sm .navbar-nav>.nav-item>.nav-link.active { background: #fafbfe; margin-right: .5rem; margin-left: .5rem; padding-left: 1rem; padding-right: 1rem; border-radius: .25rem } } @media (min-width:576px) { .navbar-vertical.navbar-expand-sm .lavalamp-object { width: calc(100% - 1rem) !important; background: #6e00ff; color: #fff; margin-right: .5rem; margin-left: .5rem; padding-left: 1rem; padding-right: 1rem; border-radius: .25rem } } @media (min-width:576px) { .navbar-vertical.navbar-expand-sm .navbar-nav .nav .nav-link { padding-top: .25rem; padding-bottom: .25rem; padding-left: 3.5rem } } @media (min-width:576px) { .navbar-vertical.navbar-expand-sm .navbar-nav .nav .nav .nav-link { padding-left: 4.25rem } } @media (min-width:768px) { .navbar-vertical.navbar-expand-md { display: block; position: fixed; top: 0; bottom: 0; width: 100%; max-width: 0; overflow-y: auto; padding-left: 0; padding-right: 0 } .navbar-vertical.navbar-expand-md .navbar-inner { padding-left: 1.5rem; padding-right: 1.5rem } .navbar-vertical.navbar-expand-md>[class*=container] { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: stretch; -ms-flex-align: stretch; align-items: stretch; min-height: 100%; padding-left: 0; padding-right: 0 } } @media (min-width:768px) and (-ms-high-contrast:active), (min-width:768px) and (-ms-high-contrast:none) { .navbar-vertical.navbar-expand-md>[class*=container] { min-height: none; height: 100% } } @media (min-width:768px) { .navbar-vertical.navbar-expand-md.fixed-left { left: 0; border-width: 0 1px 0 0 } } @media (min-width:768px) { .navbar-vertical.navbar-expand-md.fixed-right { right: 0; border-width: 0 0 0 1px } } @media (min-width:768px) { .navbar-vertical.navbar-expand-md .navbar-collapse { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: stretch; -ms-flex-align: stretch; align-items: stretch; margin-left: -1.5rem; margin-right: -1.5rem; padding-left: 1.5rem; padding-right: 1.5rem; opacity: 1 } .navbar-vertical.navbar-expand-md .navbar-collapse>* { min-width: 100% } } @media (min-width:768px) { .navbar-vertical.navbar-expand-md .navbar-nav { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; margin-left: -1.5rem; margin-right: -1.5rem } } @media (min-width:768px) { .navbar-vertical.navbar-expand-md .navbar-nav .nav-link { padding: .375rem 1.5rem } } @media (min-width:768px) { .navbar-vertical.navbar-expand-md .navbar-nav>.nav-item { margin-top: 2px } .navbar-vertical.navbar-expand-md .navbar-nav>.nav-item>.nav-link.active { background: #fafbfe; margin-right: .5rem; margin-left: .5rem; padding-left: 1rem; padding-right: 1rem; border-radius: .25rem } } @media (min-width:768px) { .navbar-vertical.navbar-expand-md .lavalamp-object { width: calc(100% - 1rem) !important; background: #6e00ff; color: #fff; margin-right: .5rem; margin-left: .5rem; padding-left: 1rem; padding-right: 1rem; border-radius: .25rem } } @media (min-width:768px) { .navbar-vertical.navbar-expand-md .navbar-nav .nav .nav-link { padding-top: .25rem; padding-bottom: .25rem; padding-left: 3.5rem } } @media (min-width:768px) { .navbar-vertical.navbar-expand-md .navbar-nav .nav .nav .nav-link { padding-left: 4.25rem } } @media (min-width:992px) { .navbar-vertical.navbar-expand-lg { display: block; position: fixed; top: 0; bottom: 0; width: 100%; max-width: 0; overflow-y: auto; padding-left: 0; padding-right: 0 } .navbar-vertical.navbar-expand-lg .navbar-inner { padding-left: 1.5rem; padding-right: 1.5rem } .navbar-vertical.navbar-expand-lg>[class*=container] { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: stretch; -ms-flex-align: stretch; align-items: stretch; min-height: 100%; padding-left: 0; padding-right: 0 } } @media (min-width:992px) and (-ms-high-contrast:active), (min-width:992px) and (-ms-high-contrast:none) { .navbar-vertical.navbar-expand-lg>[class*=container] { min-height: none; height: 100% } } @media (min-width:992px) { .navbar-vertical.navbar-expand-lg.fixed-left { left: 0; border-width: 0 1px 0 0 } } @media (min-width:992px) { .navbar-vertical.navbar-expand-lg.fixed-right { right: 0; border-width: 0 0 0 1px } } @media (min-width:992px) { .navbar-vertical.navbar-expand-lg .navbar-collapse { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: stretch; -ms-flex-align: stretch; align-items: stretch; margin-left: -1.5rem; margin-right: -1.5rem; padding-left: 1.5rem; padding-right: 1.5rem; opacity: 1 } .navbar-vertical.navbar-expand-lg .navbar-collapse>* { min-width: 100% } } @media (min-width:992px) { .navbar-vertical.navbar-expand-lg .navbar-nav { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; margin-left: -1.5rem; margin-right: -1.5rem } } @media (min-width:992px) { .navbar-vertical.navbar-expand-lg .navbar-nav .nav-link { padding: .375rem 1.5rem } } @media (min-width:992px) { .navbar-vertical.navbar-expand-lg .navbar-nav>.nav-item { margin-top: 2px } .navbar-vertical.navbar-expand-lg .navbar-nav>.nav-item>.nav-link.active { background: #fafbfe; margin-right: .5rem; margin-left: .5rem; padding-left: 1rem; padding-right: 1rem; border-radius: .25rem } } @media (min-width:992px) { .navbar-vertical.navbar-expand-lg .lavalamp-object { width: calc(100% - 1rem) !important; background: #6e00ff; color: #fff; margin-right: .5rem; margin-left: .5rem; padding-left: 1rem; padding-right: 1rem; border-radius: .25rem } } @media (min-width:992px) { .navbar-vertical.navbar-expand-lg .navbar-nav .nav .nav-link { padding-top: .25rem; padding-bottom: .25rem; padding-left: 3.5rem } } @media (min-width:992px) { .navbar-vertical.navbar-expand-lg .navbar-nav .nav .nav .nav-link { padding-left: 4.25rem } } @media (min-width:1200px) { .navbar-vertical.navbar-expand-xl { display: block; position: fixed; top: 0; bottom: 0; width: 100%; max-width: 0; overflow-y: auto; padding-left: 0; padding-right: 0 } .navbar-vertical.navbar-expand-xl .navbar-inner { padding-left: 1.5rem; padding-right: 1.5rem } .navbar-vertical.navbar-expand-xl>[class*=container] { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: stretch; -ms-flex-align: stretch; align-items: stretch; min-height: 100%; padding-left: 0; padding-right: 0 } } @media (min-width:1200px) and (-ms-high-contrast:active), (min-width:1200px) and (-ms-high-contrast:none) { .navbar-vertical.navbar-expand-xl>[class*=container] { min-height: none; height: 100% } } @media (min-width:1200px) { .navbar-vertical.navbar-expand-xl.fixed-left { left: 0; border-width: 0 1px 0 0 } } @media (min-width:1200px) { .navbar-vertical.navbar-expand-xl.fixed-right { right: 0; border-width: 0 0 0 1px } } @media (min-width:1200px) { .navbar-vertical.navbar-expand-xl .navbar-collapse { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: stretch; -ms-flex-align: stretch; align-items: stretch; margin-left: -1.5rem; margin-right: -1.5rem; padding-left: 1.5rem; padding-right: 1.5rem; opacity: 1 } .navbar-vertical.navbar-expand-xl .navbar-collapse>* { min-width: 100% } } @media (min-width:1200px) { .navbar-vertical.navbar-expand-xl .navbar-nav { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; margin-left: -1.5rem; margin-right: -1.5rem } } @media (min-width:1200px) { .navbar-vertical.navbar-expand-xl .navbar-nav .nav-link { padding: .375rem 1.5rem } } @media (min-width:1200px) { .navbar-vertical.navbar-expand-xl .navbar-nav>.nav-item { margin-top: 2px } .navbar-vertical.navbar-expand-xl .navbar-nav>.nav-item>.nav-link.active { background: #fafbfe; margin-right: .5rem; margin-left: .5rem; padding-left: 1rem; padding-right: 1rem; border-radius: .25rem } } @media (min-width:1200px) { .navbar-vertical.navbar-expand-xl .lavalamp-object { width: calc(100% - 1rem) !important; background: #6e00ff; color: #fff; margin-right: .5rem; margin-left: .5rem; padding-left: 1rem; padding-right: 1rem; border-radius: .25rem } } @media (min-width:1200px) { .navbar-vertical.navbar-expand-xl .navbar-nav .nav .nav-link { padding-top: .25rem; padding-bottom: .25rem; padding-left: 3.5rem } } @media (min-width:1200px) { .navbar-vertical.navbar-expand-xl .navbar-nav .nav .nav .nav-link { padding-left: 4.25rem } } .navbar-vertical.navbar-expand-xs.fixed-left+.main-content { margin-left: 0 } .navbar-vertical.navbar-expand-xs.fixed-right+.main-content { margin-right: 0 } @media (min-width:576px) { .navbar-vertical.navbar-expand-sm.fixed-left+.main-content { margin-left: 0 } .navbar-vertical.navbar-expand-sm.fixed-right+.main-content { margin-right: 0 } } @media (min-width:768px) { .navbar-vertical.navbar-expand-md.fixed-left+.main-content { margin-left: 0 } .navbar-vertical.navbar-expand-md.fixed-right+.main-content { margin-right: 0 } } @media (min-width:992px) { .navbar-vertical.navbar-expand-lg.fixed-left+.main-content { margin-left: 0 } .navbar-vertical.navbar-expand-lg.fixed-right+.main-content { margin-right: 0 } } @media (min-width:1200px) { .navbar-vertical.navbar-expand-xl.fixed-left+.main-content { margin-left: 0 } .navbar-vertical.navbar-expand-xl.fixed-right+.main-content { margin-right: 0 } } .sidenav.fixed-left+.main-content { margin-left: 0; -webkit-transition: all .2s ease; -o-transition: all .2s ease; transition: all .2s ease } @media (prefers-reduced-motion:reduce) { .sidenav.fixed-left+.main-content { -webkit-transition: none; -o-transition: none; transition: none } } .sidenav.fixed-right+.main-content { margin-right: 0; -webkit-transition: all .2s ease; -o-transition: all .2s ease; transition: all .2s ease } @media (prefers-reduced-motion:reduce) { .sidenav.fixed-right+.main-content { -webkit-transition: none; -o-transition: none; transition: none } } @media (min-width:1200px) { .g-sidenav-pinned .sidenav.fixed-left+.main-content { margin-left: 250px } .g-sidenav-pinned .sidenav.fixed-right+.main-content { margin-right: 250px } } .sidenav { z-index: 1050; -webkit-transition: all .2s ease; -o-transition: all .2s ease; transition: all .2s ease } @media (prefers-reduced-motion:reduce) { .sidenav { -webkit-transition: none; -o-transition: none; transition: none } } @media (min-width:1200px) { .sidenav:hover { max-width: 250px } .sidenav .sidenav-toggler { padding: 1.5rem } } .sidenav .navbar-brand { padding: 1.5rem; display: none } .sidenav-header { height: 78px } .g-sidenav-show .sidenav .navbar-brand, .g-sidenav-show .sidenav .navbar-heading { display: block } .g-sidenav-show .sidenav .nav-item .collapse { height: auto; -webkit-transition: all .2s ease; -o-transition: all .2s ease; transition: all .2s ease } @media (prefers-reduced-motion:reduce) { .g-sidenav-show .sidenav .nav-item .collapse { -webkit-transition: none; -o-transition: none; transition: none } } .g-sidenav-pinned .sidenav { max-width: 250px !important } .g-sidenav-pinned .sidenav .navbar-brand, .g-sidenav-pinned .sidenav .navbar-heading { display: block } .g-sidenav-hidden:not(.g-sidenav-show) .sidenav .navbar-nav>.nav-item>.nav-link:after { content: "" } .g-sidenav-hidden:not(.g-sidenav-show) .sidenav .nav-item .collapse, .g-sidenav-hidden:not(.g-sidenav-show) .sidenav .nav-link-text { display: none !important } .g-sidenav-hide .sidenav .navbar-nav>.nav-item>.nav-link:after { content: "" } .g-sidenav-hide .sidenav .nav-item .collapse, .g-sidenav-hide .sidenav .nav-link-text { display: none !important } @media (max-width:1199.98px) { .sidenav { -webkit-transform: translateX(0); -ms-transform: translateX(0); transform: translateX(0) } .sidenav.fixed-left+.main-content { margin-left: 0 !important } .g-sidenav-pinned .sidenav { -webkit-transform: translateX(0); -ms-transform: translateX(0); transform: translateX(0) } } .sidenav-toggler { border: 0; background: transparent } .sidenav-toggler-inner, .sidenav-toggler-line { width: 18px; -webkit-transition: all .2s ease; -o-transition: all .2s ease; transition: all .2s ease } @media (prefers-reduced-motion:reduce) { .sidenav-toggler-inner, .sidenav-toggler-line { -webkit-transition: none; -o-transition: none; transition: none } } .sidenav-toggler-inner { position: relative } .sidenav-toggler-inner:before { content: ""; position: absolute; width: 40px; height: 40px; left: -11px; top: -14px; border-radius: 50%; -webkit-transform: scale(0); -ms-transform: scale(0); transform: scale(0); -webkit-transition: all .2s cubic-bezier(.77, 0, .2, 2.25); -o-transition: all .2s cubic-bezier(.77, 0, .2, 2.25); transition: all .2s cubic-bezier(.77, 0, .2, 2.25) } @media (prefers-reduced-motion:reduce) { .sidenav-toggler-inner:before { -webkit-transition: none; -o-transition: none; transition: none } } .sidenav-toggler-line { height: 2px; background-color: rgba(31, 45, 61, .5); display: block; position: relative } .sidenav-toggler-line:not(:last-child) { margin-bottom: 3px } .navbar-dark .sidenav-toggler-line { background-color: hsla(0, 0%, 100%, .85) } .sidenav-toggler { cursor: pointer } .sidenav-toggler.active .sidenav-toggler-inner:before { -webkit-transform: scale(1); -ms-transform: scale(1); transform: scale(1) } .sidenav-toggler.active .sidenav-toggler-line:first-child, .sidenav-toggler.active .sidenav-toggler-line:last-child { width: 13px; -webkit-transform: translateX(5px); -ms-transform: translateX(5px); transform: translateX(5px) } .navbar .dropdown-menu { min-width: 20rem; padding: 1rem 1.5rem; background-color: #fff; border: 0 solid rgba(31, 45, 61, 0); border-radius: .375rem; -webkit-box-shadow: 0 10px 30px 0 rgba(31, 45, 61, .1); box-shadow: 0 10px 30px 0 rgba(31, 45, 61, .1) } .navbar .dropdown-menu .dropdown-menu-links { background-color: #fafafa } .navbar .dropdown-menu .dropdown-header { color: #4a596d } .navbar .dropdown-menu .dropdown-item { padding: .5rem 0; color: #3c4858; font-size: 1rem } .navbar .dropdown-menu .dropdown-item:first-child { border-top-left-radius: .375rem; border-top-right-radius: .375rem } .navbar .dropdown-menu .dropdown-item:last-child { border-bottom-right-radius: .375rem; border-bottom-left-radius: .375rem } .navbar .dropdown-menu .dropdown-item:focus, .navbar .dropdown-menu .dropdown-item:hover { color: #657a95; text-decoration: none; background: transparent } .navbar .dropdown-menu .dropdown-item.active, .navbar .dropdown-menu .dropdown-item:active { color: #657a95; text-decoration: none; background-color: transparent } .navbar .dropdown-menu .list-group>li:first-child .list-group-item { border-top-left-radius: .375rem; border-top-right-radius: .375rem } .navbar .dropdown-menu .list-group>li:last-child .list-group-item { border-bottom-right-radius: .375rem; border-bottom-left-radius: .375rem } @media (max-width:575.98px) { .navbar-expand-sm .dropdown-toggle:after { float: right } } @media (min-width:576px) { .navbar-expand-sm .dropdown:not(.dropdown-submenu):not(.dropdown-fluid)>.dropdown-menu:not(.dropdown-menu-right) { margin-left: -1.25rem } .navbar-expand-sm .dropdown:not(.dropdown-submenu):not(.dropdown-fluid)>.dropdown-menu-right { margin-right: -1.25rem } .navbar-expand-sm .dropdown-menu .list-group>li .list-group-item { border: 0; -webkit-transform: scale(1); -ms-transform: scale(1); transform: scale(1); -webkit-transition: all .2s ease; -o-transition: all .2s ease; transition: all .2s ease } } @media (min-width:576px) and (prefers-reduced-motion:reduce) { .navbar-expand-sm .dropdown-menu .list-group>li .list-group-item { -webkit-transition: none; -o-transition: none; transition: none } } @media (min-width:576px) { .navbar-expand-sm .dropdown-menu .list-group>li .media-body * { -webkit-transition: all .2s ease; -o-transition: all .2s ease; transition: all .2s ease } } @media (min-width:576px) and (prefers-reduced-motion:reduce) { .navbar-expand-sm .dropdown-menu .list-group>li .media-body * { -webkit-transition: none; -o-transition: none; transition: none } } @media (min-width:576px) { .navbar-expand-sm .dropdown-menu .list-group>li:hover .list-group-item { z-index: 11; -webkit-transform: scale(1.05); -ms-transform: scale(1.05); transform: scale(1.05); background-color: #fafbfe; -webkit-box-shadow: 0 0 1.25rem rgba(31, 45, 61, .08); box-shadow: 0 0 1.25rem rgba(31, 45, 61, .08); border-radius: .375rem } } @media (min-width:576px) { .navbar-expand-sm .dropdown-submenu .dropdown-menu { min-width: 16rem; margin-left: 1rem } .navbar-expand-sm .dropdown-submenu .dropdown-menu:before { content: ""; border-left: 1.5rem solid transparent; position: absolute; left: -1rem; top: 0; height: 100% } .navbar-expand-sm .dropdown-submenu .dropdown-item:after { right: 0 } } @media (min-width:576px) { .navbar-expand-sm .dropdown-fluid .dropdown-menu { overflow: hidden; padding: 0; min-width: 1000px } .navbar-expand-sm .dropdown-fluid .dropdown-col-image { position: absolute; left: 0; top: 0; height: 100%; overflow: hidden } } @media (max-width:767.98px) { .navbar-expand-md .dropdown-toggle:after { float: right } } @media (min-width:768px) { .navbar-expand-md .dropdown:not(.dropdown-submenu):not(.dropdown-fluid)>.dropdown-menu:not(.dropdown-menu-right) { margin-left: -1.25rem } .navbar-expand-md .dropdown:not(.dropdown-submenu):not(.dropdown-fluid)>.dropdown-menu-right { margin-right: -1.25rem } .navbar-expand-md .dropdown-menu .list-group>li .list-group-item { border: 0; -webkit-transform: scale(1); -ms-transform: scale(1); transform: scale(1); -webkit-transition: all .2s ease; -o-transition: all .2s ease; transition: all .2s ease } } @media (min-width:768px) and (prefers-reduced-motion:reduce) { .navbar-expand-md .dropdown-menu .list-group>li .list-group-item { -webkit-transition: none; -o-transition: none; transition: none } } @media (min-width:768px) { .navbar-expand-md .dropdown-menu .list-group>li .media-body * { -webkit-transition: all .2s ease; -o-transition: all .2s ease; transition: all .2s ease } } @media (min-width:768px) and (prefers-reduced-motion:reduce) { .navbar-expand-md .dropdown-menu .list-group>li .media-body * { -webkit-transition: none; -o-transition: none; transition: none } } @media (min-width:768px) { .navbar-expand-md .dropdown-menu .list-group>li:hover .list-group-item { z-index: 11; -webkit-transform: scale(1.05); -ms-transform: scale(1.05); transform: scale(1.05); background-color: #fafbfe; -webkit-box-shadow: 0 0 1.25rem rgba(31, 45, 61, .08); box-shadow: 0 0 1.25rem rgba(31, 45, 61, .08); border-radius: .375rem } } @media (min-width:768px) { .navbar-expand-md .dropdown-submenu .dropdown-menu { min-width: 16rem; margin-left: 1rem } .navbar-expand-md .dropdown-submenu .dropdown-menu:before { content: ""; border-left: 1.5rem solid transparent; position: absolute; left: -1rem; top: 0; height: 100% } .navbar-expand-md .dropdown-submenu .dropdown-item:after { right: 0 } } @media (min-width:768px) { .navbar-expand-md .dropdown-fluid .dropdown-menu { overflow: hidden; padding: 0; min-width: 1000px } .navbar-expand-md .dropdown-fluid .dropdown-col-image { position: absolute; left: 0; top: 0; height: 100%; overflow: hidden } } @media (max-width:991.98px) { .navbar-expand-lg .dropdown-toggle:after { float: right } } @media (min-width:992px) { .navbar-expand-lg .dropdown:not(.dropdown-submenu):not(.dropdown-fluid)>.dropdown-menu:not(.dropdown-menu-right) { margin-left: -1.25rem } .navbar-expand-lg .dropdown:not(.dropdown-submenu):not(.dropdown-fluid)>.dropdown-menu-right { margin-right: -1.25rem } .navbar-expand-lg .dropdown-menu .list-group>li .list-group-item { border: 0; -webkit-transform: scale(1); -ms-transform: scale(1); transform: scale(1); -webkit-transition: all .2s ease; -o-transition: all .2s ease; transition: all .2s ease } } @media (min-width:992px) and (prefers-reduced-motion:reduce) { .navbar-expand-lg .dropdown-menu .list-group>li .list-group-item { -webkit-transition: none; -o-transition: none; transition: none } } @media (min-width:992px) { .navbar-expand-lg .dropdown-menu .list-group>li .media-body * { -webkit-transition: all .2s ease; -o-transition: all .2s ease; transition: all .2s ease } } @media (min-width:992px) and (prefers-reduced-motion:reduce) { .navbar-expand-lg .dropdown-menu .list-group>li .media-body * { -webkit-transition: none; -o-transition: none; transition: none } } @media (min-width:992px) { .navbar-expand-lg .dropdown-menu .list-group>li:hover .list-group-item { z-index: 11; -webkit-transform: scale(1.05); -ms-transform: scale(1.05); transform: scale(1.05); background-color: #fafbfe; -webkit-box-shadow: 0 0 1.25rem rgba(31, 45, 61, .08); box-shadow: 0 0 1.25rem rgba(31, 45, 61, .08); border-radius: .375rem } } @media (min-width:992px) { .navbar-expand-lg .dropdown-submenu .dropdown-menu { min-width: 16rem; margin-left: 1rem } .navbar-expand-lg .dropdown-submenu .dropdown-menu:before { content: ""; border-left: 1.5rem solid transparent; position: absolute; left: -1rem; top: 0; height: 100% } .navbar-expand-lg .dropdown-submenu .dropdown-item:after { right: 0 } } @media (min-width:992px) { .navbar-expand-lg .dropdown-fluid .dropdown-menu { overflow: hidden; padding: 0; min-width: 1000px } .navbar-expand-lg .dropdown-fluid .dropdown-col-image { position: absolute; left: 0; top: 0; height: 100%; overflow: hidden } } @media (max-width:1199.98px) { .navbar-expand-xl .dropdown-toggle:after { float: right } } @media (min-width:1200px) { .navbar-expand-xl .dropdown:not(.dropdown-submenu):not(.dropdown-fluid)>.dropdown-menu:not(.dropdown-menu-right) { margin-left: -1.25rem } .navbar-expand-xl .dropdown:not(.dropdown-submenu):not(.dropdown-fluid)>.dropdown-menu-right { margin-right: -1.25rem } .navbar-expand-xl .dropdown-menu .list-group>li .list-group-item { border: 0; -webkit-transform: scale(1); -ms-transform: scale(1); transform: scale(1); -webkit-transition: all .2s ease; -o-transition: all .2s ease; transition: all .2s ease } } @media (min-width:1200px) and (prefers-reduced-motion:reduce) { .navbar-expand-xl .dropdown-menu .list-group>li .list-group-item { -webkit-transition: none; -o-transition: none; transition: none } } @media (min-width:1200px) { .navbar-expand-xl .dropdown-menu .list-group>li .media-body * { -webkit-transition: all .2s ease; -o-transition: all .2s ease; transition: all .2s ease } } @media (min-width:1200px) and (prefers-reduced-motion:reduce) { .navbar-expand-xl .dropdown-menu .list-group>li .media-body * { -webkit-transition: none; -o-transition: none; transition: none } } @media (min-width:1200px) { .navbar-expand-xl .dropdown-menu .list-group>li:hover .list-group-item { z-index: 11; -webkit-transform: scale(1.05); -ms-transform: scale(1.05); transform: scale(1.05); background-color: #fafbfe; -webkit-box-shadow: 0 0 1.25rem rgba(31, 45, 61, .08); box-shadow: 0 0 1.25rem rgba(31, 45, 61, .08); border-radius: .375rem } } @media (min-width:1200px) { .navbar-expand-xl .dropdown-submenu .dropdown-menu { min-width: 16rem; margin-left: 1rem } .navbar-expand-xl .dropdown-submenu .dropdown-menu:before { content: ""; border-left: 1.5rem solid transparent; position: absolute; left: -1rem; top: 0; height: 100% } .navbar-expand-xl .dropdown-submenu .dropdown-item:after { right: 0 } } @media (min-width:1200px) { .navbar-expand-xl .dropdown-fluid .dropdown-menu { overflow: hidden; padding: 0; min-width: 1000px } .navbar-expand-xl .dropdown-fluid .dropdown-col-image { position: absolute; left: 0; top: 0; height: 100%; overflow: hidden } } .navbar-expand .dropdown-toggle:after { float: right } .navbar-expand .dropdown:not(.dropdown-submenu):not(.dropdown-fluid)>.dropdown-menu:not(.dropdown-menu-right) { margin-left: -1.25rem } .navbar-expand .dropdown:not(.dropdown-submenu):not(.dropdown-fluid)>.dropdown-menu-right { margin-right: -1.25rem } .navbar-expand .dropdown-menu .list-group>li .list-group-item { border: 0; -webkit-transform: scale(1); -ms-transform: scale(1); transform: scale(1); -webkit-transition: all .2s ease; -o-transition: all .2s ease; transition: all .2s ease } @media (prefers-reduced-motion:reduce) { .navbar-expand .dropdown-menu .list-group>li .list-group-item { -webkit-transition: none; -o-transition: none; transition: none } } .navbar-expand .dropdown-menu .list-group>li .media-body * { -webkit-transition: all .2s ease; -o-transition: all .2s ease; transition: all .2s ease } @media (prefers-reduced-motion:reduce) { .navbar-expand .dropdown-menu .list-group>li .media-body * { -webkit-transition: none; -o-transition: none; transition: none } } .navbar-expand .dropdown-menu .list-group>li:hover .list-group-item { z-index: 11; -webkit-transform: scale(1.05); -ms-transform: scale(1.05); transform: scale(1.05); background-color: #fafbfe; -webkit-box-shadow: 0 0 1.25rem rgba(31, 45, 61, .08); box-shadow: 0 0 1.25rem rgba(31, 45, 61, .08); border-radius: .375rem } .navbar-expand .dropdown-submenu .dropdown-menu { min-width: 16rem; margin-left: 1rem } .navbar-expand .dropdown-submenu .dropdown-menu:before { content: ""; border-left: 1.5rem solid transparent; position: absolute; left: -1rem; top: 0; height: 100% } .navbar-expand .dropdown-submenu .dropdown-item:after { right: 0 } .navbar-expand .dropdown-fluid .dropdown-menu { overflow: hidden; padding: 0; min-width: 1000px } .navbar-expand .dropdown-fluid .dropdown-col-image { position: absolute; left: 0; top: 0; height: 100%; overflow: hidden } .navbar-search .input-group { border-radius: 2rem; border: 0 solid; -webkit-transition: background-color .4s linear; -o-transition: background-color .4s linear; transition: background-color .4s linear; -webkit-transition-delay: .2s; -o-transition-delay: .2s; transition-delay: .2s } @media (prefers-reduced-motion:reduce) { .navbar-search .input-group { -webkit-transition: none; -o-transition: none; transition: none } } .navbar-search .input-group .input-group-text { background-color: transparent; padding-left: 1rem; border: 0 } .navbar-search .form-control { width: 250px; background-color: transparent; border: 0; -webkit-transition: all .2s cubic-bezier(.77, 0, .2, 2.25); -o-transition: all .2s cubic-bezier(.77, 0, .2, 2.25); transition: all .2s cubic-bezier(.77, 0, .2, 2.25) } @media (prefers-reduced-motion:reduce) { .navbar-search .form-control { -webkit-transition: none; -o-transition: none; transition: none } } .navbar-search .focused .input-group .form-control { width: 380px } .navbar-search .close { display: none } .navbar-search-dark .input-group { background-color: rgba(31, 45, 61, .8); border-color: hsla(0, 0%, 100%, .6) } .navbar-search-dark .input-group-text { color: hsla(0, 0%, 100%, .6) } .navbar-search-dark .form-control { color: hsla(0, 0%, 100%, .9) } .navbar-search-dark .form-control::-webkit-input-placeholder { color: hsla(0, 0%, 100%, .6) } .navbar-search-dark .form-control:-ms-input-placeholder { color: hsla(0, 0%, 100%, .6) } .navbar-search-dark .form-control::-ms-input-placeholder { color: hsla(0, 0%, 100%, .6) } .navbar-search-dark .form-control::placeholder { color: hsla(0, 0%, 100%, .6) } .navbar-search-dark .focused .input-group { background-color: rgba(31, 45, 61, .9); border-color: hsla(0, 0%, 100%, .9) } .navbar-search-light .input-group { background-color: hsla(0, 0%, 100%, .9); border-color: rgba(0, 0, 0, .6) } .navbar-search-light .input-group-text { color: rgba(0, 0, 0, .6) } .navbar-search-light .form-control { color: rgba(0, 0, 0, .9) } .navbar-search-light .form-control::-webkit-input-placeholder { color: rgba(0, 0, 0, .6) } .navbar-search-light .form-control:-ms-input-placeholder { color: rgba(0, 0, 0, .6) } .navbar-search-light .form-control::-ms-input-placeholder { color: rgba(0, 0, 0, .6) } .navbar-search-light .form-control::placeholder { color: rgba(0, 0, 0, .6) } .navbar-search-light .focused .input-group { background-color: #fff; border-color: rgba(0, 0, 0, .9) } .pagination { margin-bottom: 0 } .page-item .page-link, .page-item>span { margin: 0 3px; border-radius: .2rem; text-align: center } .pagination-circle .page-item .page-link, .pagination-circle .page-item>span { border-radius: 50% !important; margin: 0 5px; display: block; width: 36px; height: 36px } .pagination-circle.pagination-lg .page-item .page-link, .pagination-circle.pagination-lg .page-item>span { border-radius: 50% !important; margin: 0 5px; display: block; width: 52px; height: 52px } .omnisearch { width: 100%; margin-top: 1.5rem; position: fixed; top: 0; left: 0; z-index: 1050; opacity: 0; background-color: transparent; pointer-events: none; -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); -webkit-transition: opacity .15s, -webkit-transform .3s; transition: opacity .15s, -webkit-transform .3s; -o-transition: transform .3s, opacity .15s; transition: transform .3s, opacity .15s; transition: transform .3s, opacity .15s, -webkit-transform .3s } @media (prefers-reduced-motion:reduce) { .omnisearch { -webkit-transition: none; -o-transition: none; transition: none } } .omnisearch.show { opacity: 1; -webkit-transform: translateY(50%); -ms-transform: translateY(50%); transform: translateY(50%) } .omnisearch .container { position: relative; height: 100% } .omnisearch .omnisearch-form { display: block; position: relative; z-index: 700; background: #fff; border-radius: .375rem; width: 680px; margin: auto } .omnisearch .omnisearch-form .input-group-text { font-size: 1.25rem; background: transparent } .omnisearch .omnisearch-form .form-control { display: block; height: 68px; font-size: 1.25rem; color: #454545; background-color: transparent; background-image: none } .omnisearch .omnisearch-form .form-control::-webkit-input-placeholder { color: #c0ccda } .omnisearch .omnisearch-form .form-control:-ms-input-placeholder { color: #c0ccda } .omnisearch .omnisearch-form .form-control::-ms-input-placeholder { color: #c0ccda } .omnisearch .omnisearch-form .form-control::placeholder { color: #c0ccda } .omnisearch .omnisearch-suggestions { width: 680px; min-height: 150px; padding: 1.5rem; background: #fff; margin: auto; border-radius: .375rem; position: relative; opacity: 0; -webkit-transition: opacity .3s; -o-transition: opacity .3s; transition: opacity .3s; -webkit-transition-delay: .21s; -o-transition-delay: .21s; transition-delay: .21s } @media (prefers-reduced-motion:reduce) { .omnisearch .omnisearch-suggestions { -webkit-transition: none; -o-transition: none; transition: none } } .omnisearch .omnisearch-suggestions:before { background: #fff; -webkit-box-shadow: none; box-shadow: none; content: ""; display: block; height: 16px; width: 16px; left: 20px; position: absolute; bottom: 100%; -webkit-transform: rotate(-45deg) translateY(1rem); -ms-transform: rotate(-45deg) translateY(1rem); transform: rotate(-45deg) translateY(1rem); z-index: -5; border-radius: .2rem } .omnisearch .omnisearch-suggestions .heading { color: #8492a6 } .omnisearch .omnisearch-suggestions .list-link span { font-weight: 600; color: #3c4858 } .omnisearch .omnisearch-suggestions .list-link:hover, .omnisearch .omnisearch-suggestions .list-link:hover span { color: #6e00ff } .omnisearch.show .omnisearch-form, .omnisearch.show .omnisearch-suggestions { pointer-events: auto } .omnisearch.show .omnisearch-suggestions { opacity: 1 } @media (max-width:991.98px) { .omnisearch .omnisearch-form, .omnisearch .omnisearch-suggestions { width: 100% } } .omnisearch-open { overflow: hidden } .popover { border: 0 } .popover-header { font-weight: 600 } .popover-primary { background-color: #6e00ff } .popover-primary .popover-header { background-color: #6e00ff; color: #fff } .popover-primary .popover-body { color: #fff } .popover-primary .popover-header { border-color: hsla(0, 0%, 100%, .2) } .popover-primary.bs-popover-auto[x-placement^=top] .arrow:after, .popover-primary.bs-popover-top .arrow:after { border-top-color: #6e00ff } .popover-primary.bs-popover-auto[x-placement^=right] .arrow:after, .popover-primary.bs-popover-right .arrow:after { border-right-color: #6e00ff } .popover-primary.bs-popover-auto[x-placement^=bottom] .arrow:after, .popover-primary.bs-popover-bottom .arrow:after { border-bottom-color: #6e00ff } .popover-primary.bs-popover-auto[x-placement^=left] .arrow:after, .popover-primary.bs-popover-left .arrow:after { border-left-color: #6e00ff } .popover-secondary { background-color: #eff2f7 } .popover-secondary .popover-header { background-color: #eff2f7; color: #273444 } .popover-secondary .popover-body { color: #273444 } .popover-secondary .popover-header { border-color: rgba(39, 52, 68, .2) } .popover-secondary.bs-popover-auto[x-placement^=top] .arrow:after, .popover-secondary.bs-popover-top .arrow:after { border-top-color: #eff2f7 } .popover-secondary.bs-popover-auto[x-placement^=right] .arrow:after, .popover-secondary.bs-popover-right .arrow:after { border-right-color: #eff2f7 } .popover-secondary.bs-popover-auto[x-placement^=bottom] .arrow:after, .popover-secondary.bs-popover-bottom .arrow:after { border-bottom-color: #eff2f7 } .popover-secondary.bs-popover-auto[x-placement^=left] .arrow:after, .popover-secondary.bs-popover-left .arrow:after { border-left-color: #eff2f7 } .popover-success { background-color: #36b37e } .popover-success .popover-header { background-color: #36b37e; color: #fff } .popover-success .popover-body { color: #fff } .popover-success .popover-header { border-color: hsla(0, 0%, 100%, .2) } .popover-success.bs-popover-auto[x-placement^=top] .arrow:after, .popover-success.bs-popover-top .arrow:after { border-top-color: #36b37e } .popover-success.bs-popover-auto[x-placement^=right] .arrow:after, .popover-success.bs-popover-right .arrow:after { border-right-color: #36b37e } .popover-success.bs-popover-auto[x-placement^=bottom] .arrow:after, .popover-success.bs-popover-bottom .arrow:after { border-bottom-color: #36b37e } .popover-success.bs-popover-auto[x-placement^=left] .arrow:after, .popover-success.bs-popover-left .arrow:after { border-left-color: #36b37e } .popover-info { background-color: #00b8d9 } .popover-info .popover-header { background-color: #00b8d9; color: #fff } .popover-info .popover-body { color: #fff } .popover-info .popover-header { border-color: hsla(0, 0%, 100%, .2) } .popover-info.bs-popover-auto[x-placement^=top] .arrow:after, .popover-info.bs-popover-top .arrow:after { border-top-color: #00b8d9 } .popover-info.bs-popover-auto[x-placement^=right] .arrow:after, .popover-info.bs-popover-right .arrow:after { border-right-color: #00b8d9 } .popover-info.bs-popover-auto[x-placement^=bottom] .arrow:after, .popover-info.bs-popover-bottom .arrow:after { border-bottom-color: #00b8d9 } .popover-info.bs-popover-auto[x-placement^=left] .arrow:after, .popover-info.bs-popover-left .arrow:after { border-left-color: #00b8d9 } .popover-warning { background-color: #ffab00 } .popover-warning .popover-header { background-color: #ffab00; color: #fff } .popover-warning .popover-body { color: #fff } .popover-warning .popover-header { border-color: hsla(0, 0%, 100%, .2) } .popover-warning.bs-popover-auto[x-placement^=top] .arrow:after, .popover-warning.bs-popover-top .arrow:after { border-top-color: #ffab00 } .popover-warning.bs-popover-auto[x-placement^=right] .arrow:after, .popover-warning.bs-popover-right .arrow:after { border-right-color: #ffab00 } .popover-warning.bs-popover-auto[x-placement^=bottom] .arrow:after, .popover-warning.bs-popover-bottom .arrow:after { border-bottom-color: #ffab00 } .popover-warning.bs-popover-auto[x-placement^=left] .arrow:after, .popover-warning.bs-popover-left .arrow:after { border-left-color: #ffab00 } .popover-danger { background-color: #ff5630 } .popover-danger .popover-header { background-color: #ff5630; color: #fff } .popover-danger .popover-body { color: #fff } .popover-danger .popover-header { border-color: hsla(0, 0%, 100%, .2) } .popover-danger.bs-popover-auto[x-placement^=top] .arrow:after, .popover-danger.bs-popover-top .arrow:after { border-top-color: #ff5630 } .popover-danger.bs-popover-auto[x-placement^=right] .arrow:after, .popover-danger.bs-popover-right .arrow:after { border-right-color: #ff5630 } .popover-danger.bs-popover-auto[x-placement^=bottom] .arrow:after, .popover-danger.bs-popover-bottom .arrow:after { border-bottom-color: #ff5630 } .popover-danger.bs-popover-auto[x-placement^=left] .arrow:after, .popover-danger.bs-popover-left .arrow:after { border-left-color: #ff5630 } .popover-light { background-color: #eff2f7 } .popover-light .popover-header { background-color: #eff2f7; color: #273444 } .popover-light .popover-body { color: #273444 } .popover-light .popover-header { border-color: rgba(39, 52, 68, .2) } .popover-light.bs-popover-auto[x-placement^=top] .arrow:after, .popover-light.bs-popover-top .arrow:after { border-top-color: #eff2f7 } .popover-light.bs-popover-auto[x-placement^=right] .arrow:after, .popover-light.bs-popover-right .arrow:after { border-right-color: #eff2f7 } .popover-light.bs-popover-auto[x-placement^=bottom] .arrow:after, .popover-light.bs-popover-bottom .arrow:after { border-bottom-color: #eff2f7 } .popover-light.bs-popover-auto[x-placement^=left] .arrow:after, .popover-light.bs-popover-left .arrow:after { border-left-color: #eff2f7 } .popover-dark { background-color: #273444 } .popover-dark .popover-header { background-color: #273444; color: #fff } .popover-dark .popover-body { color: #fff } .popover-dark .popover-header { border-color: hsla(0, 0%, 100%, .2) } .popover-dark.bs-popover-auto[x-placement^=top] .arrow:after, .popover-dark.bs-popover-top .arrow:after { border-top-color: #273444 } .popover-dark.bs-popover-auto[x-placement^=right] .arrow:after, .popover-dark.bs-popover-right .arrow:after { border-right-color: #273444 } .popover-dark.bs-popover-auto[x-placement^=bottom] .arrow:after, .popover-dark.bs-popover-bottom .arrow:after { border-bottom-color: #273444 } .popover-dark.bs-popover-auto[x-placement^=left] .arrow:after, .popover-dark.bs-popover-left .arrow:after { border-left-color: #273444 } .popover-neutral { background-color: #fff } .popover-neutral .popover-header { background-color: #fff; color: #273444 } .popover-neutral .popover-body { color: #273444 } .popover-neutral .popover-header { border-color: rgba(39, 52, 68, .2) } .popover-neutral.bs-popover-auto[x-placement^=top] .arrow:after, .popover-neutral.bs-popover-top .arrow:after { border-top-color: #fff } .popover-neutral.bs-popover-auto[x-placement^=right] .arrow:after, .popover-neutral.bs-popover-right .arrow:after { border-right-color: #fff } .popover-neutral.bs-popover-auto[x-placement^=bottom] .arrow:after, .popover-neutral.bs-popover-bottom .arrow:after { border-bottom-color: #fff } .popover-neutral.bs-popover-auto[x-placement^=left] .arrow:after, .popover-neutral.bs-popover-left .arrow:after { border-left-color: #fff } .popover-white { background-color: #fff } .popover-white .popover-header { background-color: #fff; color: #273444 } .popover-white .popover-body { color: #273444 } .popover-white .popover-header { border-color: rgba(39, 52, 68, .2) } .popover-white.bs-popover-auto[x-placement^=top] .arrow:after, .popover-white.bs-popover-top .arrow:after { border-top-color: #fff } .popover-white.bs-popover-auto[x-placement^=right] .arrow:after, .popover-white.bs-popover-right .arrow:after { border-right-color: #fff } .popover-white.bs-popover-auto[x-placement^=bottom] .arrow:after, .popover-white.bs-popover-bottom .arrow:after { border-bottom-color: #fff } .popover-white.bs-popover-auto[x-placement^=left] .arrow:after, .popover-white.bs-popover-left .arrow:after { border-left-color: #fff } .progress-wrapper { position: relative; padding-top: 1.5rem } .progress-wrapper .progress { margin-bottom: 1rem } .progress-inverse { background-color: inverse(#eff2f7) } .progress-heading { font-size: .875rem; font-weight: 600; margin: 0 0 2px; padding: 0 } .progress-text { margin-bottom: 0 } .progress-lg { height: 1rem } .progress-md { height: .75rem } .progress-sm { height: .375rem } .progress-xs { height: .125rem } .progress-group { position: relative } .progress-prepend-icon { position: absolute; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); font-size: 20px; top: 50% } .progress-prepend-icon:not(:first-child) { right: -17px } .progress-prepend-icon:not(:last-child) { left: -17px } .progress-tooltip { display: inline-block; background: rgba(0, 0, 0, .8); color: #fff; padding: .25rem .375rem; line-height: 1; font-size: .7rem; position: relative; bottom: 8px; border-radius: 3px; margin-left: -15px } .progress-tooltip:after { top: 100%; left: 10px; content: " "; height: 0; width: 0; position: absolute; pointer-events: none; border: 5px solid rgba(51, 51, 51, 0); border-top-color: rgba(0, 0, 0, .8) } .progress-label { left: 0; color: #3c4858 } .progress-label, .progress-percentage { display: inline-block; position: absolute; top: 0 } .progress-percentage { right: 0 } .static-rating { display: inline-block } .static-rating .star { color: #e0e6ed } .static-rating .voted { color: #fc0 } .static-rating-sm .star { font-size: .75rem } .rating { display: inline-block } .rating .star { font-family: Font Awesome\ 5 Solid; font-weight: 400; font-style: normal; float: left; padding: 0 1px; cursor: pointer } .rating .star:before { content: "\F005"; display: block; font-size: 14px; color: #e0e6ed; -webkit-transition: all .2s linear; -o-transition: all .2s linear; transition: all .2s linear } .rating:hover .star:before { color: #e0e6ed } .rating .voted:before, .rating:hover .over:before { color: #fc0 } .rating-lg .star:before { font-size: 18px } .rating-xl .star:before { font-size: 24px } .ribbon { position: absolute; top: 1rem; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; width: 2.5rem; height: 2.5rem; font-size: .75rem; font-weight: 600; z-index: 10 } .ribbon-left { left: 1rem } .ribbon-right { right: 1rem } .ribbon-primary { color: #fff; background-color: #8b33ff } .ribbon-secondary { color: #273444; background-color: #fff } .ribbon-success { color: #fff; background-color: #51cb97 } .ribbon-info { color: #fff; background-color: #0ddaff } .ribbon-warning { color: #fff; background-color: #ffbc33 } .ribbon-danger { color: #fff; background-color: #ff8063 } .ribbon-light { color: #273444; background-color: #fff } .ribbon-dark { color: #fff; background-color: #3a4d64 } .ribbon-neutral, .ribbon-white { color: #273444; background-color: #fff } section { background-color: #fff } .slice { position: relative; padding-top: 4rem; padding-bottom: 4rem } .slice-xl { padding-top: 8rem; padding-bottom: 8rem } .slice-lg { padding-top: 6rem; padding-bottom: 6rem } .slice-sm { padding-top: 2rem; padding-bottom: 2rem } .slice:not(.border-top):not(.border-bottom):not(.delimiter-bottom):not([class*=bg-]):not(.section-rotate)+.slice:not(.border-top):not(.border-bottom):not(.delimiter-top):not([class*=bg-]) { padding-top: 0 } .slice-video { min-height: 600px } .section-rotate { padding-top: 4rem; padding-bottom: 4rem; overflow: hidden; background: transparent; position: relative; z-index: 0 } .section-rotate .section-inner { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -2 } @media (min-width:992px) { .section-rotate { min-height: 880px; padding-top: 8rem; padding-bottom: 8rem } .section-rotate .section-inner { background: inherit; overflow: hidden } .section-rotate .section-inner+.container { position: relative; z-index: 0 } .section-rotate .section-inner-bg { position: absolute; width: 100%; height: 100% } } @media (min-width:1200px) { .section-rotate { padding-top: 8rem; padding-bottom: 12rem } .section-rotate .section-inner { top: -40%; left: -1rem; width: 130%; height: 124%; -webkit-transform: rotate(-7deg); -ms-transform: rotate(-7deg); transform: rotate(-7deg); border-bottom-left-radius: 3rem } .section-rotate .section-inner+.container { padding-left: 2rem } .section-rotate .container { position: relative } } @media only screen and (min-width:2000px) { .section-rotate .section-inner { top: -40%; left: -1rem; width: 120%; height: 118% } .section-rotate .container { position: relative } } .section-half-rounded { padding-top: 7rem; padding-bottom: 7rem; overflow: hidden; background: transparent; position: relative; z-index: 0 } .section-half-rounded .section-inner { position: absolute; top: 0; left: 0; width: 70%; height: 100%; z-index: -2; border-top-right-radius: 40px; border-bottom-right-radius: 40px } @media (max-width:991.98px) { .section-half-rounded .section-inner { width: 100% } } .section-process { background: transparent } .section-process-step { position: relative; padding: 4.5rem 0 } .section-process-step:not(:last-child):before { content: ""; display: block; width: 360px; height: 100px; background: url("data:image/svg+xml;charset=utf8,%3Csvg width='355px' height='103px' viewBox='0 0 355 103' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' stroke-dasharray='6,12' stroke-linecap='round'%3E%3Cpath stroke='%23EFF2F7' stroke-width='3' transform='translate(173.245679, 51.548257) scale(-1, 1) translate(-173.245679, -51.548257)' d='M-6.75432109,1.54825684 C113.245679,110.326533 233.245679,130.359459 353.245679,61.647035'/%3E%3C/g%3E%3C/svg%3E") no-repeat 50%; background-size: 360px 100px; -webkit-transform: rotate(40deg); -ms-transform: rotate(40deg); transform: rotate(40deg); position: absolute; margin: auto; left: 0; right: 0; bottom: -80px } @media (max-width:991.98px) { .section-process-step:not(:last-child):before { -webkit-transform: rotate(90deg) scale(.7); -ms-transform: rotate(90deg) scale(.7); transform: rotate(90deg) scale(.7); bottom: 20px } } .section-process-step:nth-child(2n):before { background: url("data:image/svg+xml;charset=utf8,%3Csvg width='355px' height='103px' viewBox='0 0 355 103' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' stroke-dasharray='6,12' stroke-linecap='round'%3E%3Cpath stroke='%23EFF2F7' stroke-width='3' d='M2.24567891,1.54825684 C122.245679,110.326533 242.245679,130.359459 362.245679,61.647035'/%3E%3C/g%3E%3C/svg%3E") no-repeat 50%; background-size: 360px 100px; -webkit-transform: rotate(-40deg); -ms-transform: rotate(-40deg); transform: rotate(-40deg) } @media (max-width:991.98px) { .section-process-step:nth-child(2n):before { -webkit-transform: rotate(-90deg) scale(.7); -ms-transform: rotate(-90deg) scale(.7); transform: rotate(-90deg) scale(.7); bottom: 20px } } .section-floating-icons { --icon-size: 5rem; --icon-sm-size: 3.75rem; --gutter: 7rem } .section-floating-icons .icons-container { position: relative; max-width: 100%; height: 360px; margin: 0 auto } .section-floating-icons .icons-container span { position: absolute; display: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; background: #fff; z-index: 1; -webkit-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%); border-radius: 50%; -webkit-box-shadow: 0 0 1.25rem rgba(31, 45, 61, .08); box-shadow: 0 0 1.25rem rgba(31, 45, 61, .08); -webkit-transition: all .2s cubic-bezier(.77, 0, .2, 2.25); -o-transition: all .2s cubic-bezier(.77, 0, .2, 2.25); transition: all .2s cubic-bezier(.77, 0, .2, 2.25) } @media (prefers-reduced-motion:reduce) { .section-floating-icons .icons-container span { -webkit-transition: none; -o-transition: none; transition: none } } .section-floating-icons .icons-container span.icon { width: 5rem; height: 5rem } .section-floating-icons .icons-container span.icon i { font-size: 2.3em } .section-floating-icons .icons-container span.icon-sm { width: 3.75rem; height: 3.75rem } .section-floating-icons .icons-container span.icon-sm i { font-size: 1.5em } .section-floating-icons .icons-container span:first-child { color: #ffab00; z-index: 2 } .section-floating-icons .icons-container span img { max-width: 100% } .section-floating-icons .icons-container span { opacity: 1 } .section-floating-icons .icons-container span:first-child { left: 50%; top: 50%; font-size: 42px; color: #00b8d9 } .section-floating-icons .icons-container span:nth-child(2) { left: calc(50% + 11.9rem); top: 50% } .section-floating-icons .icons-container span:nth-child(3) { left: calc(50% + 7rem); top: calc(50% + 7rem) } .section-floating-icons .icons-container span:nth-child(4) { left: calc(50% + 7rem); top: calc(50% - 7rem) } .section-floating-icons .icons-container span:nth-child(5) { left: calc(50% + 28rem); top: 50% } .section-floating-icons .icons-container span:nth-child(6) { left: calc(50% + 18.9rem); top: calc(50% + 10.5rem) } .section-floating-icons .icons-container span:nth-child(7) { left: calc(50% + 18.9rem); top: calc(50% - 10.5rem) } .section-floating-icons .icons-container span:nth-child(8) { left: calc(50% - 11.9rem); top: 50% } .section-floating-icons .icons-container span:nth-child(9) { left: calc(50% - 7rem); top: calc(50% + 7rem) } .section-floating-icons .icons-container span:nth-child(10) { left: calc(50% - 7rem); top: calc(50% - 7rem) } .section-floating-icons .icons-container span:nth-child(11) { left: calc(50% - 28rem); top: 50% } .section-floating-icons .icons-container span:nth-child(12) { left: calc(50% - 18.9rem); top: calc(50% + 10.5rem) } .section-floating-icons .icons-container span:nth-child(13) { left: calc(50% - 18.9rem); top: calc(50% - 10.5rem) } .sidebar-sticky.is_stuck { padding-top: 1.5rem } .spotlight { position: relative } .spotlight .container { height: 100% } .spotlight .animated { opacity: 0 } .spotlight .animated.animation-ended { opacity: 1 } @media (min-width:768px) { .spotlight-overlay-img { position: relative } .spotlight-overlay-img img { position: absolute; z-index: 10 } } .table thead th { padding-top: .75rem; padding-bottom: .75rem; font-size: .75rem; text-transform: uppercase; letter-spacing: 1px; background-color: #fafbfe; border-bottom-width: 1px } .table th { font-weight: 600 } .table td .progress { height: 3px; width: 120px; margin: 0 } .table td, .table th { font-size: .8125rem; white-space: nowrap } .table.align-items-center td, .table.align-items-center th { vertical-align: middle } .table.table-dark thead th, .table .thead-dark th { background-color: #2e3e51; color: #708cad } .table.table-dark thead th a, .table .thead-dark th a { color: #708cad } .table .thead-light th { background-color: #fafbfe; color: #8492a6 } .table .thead-light th a { color: #8492a6 } .table-hover tr { -webkit-transition: all .2s ease; -o-transition: all .2s ease; transition: all .2s ease } @media (prefers-reduced-motion:reduce) { .table-hover tr { -webkit-transition: none; -o-transition: none; transition: none } } .table-flush tbody tr:first-child td, .table-flush tbody tr:first-child th { border-top: 0 } .table-flush tbody tr:last-child td, .table-flush tbody tr:last-child th { border-bottom: 0 } .card .table { margin-bottom: 0 } .card .table td, .card .table th { padding-left: 1.5rem; padding-right: 1.5rem } .table .custom-toggle { display: block } .table-flush td, .table-flush th { border-left: 0; border-right: 0 } .table-flush tr:first-child td, .table-flush tr:first-child th { border-top: 0 } .table-flush tr:last-child td, .table-flush tr:last-child th { border-bottom: 0 } .table-cards tbody td, .table-cards tbody th, .table-cards thead td, .table-cards thead th { border: 0 !important; padding: 1rem; position: relative; background-color: transparent } .table-cards tbody tr:not(.table-divider) { border-radius: .375rem; -webkit-box-shadow: 0 .75rem 1.5rem rgba(18, 38, 63, .03); box-shadow: 0 .75rem 1.5rem rgba(18, 38, 63, .03) } .table-cards tbody tr th, .table-cards tbody tr th:after { border-radius: .375rem 0 0 .375rem } .table-cards tbody tr th:after { border-left: 1px solid #eff2f7 } .table-cards tbody tr td:last-child { border-radius: 0 .375rem .375rem 0 } .table-cards tbody tr td:last-child:after { border-radius: 0 .375rem .375rem 0; border-right: 1px solid #eff2f7 } .table-cards tbody tr td, .table-cards tbody tr th { background-color: #fff } .table-cards tbody tr td:after, .table-cards tbody tr th:after { content: ""; position: absolute; width: 100%; height: 100%; border-top: 1px solid #eff2f7; border-bottom: 1px solid #eff2f7; left: 0; top: 0; pointer-events: none } .table-cards tr.table-divider { height: 1rem } .table-cards.table-hover tbody>tr:hover td, .table-cards.table-hover tbody>tr:hover th { background-color: #fafbfe } @media (min-width:768px) { .table-cards.table-scale--hover tr:hover { -webkit-transform: scale(1.02); -ms-transform: scale(1.02); transform: scale(1.02) } } .table [data-sort] { cursor: pointer } .table .thead-dark [data-sort]:after { content: url("data:image/svg+xml;utf8,"); margin-left: .25rem } .table .thead-light [data-sort]:after { content: url("data:image/svg+xml;utf8,"); margin-left: .25rem } .timeline { position: relative } .timeline:before { content: ""; position: absolute; top: 0; left: 1rem; height: 100%; border-right: 2px solid #eff2f7 } [data-timeline-axis-style=dashed]:before { border-right-style: dashed !important } [data-timeline-axis-style=dotted]:before { border-right-style: dotted !important } .timeline-block { position: relative; margin: 2em 0 } .timeline-block:after { content: ""; display: table; clear: both } .timeline-block:first-child { margin-top: 0 } .timeline-block:last-child { margin-bottom: 0 } .timeline-step { position: absolute; display: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; left: 0; width: 33px; height: 33px; border-radius: 50%; background: #fff; border: 2px solid #eff2f7; text-align: center; -webkit-transform: translateX(-50%); -ms-transform: translateX(-50%); transform: translateX(-50%); font-size: 1rem; font-weight: 600; z-index: 1 } .timeline-step i, .timeline-step svg { line-height: 1.4 } .timeline-step-icon { background: #fff; border: 2px solid #eff2f7 } .timeline-step-xs { width: 17px; height: 17px; font-size: .75rem } .timeline-step-sm { width: 23px; height: 23px; font-size: .75rem } .timeline-step-lg { width: 47px; height: 47px; font-size: 1.75rem } .timeline-content { margin-left: 60px; margin-right: 30px; position: relative; top: -6px } .timeline-content:after { content: ""; display: table; clear: both } .timeline-body { padding: 1.5rem } @media (min-width:992px) { .timeline:before { left: 50%; margin-left: -2px } .timeline-step { left: 50% } .timeline-content { width: 38% } .timeline-body { padding: 1.5rem } .timeline-block:nth-child(2n) .timeline-content { float: right } [data-timeline-axis-color=primary]:before { border-color: #6e00ff } [data-timeline-axis-color=secondary]:before { border-color: #eff2f7 } [data-timeline-axis-color=success]:before { border-color: #36b37e } [data-timeline-axis-color=info]:before { border-color: #00b8d9 } [data-timeline-axis-color=warning]:before { border-color: #ffab00 } [data-timeline-axis-color=danger]:before { border-color: #ff5630 } [data-timeline-axis-color=light]:before { border-color: #eff2f7 } [data-timeline-axis-color=dark]:before { border-color: #273444 } [data-timeline-axis-color=neutral]:before, [data-timeline-axis-color=white]:before { border-color: #fff } } .timeline-one-side .timeline-step, .timeline-one-side:before { left: 1rem } .timeline-one-side .timeline-content { width: auto } .timeline-one-side .timeline-block:nth-child(2n) .timeline-content { float: none } .tongue { display: inline-block; position: absolute; top: 0; left: 50%; z-index: 1; -webkit-transform: rotate(180deg) translateX(50%); -ms-transform: rotate(180deg) translateX(50%); transform: rotate(180deg) translateX(50%); width: 138px; height: 35px; line-height: 35px; text-align: center; color: #8492a6; background-size: 100%; background-repeat: no-repeat; background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='138' height='35' viewBox='0 0 138 35'%3E%3Cpath fill='%23FFF' d='M 3.15027 34.4375C 1.74207 34.6025 0.68396 34.7266 0 35L 68.9982 35C 68.9982 35 68.9998 28.6387 69 19.5132C 69 20.7261 69.0001 21.8892 69.0001 22.9956L 69.0018 35L 138 35C 137.316 34.7266 136.258 34.6025 134.85 34.4375C 131.11 33.9995 124.903 33.2729 116.678 28.6875C 111.015 25.3901 106.523 20.9771 102.07 16.6025C 93.5474 8.23096 85.1685 -1.97984e-15 69.0018 3.55056e-31C 69.0006 5.271 69 10.4292 69 15.0952C 69 10.4287 68.9994 5.27148 68.9982 3.55056e-31C 52.8314 1.97986e-15 44.4526 8.23096 35.9302 16.6025C 31.4772 20.9771 26.985 25.3901 21.3221 28.6875C 13.0974 33.2729 6.88965 33.9995 3.15027 34.4375Z'/%3E%3C/svg%3E") } .tongue i { -webkit-animation: floating-sm 2s ease infinite; animation: floating-sm 2s ease infinite } .tongue:hover i { -webkit-animation-play-state: paused; animation-play-state: paused } .tongue-primary { background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='138' height='35' viewBox='0 0 138 35'%3E%3Cpath fill='%236e00ff' d='M 3.15027 34.4375C 1.74207 34.6025 0.68396 34.7266 0 35L 68.9982 35C 68.9982 35 68.9998 28.6387 69 19.5132C 69 20.7261 69.0001 21.8892 69.0001 22.9956L 69.0018 35L 138 35C 137.316 34.7266 136.258 34.6025 134.85 34.4375C 131.11 33.9995 124.903 33.2729 116.678 28.6875C 111.015 25.3901 106.523 20.9771 102.07 16.6025C 93.5474 8.23096 85.1685 -1.97984e-15 69.0018 3.55056e-31C 69.0006 5.271 69 10.4292 69 15.0952C 69 10.4287 68.9994 5.27148 68.9982 3.55056e-31C 52.8314 1.97986e-15 44.4526 8.23096 35.9302 16.6025C 31.4772 20.9771 26.985 25.3901 21.3221 28.6875C 13.0974 33.2729 6.88965 33.9995 3.15027 34.4375Z'/%3E%3C/svg%3E"); color: #fff } .tongue-primary:hover { color: #fff } .tongue-secondary { background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='138' height='35' viewBox='0 0 138 35'%3E%3Cpath fill='%23EFF2F7' d='M 3.15027 34.4375C 1.74207 34.6025 0.68396 34.7266 0 35L 68.9982 35C 68.9982 35 68.9998 28.6387 69 19.5132C 69 20.7261 69.0001 21.8892 69.0001 22.9956L 69.0018 35L 138 35C 137.316 34.7266 136.258 34.6025 134.85 34.4375C 131.11 33.9995 124.903 33.2729 116.678 28.6875C 111.015 25.3901 106.523 20.9771 102.07 16.6025C 93.5474 8.23096 85.1685 -1.97984e-15 69.0018 3.55056e-31C 69.0006 5.271 69 10.4292 69 15.0952C 69 10.4287 68.9994 5.27148 68.9982 3.55056e-31C 52.8314 1.97986e-15 44.4526 8.23096 35.9302 16.6025C 31.4772 20.9771 26.985 25.3901 21.3221 28.6875C 13.0974 33.2729 6.88965 33.9995 3.15027 34.4375Z'/%3E%3C/svg%3E"); color: #273444 } .tongue-secondary:hover { color: #273444 } .tongue-success { background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='138' height='35' viewBox='0 0 138 35'%3E%3Cpath fill='%2336B37E' d='M 3.15027 34.4375C 1.74207 34.6025 0.68396 34.7266 0 35L 68.9982 35C 68.9982 35 68.9998 28.6387 69 19.5132C 69 20.7261 69.0001 21.8892 69.0001 22.9956L 69.0018 35L 138 35C 137.316 34.7266 136.258 34.6025 134.85 34.4375C 131.11 33.9995 124.903 33.2729 116.678 28.6875C 111.015 25.3901 106.523 20.9771 102.07 16.6025C 93.5474 8.23096 85.1685 -1.97984e-15 69.0018 3.55056e-31C 69.0006 5.271 69 10.4292 69 15.0952C 69 10.4287 68.9994 5.27148 68.9982 3.55056e-31C 52.8314 1.97986e-15 44.4526 8.23096 35.9302 16.6025C 31.4772 20.9771 26.985 25.3901 21.3221 28.6875C 13.0974 33.2729 6.88965 33.9995 3.15027 34.4375Z'/%3E%3C/svg%3E"); color: #fff } .tongue-success:hover { color: #fff } .tongue-info { background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='138' height='35' viewBox='0 0 138 35'%3E%3Cpath fill='%2300B8D9' d='M 3.15027 34.4375C 1.74207 34.6025 0.68396 34.7266 0 35L 68.9982 35C 68.9982 35 68.9998 28.6387 69 19.5132C 69 20.7261 69.0001 21.8892 69.0001 22.9956L 69.0018 35L 138 35C 137.316 34.7266 136.258 34.6025 134.85 34.4375C 131.11 33.9995 124.903 33.2729 116.678 28.6875C 111.015 25.3901 106.523 20.9771 102.07 16.6025C 93.5474 8.23096 85.1685 -1.97984e-15 69.0018 3.55056e-31C 69.0006 5.271 69 10.4292 69 15.0952C 69 10.4287 68.9994 5.27148 68.9982 3.55056e-31C 52.8314 1.97986e-15 44.4526 8.23096 35.9302 16.6025C 31.4772 20.9771 26.985 25.3901 21.3221 28.6875C 13.0974 33.2729 6.88965 33.9995 3.15027 34.4375Z'/%3E%3C/svg%3E"); color: #fff } .tongue-info:hover { color: #fff } .tongue-warning { background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='138' height='35' viewBox='0 0 138 35'%3E%3Cpath fill='%23FFAB00' d='M 3.15027 34.4375C 1.74207 34.6025 0.68396 34.7266 0 35L 68.9982 35C 68.9982 35 68.9998 28.6387 69 19.5132C 69 20.7261 69.0001 21.8892 69.0001 22.9956L 69.0018 35L 138 35C 137.316 34.7266 136.258 34.6025 134.85 34.4375C 131.11 33.9995 124.903 33.2729 116.678 28.6875C 111.015 25.3901 106.523 20.9771 102.07 16.6025C 93.5474 8.23096 85.1685 -1.97984e-15 69.0018 3.55056e-31C 69.0006 5.271 69 10.4292 69 15.0952C 69 10.4287 68.9994 5.27148 68.9982 3.55056e-31C 52.8314 1.97986e-15 44.4526 8.23096 35.9302 16.6025C 31.4772 20.9771 26.985 25.3901 21.3221 28.6875C 13.0974 33.2729 6.88965 33.9995 3.15027 34.4375Z'/%3E%3C/svg%3E"); color: #fff } .tongue-warning:hover { color: #fff } .tongue-danger { background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='138' height='35' viewBox='0 0 138 35'%3E%3Cpath fill='%23FF5630' d='M 3.15027 34.4375C 1.74207 34.6025 0.68396 34.7266 0 35L 68.9982 35C 68.9982 35 68.9998 28.6387 69 19.5132C 69 20.7261 69.0001 21.8892 69.0001 22.9956L 69.0018 35L 138 35C 137.316 34.7266 136.258 34.6025 134.85 34.4375C 131.11 33.9995 124.903 33.2729 116.678 28.6875C 111.015 25.3901 106.523 20.9771 102.07 16.6025C 93.5474 8.23096 85.1685 -1.97984e-15 69.0018 3.55056e-31C 69.0006 5.271 69 10.4292 69 15.0952C 69 10.4287 68.9994 5.27148 68.9982 3.55056e-31C 52.8314 1.97986e-15 44.4526 8.23096 35.9302 16.6025C 31.4772 20.9771 26.985 25.3901 21.3221 28.6875C 13.0974 33.2729 6.88965 33.9995 3.15027 34.4375Z'/%3E%3C/svg%3E"); color: #fff } .tongue-danger:hover { color: #fff } .tongue-light { background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='138' height='35' viewBox='0 0 138 35'%3E%3Cpath fill='%23EFF2F7' d='M 3.15027 34.4375C 1.74207 34.6025 0.68396 34.7266 0 35L 68.9982 35C 68.9982 35 68.9998 28.6387 69 19.5132C 69 20.7261 69.0001 21.8892 69.0001 22.9956L 69.0018 35L 138 35C 137.316 34.7266 136.258 34.6025 134.85 34.4375C 131.11 33.9995 124.903 33.2729 116.678 28.6875C 111.015 25.3901 106.523 20.9771 102.07 16.6025C 93.5474 8.23096 85.1685 -1.97984e-15 69.0018 3.55056e-31C 69.0006 5.271 69 10.4292 69 15.0952C 69 10.4287 68.9994 5.27148 68.9982 3.55056e-31C 52.8314 1.97986e-15 44.4526 8.23096 35.9302 16.6025C 31.4772 20.9771 26.985 25.3901 21.3221 28.6875C 13.0974 33.2729 6.88965 33.9995 3.15027 34.4375Z'/%3E%3C/svg%3E"); color: #273444 } .tongue-light:hover { color: #273444 } .tongue-dark { background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='138' height='35' viewBox='0 0 138 35'%3E%3Cpath fill='%23273444' d='M 3.15027 34.4375C 1.74207 34.6025 0.68396 34.7266 0 35L 68.9982 35C 68.9982 35 68.9998 28.6387 69 19.5132C 69 20.7261 69.0001 21.8892 69.0001 22.9956L 69.0018 35L 138 35C 137.316 34.7266 136.258 34.6025 134.85 34.4375C 131.11 33.9995 124.903 33.2729 116.678 28.6875C 111.015 25.3901 106.523 20.9771 102.07 16.6025C 93.5474 8.23096 85.1685 -1.97984e-15 69.0018 3.55056e-31C 69.0006 5.271 69 10.4292 69 15.0952C 69 10.4287 68.9994 5.27148 68.9982 3.55056e-31C 52.8314 1.97986e-15 44.4526 8.23096 35.9302 16.6025C 31.4772 20.9771 26.985 25.3901 21.3221 28.6875C 13.0974 33.2729 6.88965 33.9995 3.15027 34.4375Z'/%3E%3C/svg%3E"); color: #fff } .tongue-dark:hover { color: #fff } .tongue-neutral { background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='138' height='35' viewBox='0 0 138 35'%3E%3Cpath fill='%23FFF' d='M 3.15027 34.4375C 1.74207 34.6025 0.68396 34.7266 0 35L 68.9982 35C 68.9982 35 68.9998 28.6387 69 19.5132C 69 20.7261 69.0001 21.8892 69.0001 22.9956L 69.0018 35L 138 35C 137.316 34.7266 136.258 34.6025 134.85 34.4375C 131.11 33.9995 124.903 33.2729 116.678 28.6875C 111.015 25.3901 106.523 20.9771 102.07 16.6025C 93.5474 8.23096 85.1685 -1.97984e-15 69.0018 3.55056e-31C 69.0006 5.271 69 10.4292 69 15.0952C 69 10.4287 68.9994 5.27148 68.9982 3.55056e-31C 52.8314 1.97986e-15 44.4526 8.23096 35.9302 16.6025C 31.4772 20.9771 26.985 25.3901 21.3221 28.6875C 13.0974 33.2729 6.88965 33.9995 3.15027 34.4375Z'/%3E%3C/svg%3E"); color: #273444 } .tongue-neutral:hover { color: #273444 } .tongue-white { background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='138' height='35' viewBox='0 0 138 35'%3E%3Cpath fill='%23FFF' d='M 3.15027 34.4375C 1.74207 34.6025 0.68396 34.7266 0 35L 68.9982 35C 68.9982 35 68.9998 28.6387 69 19.5132C 69 20.7261 69.0001 21.8892 69.0001 22.9956L 69.0018 35L 138 35C 137.316 34.7266 136.258 34.6025 134.85 34.4375C 131.11 33.9995 124.903 33.2729 116.678 28.6875C 111.015 25.3901 106.523 20.9771 102.07 16.6025C 93.5474 8.23096 85.1685 -1.97984e-15 69.0018 3.55056e-31C 69.0006 5.271 69 10.4292 69 15.0952C 69 10.4287 68.9994 5.27148 68.9982 3.55056e-31C 52.8314 1.97986e-15 44.4526 8.23096 35.9302 16.6025C 31.4772 20.9771 26.985 25.3901 21.3221 28.6875C 13.0974 33.2729 6.88965 33.9995 3.15027 34.4375Z'/%3E%3C/svg%3E"); color: #273444 } .tongue-white:hover { color: #273444 } .tongue-section-primary { background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='138' height='35' viewBox='0 0 138 35'%3E%3Cpath fill='%23FFF' d='M 3.15027 34.4375C 1.74207 34.6025 0.68396 34.7266 0 35L 68.9982 35C 68.9982 35 68.9998 28.6387 69 19.5132C 69 20.7261 69.0001 21.8892 69.0001 22.9956L 69.0018 35L 138 35C 137.316 34.7266 136.258 34.6025 134.85 34.4375C 131.11 33.9995 124.903 33.2729 116.678 28.6875C 111.015 25.3901 106.523 20.9771 102.07 16.6025C 93.5474 8.23096 85.1685 -1.97984e-15 69.0018 3.55056e-31C 69.0006 5.271 69 10.4292 69 15.0952C 69 10.4287 68.9994 5.27148 68.9982 3.55056e-31C 52.8314 1.97986e-15 44.4526 8.23096 35.9302 16.6025C 31.4772 20.9771 26.985 25.3901 21.3221 28.6875C 13.0974 33.2729 6.88965 33.9995 3.15027 34.4375Z'/%3E%3C/svg%3E"); color: #273444 } .tongue-section-primary:hover { color: #273444 } .tongue-section-secondary { background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='138' height='35' viewBox='0 0 138 35'%3E%3Cpath fill='%23FAFBFE' d='M 3.15027 34.4375C 1.74207 34.6025 0.68396 34.7266 0 35L 68.9982 35C 68.9982 35 68.9998 28.6387 69 19.5132C 69 20.7261 69.0001 21.8892 69.0001 22.9956L 69.0018 35L 138 35C 137.316 34.7266 136.258 34.6025 134.85 34.4375C 131.11 33.9995 124.903 33.2729 116.678 28.6875C 111.015 25.3901 106.523 20.9771 102.07 16.6025C 93.5474 8.23096 85.1685 -1.97984e-15 69.0018 3.55056e-31C 69.0006 5.271 69 10.4292 69 15.0952C 69 10.4287 68.9994 5.27148 68.9982 3.55056e-31C 52.8314 1.97986e-15 44.4526 8.23096 35.9302 16.6025C 31.4772 20.9771 26.985 25.3901 21.3221 28.6875C 13.0974 33.2729 6.88965 33.9995 3.15027 34.4375Z'/%3E%3C/svg%3E"); color: #273444 } .tongue-section-secondary:hover { color: #273444 } .tongue-section-light { background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='138' height='35' viewBox='0 0 138 35'%3E%3Cpath fill='%23E0E6ED' d='M 3.15027 34.4375C 1.74207 34.6025 0.68396 34.7266 0 35L 68.9982 35C 68.9982 35 68.9998 28.6387 69 19.5132C 69 20.7261 69.0001 21.8892 69.0001 22.9956L 69.0018 35L 138 35C 137.316 34.7266 136.258 34.6025 134.85 34.4375C 131.11 33.9995 124.903 33.2729 116.678 28.6875C 111.015 25.3901 106.523 20.9771 102.07 16.6025C 93.5474 8.23096 85.1685 -1.97984e-15 69.0018 3.55056e-31C 69.0006 5.271 69 10.4292 69 15.0952C 69 10.4287 68.9994 5.27148 68.9982 3.55056e-31C 52.8314 1.97986e-15 44.4526 8.23096 35.9302 16.6025C 31.4772 20.9771 26.985 25.3901 21.3221 28.6875C 13.0974 33.2729 6.88965 33.9995 3.15027 34.4375Z'/%3E%3C/svg%3E"); color: #273444 } .tongue-section-light:hover { color: #273444 } .tongue-section-dark { background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='138' height='35' viewBox='0 0 138 35'%3E%3Cpath fill='%231a232d' d='M 3.15027 34.4375C 1.74207 34.6025 0.68396 34.7266 0 35L 68.9982 35C 68.9982 35 68.9998 28.6387 69 19.5132C 69 20.7261 69.0001 21.8892 69.0001 22.9956L 69.0018 35L 138 35C 137.316 34.7266 136.258 34.6025 134.85 34.4375C 131.11 33.9995 124.903 33.2729 116.678 28.6875C 111.015 25.3901 106.523 20.9771 102.07 16.6025C 93.5474 8.23096 85.1685 -1.97984e-15 69.0018 3.55056e-31C 69.0006 5.271 69 10.4292 69 15.0952C 69 10.4287 68.9994 5.27148 68.9982 3.55056e-31C 52.8314 1.97986e-15 44.4526 8.23096 35.9302 16.6025C 31.4772 20.9771 26.985 25.3901 21.3221 28.6875C 13.0974 33.2729 6.88965 33.9995 3.15027 34.4375Z'/%3E%3C/svg%3E"); color: #fff } .tongue-section-dark:hover { color: #fff } .tongue-top { top: -1px } .tongue-bottom { top: auto; bottom: -1px; -webkit-transform: translateX(-50%); -ms-transform: translateX(-50%); transform: translateX(-50%) } @keyframes floating-sm { 0% { -webkit-transform: translateY(0); transform: translateY(0) } 50% { -webkit-transform: translateY(5px); transform: translateY(5px) } to { -webkit-transform: translateY(0); transform: translateY(0) } } .h1, .h2, .h3, h1, h2, h3 { font-weight: 500 } .h4, .h5, .h6, h4, h5, h6 { font-weight: 600 } .h1 a, .h2 a, .h3 a, .h4 a, .h5 a, .h6 a, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { color: #3c4858 } .h1 a:hover, .h2 a:hover, .h3 a:hover, .h4 a:hover, .h5 a:hover, .h6 a:hover, h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover { color: #6e00ff } a { -webkit-transition: all .2s ease; -o-transition: all .2s ease; transition: all .2s ease } @media (prefers-reduced-motion:reduce) { a { -webkit-transition: none; -o-transition: none; transition: none } } .fluid-paragraph { width: 680px; margin: auto; padding: 0 1.5rem; position: relative } .fluid-paragraph-sm { width: 580px } @media (max-width:767.98px) { .fluid-paragraph { width: 100% } } .link { -webkit-transition: all .2s ease; -o-transition: all .2s ease; transition: all .2s ease } @media (prefers-reduced-motion:reduce) { .link { -webkit-transition: none; -o-transition: none; transition: none } } [class*=link-underline-] { padding-bottom: 8px; position: relative } [class*=link-underline-]:after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 3px; border-radius: 50rem; -webkit-transition: all .2s cubic-bezier(.77, 0, .2, 2.25); -o-transition: all .2s cubic-bezier(.77, 0, .2, 2.25); transition: all .2s cubic-bezier(.77, 0, .2, 2.25) } @media (prefers-reduced-motion:reduce) { [class*=link-underline-]:after { -webkit-transition: none; -o-transition: none; transition: none } } [class*=link-underline-]:hover:after { width: calc(100% + 8px); left: -4px } .link-underline-primary { color: #6e00ff } .link-underline-primary:after { background-color: #6e00ff } .link-underline-primary:hover { color: #5800cc } .link-underline-secondary { color: #eff2f7 } .link-underline-secondary:after { background-color: #eff2f7 } .link-underline-secondary:hover { color: #cdd6e6 } .link-underline-success { color: #36b37e } .link-underline-success:after { background-color: #36b37e } .link-underline-success:hover { color: #2a8c62 } .link-underline-info { color: #00b8d9 } .link-underline-info:after { background-color: #00b8d9 } .link-underline-info:hover { color: #008da6 } .link-underline-warning { color: #ffab00 } .link-underline-warning:after { background-color: #ffab00 } .link-underline-warning:hover { color: #cc8900 } .link-underline-danger { color: #ff5630 } .link-underline-danger:after { background-color: #ff5630 } .link-underline-danger:hover { color: #fc2e00 } .link-underline-light { color: #eff2f7 } .link-underline-light:after { background-color: #eff2f7 } .link-underline-light:hover { color: #cdd6e6 } .link-underline-dark { color: #273444 } .link-underline-dark:after { background-color: #273444 } .link-underline-dark:hover { color: #141b24 } .link-underline-neutral { color: #fff } .link-underline-neutral:after { background-color: #fff } .link-underline-neutral:hover { color: #e6e6e6 } .link-underline-white { color: #fff } .link-underline-white:after { background-color: #fff } .link-underline-white:hover { color: #e6e6e6 } .blockquote .quote { position: absolute } .blockquote .quote:before { font-family: Arial; content: "\201C"; color: #6e00ff; font-size: 4em; line-height: 1 } .blockquote .quote+.quote-text { padding-left: 2.25rem } .blockquote footer { background: transparent } .blockquote-border-left, .blockquote-card { border-left: .5rem solid #6e00ff } .blockquote-card { padding: 1.2em 30px 1.2em 75px; position: relative } .blockquote-card:before { font-family: Arial; content: "\201C"; color: #6e00ff; font-size: 4em; position: absolute; left: .875rem; top: -.875rem } .blockquote-card:after { content: "" } .list-icons li i, .list-icons li svg { margin-right: 1rem; font-size: 8px; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); top: 2px; position: relative } article h4:not(:first-child), article h5:not(:first-child) { margin-top: 3rem } article h4, article h5 { margin-bottom: 1.5rem } article figure { margin: 3rem 0 } article h5+figure { margin-top: 0 } .customizer { position: fixed; bottom: 2rem; left: 2rem; width: 300px; height: 60px; z-index: 100 } .customizer .btn-skins { background: #6e00ff; background: -o-linear-gradient(315deg, #6e00ff 0, #00b8d9 18%, #00b8d9 18%, #36b37e 37%, #ff5630 50%, #ff5630 65%, #ffab00 83%, #ffab00 100%); background: linear-gradient(135deg, #6e00ff, #00b8d9 18%, #00b8d9 0, #36b37e 37%, #ff5630 50%, #ff5630 65%, #ffab00 83%, #ffab00) } .flatpickr-calendar { border: 0; width: auto; margin-top: -2px; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; background: #fff; -webkit-box-shadow: none; box-shadow: none; border-radius: .25rem } .flatpickr-calendar:after, .flatpickr-calendar:before { display: none } .flatpickr-months { background-color: #6e00ff; border-top-left-radius: .25rem; border-top-right-radius: .25rem } .flatpickr-months .flatpickr-month { height: 60px } .flatpickr-months .flatpickr-next-month, .flatpickr-months .flatpickr-prev-month { width: 35px; height: 35px; padding: 0; line-height: 100%; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; color: #fff; top: 13px; -webkit-transition: background-color .4s linear; -o-transition: background-color .4s linear; transition: background-color .4s linear } @media (prefers-reduced-motion:reduce) { .flatpickr-months .flatpickr-next-month, .flatpickr-months .flatpickr-prev-month { -webkit-transition: none; -o-transition: none; transition: none } } .flatpickr-months .flatpickr-next-month svg, .flatpickr-months .flatpickr-prev-month svg { fill: hsla(0, 0%, 100%, .7) } .flatpickr-months .flatpickr-next-month:hover, .flatpickr-months .flatpickr-prev-month:hover { color: #fff } .flatpickr-months .flatpickr-next-month:hover svg, .flatpickr-months .flatpickr-prev-month:hover svg { fill: #fff } .flatpickr-months .flatpickr-prev-month { margin-left: 15px } .flatpickr-months .flatpickr-next-month { margin-right: 15px } .flatpickr-current-month { font-size: 1.125rem; color: #fff; padding-top: 18px } .flatpickr-current-month .numInputWrapper:hover, .flatpickr-current-month span.cur-month:hover { background-color: transparent } .flatpickr-current-month .numInputWrapper span { border: 0; right: -5px; padding: 0 } .flatpickr-current-month .numInputWrapper span:after { left: 3px } .flatpickr-current-month .numInputWrapper span.arrowUp:after { border-bottom-color: hsla(0, 0%, 100%, .7) } .flatpickr-current-month .numInputWrapper span.arrowUp:hover:after { border-bottom-color: #fff } .flatpickr-current-month .numInputWrapper span.arrowDown:after { border-top-color: hsla(0, 0%, 100%, .7) } .flatpickr-current-month .numInputWrapper span.arrowDown:hover:after { border-top-color: #fff } span.flatpickr-weekday { font-weight: 600; color: #c0ccda } .flatpickr-day { font-size: .875rem; border: 0; color: #8492a6 } .flatpickr-day.today { color: #6e00ff !important } .flatpickr-day.today:hover, .flatpickr-day:hover { background-color: transparent; color: #6e00ff } .flatpickr-day.selected { background-color: rgba(110, 0, 255, .8); color: #fff !important } .flatpickr-day.selected:hover { background-color: #6e00ff; color: #fff } .numInputWrapper span:hover { background-color: transparent } .flatpickr-time { border-top: 1px solid #eff2f7 } .flatpickr-innerContainer { padding: 15px } .dropzone { position: relative; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column } .dz-message { padding: 5rem 1rem; background-color: #fff; border: 1px dashed #e0e6ed; border-radius: .25rem; text-align: center; color: #8492a6; -webkit-transition: all .2s ease; -o-transition: all .2s ease; transition: all .2s ease; -webkit-box-ordinal-group: 0; -ms-flex-order: -1; order: -1; cursor: pointer; z-index: 999 } .dz-message:hover { border-color: #8492a6; color: #8492a6 } .dz-drag-hover .dz-message { border-color: #6e00ff; color: #6e00ff } .dropzone-multiple .dz-message { padding-top: 2rem; padding-bottom: 2rem } .dropzone-single.dz-max-files-reached .dz-message { background-color: rgba(31, 45, 61, .9); color: #fff; opacity: 0 } .dropzone-single.dz-max-files-reached .dz-message:hover { opacity: 1 } .dz-preview-cover, .dz-preview-single { position: absolute; top: 0; right: 0; bottom: 0; left: 0; border-radius: .25rem } .dz-preview-img { -o-object-fit: cover; object-fit: cover; width: 100%; height: 100%; border-radius: .25rem } .dz-preview-multiple .list-group-item:last-child { padding-bottom: 0; border-bottom: 0 } [data-dz-size] strong { font-weight: 400 } .countdown-item { display: inline-block } .countdown-label { font-size: 1.2rem; padding: 0 10px } .countdown-sm .countdown-digit, .countdown-sm .countdown-label { font-size: 1.4rem } .countdown-sm .countdown-label { font-size: .875rem; padding: 0 10px } [data-countdown-label=hide] .countdown-label:not(.countdown-days), [data-countdown-label=show] .countdown-separator { display: none } .countdown-hero .countdown-item { margin-right: 10px } .countdown-hero .countdown-item:last-child { margin-right: 0 } .countdown-hero .countdown-digit { display: block; padding: 0 1.5rem; font-size: 3rem; font-weight: 400; text-align: center; color: #3c4858; cursor: default } .countdown-hero .countdown-label { display: block; margin-top: 5px; text-align: center; font-size: .875rem; text-transform: capitalize; font-weight: 600 } .countdown-hero .countdown-separator { display: none } @media (max-width:991.98px) { .countdown-hero .countdown-digit { font-size: 2rem } } .countdown-hero-dark .countdown-digit, .countdown-hero-dark .countdown-label { color: #fff } .countdown-blocks .countdown-item { margin-right: 10px } .countdown-blocks .countdown-item:last-child { margin-right: 0 } .countdown-blocks .countdown-digit { display: block; width: 60px; height: 60px; line-height: 60px; background: #6e00ff; color: #fff; font-size: 1.5rem; font-weight: 400; text-align: center; border-radius: .25rem; cursor: default } .countdown-blocks .countdown-label { display: block; margin-top: 5px; text-align: center; font-size: .875rem; text-transform: capitalize; font-weight: 600 } .countdown-blocks .countdown-separator, .milestone-count-extra { display: none } .counting-finished+.counter-extra { display: inline-block } .quick-view-container { background: rgba(10, 10, 10, .85) } .quick-view-content { height: calc(100% - 40px); margin: auto; max-height: 650px; max-width: 980px; width: calc(100% - 40px) } .quick-view-carousel, .quick-view-content { bottom: 0; left: 0; position: absolute; right: 0; top: 0 } .quick-view-carousel { background: #fff; border: 1px solid #eff2f7; border-radius: .375rem; width: 57%; z-index: 10; -webkit-box-shadow: 0 0 1.25rem rgba(31, 45, 61, .08); box-shadow: 0 0 1.25rem rgba(31, 45, 61, .08) } .quick-view-carousel .fancybox-stage { bottom: 30px } .quick-view-aside { background: #fff; border-top-right-radius: .375rem; border-bottom-right-radius: .375rem; bottom: 2rem; color: #8492a6; left: auto; padding: 3rem 0 2rem; position: absolute; right: 0; top: 2rem; width: 43% } .quick-view-aside>div { height: 100%; overflow: auto; padding: 0 2rem } .quick-view-close { background: #f0f0f0; border: 0; border-top-right-radius: .375rem; border-bottom-left-radius: .375rem; color: #222; cursor: pointer; font-family: Arial; font-size: 14px; height: 44px; margin: 0; padding: 0; position: absolute; right: 0; text-indent: -99999px; top: 2rem; -webkit-transition: all .2s; -o-transition: all .2s; transition: all .2s; width: 2.75rem } .quick-view-close:hover { background: #e4e4e4 } .quick-view-close:after, .quick-view-close:before { background-color: #222; content: ""; height: 18px; left: 22px; position: absolute; top: 12px; width: 1px } .quick-view-close:before { -webkit-transform: rotate(-45deg); -ms-transform: rotate(-45deg); transform: rotate(-45deg) } .quick-view-close:after { -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg) } .quick-view-bullets { bottom: 0; left: 0; list-style: none; margin: 0; padding: 0; position: absolute; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); text-align: center; width: 100%; z-index: 99999 } .quick-view-bullets li { display: inline-block; vertical-align: top } .quick-view-bullets li a { display: block; height: 30px; position: relative; width: 20px } .quick-view-bullets li a span { background: #d3dce6; border-radius: 99px; height: 10px; left: 50%; overflow: hidden; position: absolute; text-indent: -99999px; top: 50%; -webkit-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%); width: 10px } .quick-view-bullets li.active a span { background: #6e00ff } .highlight { background-color: #212d3a; padding: 1.25rem; margin-bottom: 2rem; border: 1px solid #eff2f7; border-radius: .25rem } .highlight pre { margin-bottom: 0; padding: 1.25rem } .hljs { display: block; overflow-x: auto; padding: .5em } .hljs, .hljs pre code { color: #dcdcdc } .hljs-keyword, .hljs-link, .hljs-literal, .hljs-name, .hljs-symbol { color: #569cd6 } .hljs-link { text-decoration: underline } .hljs-built_in, .hljs-type { color: #4ec9b0 } .hljs-class, .hljs-number { color: #b8d7a3 } .hljs-meta-string, .hljs-string { color: #d69d85 } .hljs-regexp, .hljs-template-tag { color: #9a5334 } .hljs-formula, .hljs-function, .hljs-params, .hljs-subst, .hljs-title { color: #dcdcdc } .hljs-comment, .hljs-quote { color: #57a64a; font-style: italic } .hljs-doctag { color: #608b4e } .hljs-meta, .hljs-meta-keyword, .hljs-tag { color: #9b9b9b } .hljs-template-variable, .hljs-variable { color: #bd63c5 } .hljs-attr, .hljs-attribute, .hljs-builtin-name { color: #9cdcfe } .hljs-section { color: gold } .hljs-emphasis { font-style: italic } .hljs-strong { font-weight: 700 } .hljs-bullet, .hljs-selector-attr, .hljs-selector-class, .hljs-selector-id, .hljs-selector-pseudo, .hljs-selector-tag { color: #d7ba7d } .hljs-addition { background-color: #144212 } .hljs-addition, .hljs-deletion { display: inline-block; width: 100% } .hljs-deletion { background-color: #600 } .masonry-filter { cursor: pointer } .noUi-target, .noUi-target * { -webkit-touch-callout: none; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); -webkit-user-select: none; -ms-touch-action: none; touch-action: none; -ms-user-select: none; -moz-user-select: none; user-select: none; -webkit-box-sizing: border-box; box-sizing: border-box } .noUi-target { position: relative; direction: ltr } .noUi-base, .noUi-connects { width: 100%; height: 100%; position: relative; z-index: 1 } .noUi-connects { overflow: hidden; z-index: 0 } .noUi-connect, .noUi-origin { will-change: transform; position: absolute; z-index: 1; top: 0; left: 0; height: 100%; width: 100%; -webkit-transform-origin: 0 0; -ms-transform-origin: 0 0; transform-origin: 0 0 } html:not([dir=rtl]) .noUi-horizontal .noUi-origin { left: auto; right: 0 } .noUi-vertical .noUi-origin { width: 0 } .noUi-horizontal .noUi-origin { height: 0 } .noUi-handle { position: absolute } .noUi-state-tap .noUi-connect, .noUi-state-tap .noUi-origin { -webkit-transition: transform .3s; -webkit-transition: -webkit-transform .3s; transition: -webkit-transform .3s; -o-transition: transform .3s; transition: transform .3s; transition: transform .3s, -webkit-transform .3s } .noUi-state-drag * { cursor: inherit !important } .noUi-horizontal .noUi-handle { width: 34px; height: 28px; left: -17px; top: -6px } .noUi-vertical .noUi-handle { width: 28px; height: 34px; left: -6px; top: -17px } html:not([dir=rtl]) .noUi-horizontal .noUi-handle { right: -17px; left: auto } .noUi-target { border-radius: 4px; -webkit-box-shadow: inset 0 1px 1px #f0f0f0, 0 3px 6px -5px #bbb; box-shadow: inset 0 1px 1px #f0f0f0, 0 3px 6px -5px #bbb } .noUi-connects { border-radius: 3px } .noUi-draggable { cursor: ew-resize } .noUi-vertical .noUi-draggable { cursor: ns-resize } .noUi-handle { border: 1px solid #d9d9d9; border-radius: 3px; background: #fff; cursor: default; -webkit-box-shadow: inset 0 0 1px #fff, inset 0 1px 7px #ebebeb, 0 3px 6px -3px #bbb; box-shadow: inset 0 0 1px #fff, inset 0 1px 7px #ebebeb, 0 3px 6px -3px #bbb } .noUi-active { -webkit-box-shadow: inset 0 0 1px #fff, inset 0 1px 7px #ddd, 0 3px 6px -3px #bbb; box-shadow: inset 0 0 1px #fff, inset 0 1px 7px #ddd, 0 3px 6px -3px #bbb } [disabled] .noUi-connect { background: #b8b8b8 } [disabled].noUi-handle, [disabled] .noUi-handle, [disabled].noUi-target { cursor: not-allowed } .noUi-pips, .noUi-pips * { -webkit-box-sizing: border-box; box-sizing: border-box } .noUi-pips { position: absolute; color: #999 } .noUi-value { position: absolute; white-space: nowrap; text-align: center } .noUi-value-sub { color: #ccc; font-size: 10px } .noUi-marker { position: absolute; background: #ccc } .noUi-marker-large, .noUi-marker-sub { background: #aaa } .noUi-pips-horizontal { padding: 10px 0; height: 80px; top: 100%; left: 0; width: 100% } .noUi-value-horizontal { -webkit-transform: translate(-50%, 50%); -ms-transform: translate(-50%, 50%); transform: translate(-50%, 50%) } .noUi-rtl .noUi-value-horizontal { -webkit-transform: translate(50%, 50%); -ms-transform: translate(50%, 50%); transform: translate(50%, 50%) } .noUi-marker-horizontal.noUi-marker { margin-left: -1px; width: 2px; height: 5px } .noUi-marker-horizontal.noUi-marker-sub { height: 10px } .noUi-marker-horizontal.noUi-marker-large { height: 15px } .noUi-pips-vertical { padding: 0 10px; height: 100%; top: 0; left: 100% } .noUi-value-vertical { -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); padding-left: 25px } .noUi-rtl .noUi-value-vertical { -webkit-transform: translateY(50%); -ms-transform: translateY(50%); transform: translateY(50%) } .noUi-marker-vertical.noUi-marker { width: 5px; height: 2px; margin-top: -1px } .noUi-marker-vertical.noUi-marker-sub { width: 10px } .noUi-marker-vertical.noUi-marker-large { width: 15px } .noUi-tooltip { display: block; position: absolute; border: 1px solid #d9d9d9; border-radius: 3px; background: #fff; color: #000; padding: 5px; text-align: center; white-space: nowrap } .noUi-horizontal .noUi-tooltip { -webkit-transform: translate(-50%); -ms-transform: translate(-50%); transform: translate(-50%); left: 50%; bottom: 120% } .noUi-vertical .noUi-tooltip { -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); top: 50%; right: 120% } .noUi-target { border-radius: 0; -webkit-box-shadow: none; box-shadow: none; border: 0; background: #e5e9f2; margin: 15px 0 } .noUi-horizontal { height: 0 } html:not([dir=rtl]) .noUi-horizontal .noUi-handle { right: -10px } .noUi-vertical { width: 0 } .noUi-connect { background: #6e00ff; -webkit-box-shadow: none; box-shadow: none } .noUi-horizontal .noUi-handle, .noUi-vertical .noUi-handle { top: -7px; width: 15px; height: 15px; border: 0; border-radius: 100%; -webkit-box-shadow: none; box-shadow: none; cursor: pointer; background-color: #6e00ff; transition: box-shadow .2s, -webkit-transform .2s; -webkit-transition: -webkit-box-shadow .2s, -webkit-transform .2s; transition: -webkit-box-shadow .2s, -webkit-transform .2s; -o-transition: box-shadow .2s, transform .2s; transition: box-shadow .2s, transform .2s; transition: box-shadow .2s, transform .2s, -webkit-box-shadow .2s, -webkit-transform .2s; transition: box-shadow .2s, transform .2s, -webkit-transform .2s } .noUi-horizontal .noUi-handle:after, .noUi-horizontal .noUi-handle:before, .noUi-vertical .noUi-handle:after, .noUi-vertical .noUi-handle:before { display: none } .noUi-horizontal .noUi-handle.noUi-active, .noUi-vertical .noUi-handle.noUi-active { -webkit-transform: scale(1.3); -ms-transform: scale(1.3); transform: scale(1.3) } .noUi-horizontal .noUi-active, .noUi-vertical .noUi-active { -webkit-box-shadow: 0 0 0 3px rgba(0, 0, 0, .1); box-shadow: 0 0 0 3px rgba(0, 0, 0, .1) } .input-slider--cyan .noUi-connect { background: #4bd6e5 } .input-slider--cyan.noUi-horizontal .noUi-handle, .input-slider--cyan.noUi-vertical .noUi-handle { background-color: #4bd6e5 } .input-slider--red .noUi-connect { background: #ff5630 } .input-slider--red.noUi-horizontal .noUi-handle, .input-slider--red.noUi-vertical .noUi-handle { background-color: #ff5630 } .input-slider--green .noUi-connect { background: #36b37e } .input-slider--green.noUi-horizontal .noUi-handle, .input-slider--green.noUi-vertical .noUi-handle { background-color: #36b37e } .input-slider--yellow .noUi-connect { background: #fc0 } .input-slider--yellow.noUi-horizontal .noUi-handle, .input-slider--yellow.noUi-vertical .noUi-handle { background-color: #fc0 } .input-slider--pink .noUi-connect { background: #f074ad } .input-slider--pink.noUi-horizontal .noUi-handle, .input-slider--pink.noUi-vertical .noUi-handle { background-color: #f074ad } [disabled].noUi-connect, [disabled] .noUi-connect { background: #b2b2b2 } [disabled] .noUi-handle, [disabled].noUi-origin { cursor: not-allowed } .range-slider-value { font-size: .75rem; font-weight: 500; background-color: rgba(39, 52, 68, .7); color: #fff; border-radius: 10px; padding: .4em .8em .3em .85em } .range-slider-wrapper .upper-info { font-weight: 400; margin-bottom: 5px } .input-slider-value-output { background: #333; color: #fff; padding: 4px 8px; position: relative; top: 12px; font-size: 11px; border-radius: 2px } .input-slider-value-output:after { bottom: 100%; left: 10px; content: " "; height: 0; width: 0; position: absolute; pointer-events: none; border: 4px solid rgba(136, 183, 213, 0); border-bottom-color: #333; margin-left: -4px } .input-slider-value-output.left:after { left: 10px; right: auto } .input-slider-value-output.right:after { right: 10px; left: auto } .ql-container { font-family: Nunito, sans-serif } .ql-toolbar { position: relative; padding: .75rem 1.25rem; background-color: #fff; border: 1px solid #e0e6ed; border-radius: .25rem .25rem 0 0; color: #8492a6 } .ql-toolbar+.ql-container { margin-top: -1px } .ql-toolbar+.ql-container .ql-editor { border-top-left-radius: 0; border-top-right-radius: 0 } .ql-editor { min-height: 6.8rem; display: block; width: 100%; padding: .75rem 1.25rem; font-size: 1rem; line-height: 1.5; color: #8492a6; background-color: #fff; background-clip: padding-box; border: 1px solid #e0e6ed; border-radius: .25rem; -webkit-box-shadow: inset 0 1px 1px rgba(31, 45, 61, .075); box-shadow: inset 0 1px 1px rgba(31, 45, 61, .075); -webkit-transition: all .2s ease; -o-transition: all .2s ease; transition: all .2s ease } @media (prefers-reduced-motion:reduce) { .ql-editor { -webkit-transition: none; -o-transition: none; transition: none } } .ql-editor::-ms-expand { background-color: transparent; border: 0 } .ql-editor:focus { color: #8492a6; background-color: #fff; border-color: rgba(110, 0, 255, .5); outline: 0; -webkit-box-shadow: inset 0 1px 1px rgba(31, 45, 61, .075), 0 0 20px rgba(110, 0, 255, .1); box-shadow: inset 0 1px 1px rgba(31, 45, 61, .075), 0 0 20px rgba(110, 0, 255, .1); border-color: #e0e6ed } .ql-hidden { position: absolute; -webkit-transform: scale(0); -ms-transform: scale(0); transform: scale(0) } .ql-editor.ql-blank:before { top: .75rem; left: 1.25rem; font-style: normal; color: #c0ccda } .ql-editor:focus:before { display: none } .ql-formats { padding-left: .5rem; padding-right: .5rem } .ql-formats:first-child { padding-left: 0 } .ql-formats:last-child { padding-right: 0 } .ql-toolbar button { padding: 0 .25rem; background: none; border: none; color: #8492a6; cursor: pointer; -webkit-transition: all .2s ease; -o-transition: all .2s ease; transition: all .2s ease } .ql-toolbar button:hover { color: #6e00ff } .ql-toolbar button:first-child { margin-left: -.25rem } .ql-toolbar .ql-active { color: #6e00ff } .ql-toolbar button svg { height: 1.25rem; width: 1.25rem } .ql-toolbar .ql-stroke { stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; fill: none } .ql-toolbar .ql-thin { stroke-width: 1 } .ql-toolbar .ql-fill { fill: currentColor } .ql-toolbar input.ql-image { position: absolute; -webkit-transform: scale(0); -ms-transform: scale(0); transform: scale(0) } .ql-tooltip { position: absolute; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: nowrap; flex-wrap: nowrap; width: 18.5rem; background-color: #fff; border: 1px solid rgba(31, 45, 61, .05); border-radius: .375rem; padding: .75rem 1.25rem; margin-top: .6rem; -webkit-box-shadow: 0 .5rem 2rem 0 rgba(31, 45, 61, .2); box-shadow: 0 .5rem 2rem 0 rgba(31, 45, 61, .2) } .ql-tooltip:after, .ql-tooltip:before { content: ""; position: absolute; left: 50%; bottom: 100%; -webkit-transform: translateX(-50%); -ms-transform: translateX(-50%); transform: translateX(-50%) } .ql-tooltip:before { border-bottom: .6rem solid rgba(31, 45, 61, .05); border-left: .6rem solid transparent; border-right: .6rem solid transparent } .ql-tooltip:after { border-bottom: .5rem solid #fff; border-left: .5rem solid transparent; border-right: .5rem solid transparent } .ql-container .ql-tooltip:hover { display: -webkit-box !important; display: -ms-flexbox !important; display: flex !important } .ql-tooltip .ql-preview { width: 100%; padding: .5rem 1.25rem; font-size: .875rem; line-height: 1.5; border-radius: .25rem; -webkit-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out; transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out; -o-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out; transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out; transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out } @media (prefers-reduced-motion:reduce) { .ql-tooltip .ql-preview { -webkit-transition: none; -o-transition: none; transition: none } } .ql-tooltip.ql-editing .ql-preview { display: none } .ql-tooltip input { display: none; width: 100%; padding-top: calc(.5rem + 1px); padding-bottom: calc(.5rem + 1px); background-color: transparent; font-size: .875rem; line-height: 1.5; border: none; color: #8492a6 } .ql-tooltip input:focus { outline: none } .ql-tooltip.ql-editing input { display: block } .ql-tooltip .ql-action, .ql-tooltip .ql-remove { margin-left: .25rem } .ql-tooltip .ql-action:before, .ql-tooltip .ql-remove:before { display: inline-block; font-weight: 600; text-align: center; white-space: nowrap; vertical-align: middle; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; border: 1px solid transparent; cursor: pointer; padding: .5rem 1.25rem; font-size: .875rem; line-height: 1.5; border-radius: .25rem; -webkit-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out; transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out; -o-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out; transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out; transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out } @media (prefers-reduced-motion:reduce) { .ql-tooltip .ql-action:before, .ql-tooltip .ql-remove:before { -webkit-transition: none; -o-transition: none; transition: none } } .ql-tooltip .ql-action:before:focus, .ql-tooltip .ql-action:before:hover, .ql-tooltip .ql-remove:before:focus, .ql-tooltip .ql-remove:before:hover { text-decoration: none } .ql-tooltip .ql-action:before.focus, .ql-tooltip .ql-action:before:focus, .ql-tooltip .ql-remove:before.focus, .ql-tooltip .ql-remove:before:focus { outline: 0; -webkit-box-shadow: 0 0 0 rgba(99, 0, 230, .25); box-shadow: 0 0 0 rgba(99, 0, 230, .25) } .ql-tooltip .ql-action:before, .ql-tooltip.ql-editing .ql-action:before { color: #fff; background-color: #6e00ff; border-color: #6e00ff; -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15) } .ql-tooltip .ql-action:before:hover, .ql-tooltip.ql-editing .ql-action:before:hover { color: #fff; background-color: #5e00d9; border-color: #5800cc } .ql-tooltip .ql-action:before.focus, .ql-tooltip .ql-action:before:focus, .ql-tooltip.ql-editing .ql-action:before.focus, .ql-tooltip.ql-editing .ql-action:before:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(110, 0, 255, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(110, 0, 255, .35) } .ql-tooltip .ql-action:before.disabled, .ql-tooltip .ql-action:before:disabled, .ql-tooltip.ql-editing .ql-action:before.disabled, .ql-tooltip.ql-editing .ql-action:before:disabled { color: #fff; background-color: #6e00ff; border-color: #6e00ff } .ql-tooltip .ql-action:before:not(:disabled):not(.disabled).active, .ql-tooltip .ql-action:before:not(:disabled):not(.disabled):active, .ql-tooltip.ql-editing .ql-action:before:not(:disabled):not(.disabled).active, .ql-tooltip.ql-editing .ql-action:before:not(:disabled):not(.disabled):active, .show>.ql-tooltip .ql-action:before.dropdown-toggle, .show>.ql-tooltip.ql-editing .ql-action:before.dropdown-toggle { color: #fff; background-color: #5800cc; border-color: #5300bf } .ql-tooltip .ql-action:before:not(:disabled):not(.disabled).active:focus, .ql-tooltip .ql-action:before:not(:disabled):not(.disabled):active:focus, .ql-tooltip.ql-editing .ql-action:before:not(:disabled):not(.disabled).active:focus, .ql-tooltip.ql-editing .ql-action:before:not(:disabled):not(.disabled):active:focus, .show>.ql-tooltip .ql-action:before.dropdown-toggle:focus, .show>.ql-tooltip.ql-editing .ql-action:before.dropdown-toggle:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(110, 0, 255, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 rgba(110, 0, 255, .35) } .ql-tooltip .ql-action:before { content: "Edit" } .ql-tooltip.ql-editing .ql-action:before { content: "Save" } .ql-tooltip .ql-remove:before { color: #273444; background-color: #fff; -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15); content: "Remove"; border-color: #e5e9f2 } .ql-tooltip .ql-remove:before:hover { color: #273444; background-color: #ececec; border-color: #e6e6e6 } .ql-tooltip .ql-remove:before.focus, .ql-tooltip .ql-remove:before:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 hsla(0, 0%, 100%, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 hsla(0, 0%, 100%, .35) } .ql-tooltip .ql-remove:before.disabled, .ql-tooltip .ql-remove:before:disabled { color: #273444; background-color: #fff; border-color: #fff } .ql-tooltip .ql-remove:before:not(:disabled):not(.disabled).active, .ql-tooltip .ql-remove:before:not(:disabled):not(.disabled):active, .show>.ql-tooltip .ql-remove:before.dropdown-toggle { color: #273444; background-color: #e6e6e6; border-color: #dfdfdf } .ql-tooltip .ql-remove:before:not(:disabled):not(.disabled).active:focus, .ql-tooltip .ql-remove:before:not(:disabled):not(.disabled):active:focus, .show>.ql-tooltip .ql-remove:before.dropdown-toggle:focus { -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 hsla(0, 0%, 100%, .35); box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .15), 0 0 0 hsla(0, 0%, 100%, .35) } .ql-tooltip.ql-editing .ql-remove:before { display: none } .ql-editor blockquote { margin-bottom: 1rem; font-size: 1.25rem } .ql-editor img { max-width: 100%; height: auto } .scroll-wrapper { overflow: hidden !important; padding: 0 !important; position: relative } .scroll-wrapper>.scroll-content { border: none !important; -webkit-box-sizing: content-box !important; box-sizing: content-box !important; height: auto; left: 0; margin: 0; max-height: none; max-width: none !important; overflow: scroll !important; padding: 0; position: relative !important; top: 0; width: auto !important } .scroll-wrapper>.scroll-content::-webkit-scrollbar { height: 0; width: 0 } .scroll-wrapper.scroll--rtl { direction: rtl } .scroll-element { display: none } .scroll-element, .scroll-element div { -webkit-box-sizing: content-box; box-sizing: content-box } .scroll-element .scroll-arrow, .scroll-element .scroll-bar { cursor: default } .scroll-element.scroll-x.scroll-scrollx_visible, .scroll-element.scroll-y.scroll-scrolly_visible { display: block } .scroll-textarea { border: 1px solid #ccc; border-top-color: #999 } .scroll-textarea>.scroll-content { overflow: hidden !important } .scroll-textarea>.scroll-content>textarea { border: none !important; -webkit-box-sizing: border-box; box-sizing: border-box; height: 100% !important; margin: 0; max-height: none !important; max-width: none !important; overflow: scroll !important; outline: none; padding: 2px; position: relative !important; top: 0; width: 100% !important } .scroll-textarea>.scroll-content>textarea::-webkit-scrollbar { height: 0; width: 0 } .scrollbar-inner>.scroll-element, .scrollbar-inner>.scroll-element div { border: none; margin: 0; padding: 0; position: absolute; z-index: 10 } .scrollbar-inner>.scroll-element div { display: block; height: 100%; left: 0; top: 0; width: 100% } .scrollbar-inner>.scroll-element.scroll-x { bottom: 2px; height: 8px; left: 0; width: 100% } .scrollbar-inner>.scroll-element.scroll-y { height: 100%; right: 2px; top: 0; width: 8px } .scrollbar-inner>.scroll-element .scroll-element_outer { overflow: hidden } .scrollbar-inner>.scroll-element .scroll-bar, .scrollbar-inner>.scroll-element .scroll-element_outer, .scrollbar-inner>.scroll-element .scroll-element_track { border-radius: 8px } .scrollbar-inner>.scroll-element .scroll-bar, .scrollbar-inner>.scroll-element .scroll-element_track { -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)"; filter: alpha(opacity=40); opacity: .4 } .scrollbar-inner>.scroll-element .scroll-element_track { background-color: #e0e0e0 } .scrollbar-inner>.scroll-element .scroll-bar { background-color: #c2c2c2 } .scrollbar-inner>.scroll-element.scroll-draggable .scroll-bar, .scrollbar-inner>.scroll-element:hover .scroll-bar { background-color: #919191 } .scrollbar-inner>.scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track { left: -12px } .scrollbar-inner>.scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track { top: -12px } .scrollbar-inner>.scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size { left: -12px } .scrollbar-inner>.scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size { top: -12px } .scrollbar-outer>.scroll-element, .scrollbar-outer>.scroll-element div { border: none; margin: 0; padding: 0; position: absolute; z-index: 10 } .scrollbar-outer>.scroll-element { background-color: #fff } .scrollbar-outer>.scroll-element div { display: block; height: 100%; left: 0; top: 0; width: 100% } .scrollbar-outer>.scroll-element.scroll-x { bottom: 0; height: 12px; left: 0; width: 100% } .scrollbar-outer>.scroll-element.scroll-y { height: 100%; right: 0; top: 0; width: 12px } .scrollbar-outer>.scroll-element.scroll-x .scroll-element_outer { height: 8px; top: 2px } .scrollbar-outer>.scroll-element.scroll-y .scroll-element_outer { left: 2px; width: 8px } .scrollbar-outer>.scroll-element .scroll-element_outer { overflow: hidden } .scrollbar-outer>.scroll-element .scroll-element_track { background-color: #eee } .scrollbar-outer>.scroll-element .scroll-bar, .scrollbar-outer>.scroll-element .scroll-element_outer, .scrollbar-outer>.scroll-element .scroll-element_track { border-radius: 8px } .scrollbar-outer>.scroll-element .scroll-bar { background-color: #d9d9d9 } .scrollbar-outer>.scroll-element .scroll-bar:hover { background-color: #c2c2c2 } .scrollbar-outer>.scroll-element.scroll-draggable .scroll-bar { background-color: #919191 } .scrollbar-outer>.scroll-content.scroll-scrolly_visible { left: -12px; margin-left: 12px } .scrollbar-outer>.scroll-content.scroll-scrollx_visible { top: -12px; margin-top: 12px } .scrollbar-outer>.scroll-element.scroll-x .scroll-bar { min-width: 10px } .scrollbar-outer>.scroll-element.scroll-y .scroll-bar { min-height: 10px } .scrollbar-outer>.scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track { left: -14px } .scrollbar-outer>.scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track { top: -14px } .scrollbar-outer>.scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size { left: -14px } .scrollbar-outer>.scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size { top: -14px } .scrollbar-macosx>.scroll-element, .scrollbar-macosx>.scroll-element div { background: none; border: none; margin: 0; padding: 0; position: absolute; z-index: 10 } .scrollbar-macosx>.scroll-element div { display: block; height: 100%; left: 0; top: 0; width: 100% } .scrollbar-macosx>.scroll-element .scroll-element_track { display: none } .scrollbar-macosx>.scroll-element .scroll-bar { background-color: #6c6e71; display: block; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); opacity: 0; border-radius: 7px; -webkit-transition: opacity .2s linear; -o-transition: opacity .2s linear; transition: opacity .2s linear } .scrollbar-macosx:hover>.scroll-element .scroll-bar, .scrollbar-macosx>.scroll-element.scroll-draggable .scroll-bar { -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)"; filter: alpha(opacity=70); opacity: .7 } .scrollbar-macosx>.scroll-element.scroll-x { bottom: 0; height: 0; left: 0; min-width: 100%; overflow: visible; width: 100% } .scrollbar-macosx>.scroll-element.scroll-y { height: 100%; min-height: 100%; right: 0; top: 0; width: 0 } .scrollbar-macosx>.scroll-element.scroll-x .scroll-bar { height: 7px; min-width: 10px; top: -9px } .scrollbar-macosx>.scroll-element.scroll-y .scroll-bar { left: -9px; min-height: 10px; width: 7px } .scrollbar-macosx>.scroll-element.scroll-x .scroll-element_outer { left: 2px } .scrollbar-macosx>.scroll-element.scroll-x .scroll-element_size { left: -4px } .scrollbar-macosx>.scroll-element.scroll-y .scroll-element_outer { top: 2px } .scrollbar-macosx>.scroll-element.scroll-y .scroll-element_size { top: -4px } .scrollbar-macosx>.scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size { left: -11px } .scrollbar-macosx>.scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size { top: -11px } .scrollbar-light>.scroll-element, .scrollbar-light>.scroll-element div { border: none; margin: 0; overflow: hidden; padding: 0; position: absolute; z-index: 10 } .scrollbar-light>.scroll-element { background-color: #fff } .scrollbar-light>.scroll-element div { display: block; height: 100%; left: 0; top: 0; width: 100% } .scrollbar-light>.scroll-element .scroll-element_outer { border-radius: 10px } .scrollbar-light>.scroll-element .scroll-element_size { background: #dbdbdb; background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxIDEiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPjxsaW5lYXJHcmFkaWVudCBpZD0iYSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIHgxPSIwJSIgeTE9IjAlIiB4Mj0iMTAwJSIgeTI9IjAlIj48c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjZGJkYmRiIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjZThlOGU4Ii8+PC9saW5lYXJHcmFkaWVudD48cGF0aCBmaWxsPSJ1cmwoI2EpIiBkPSJNMCAwaDF2MUgweiIvPjwvc3ZnPg=="); background: -o-linear-gradient(left, #dbdbdb 0, #e8e8e8 100%); background: -webkit-gradient(linear, left top, right top, from(#dbdbdb), to(#e8e8e8)); background: linear-gradient(90deg, #dbdbdb 0, #e8e8e8); border-radius: 10px } .scrollbar-light>.scroll-element.scroll-x { bottom: 0; height: 17px; left: 0; min-width: 100%; width: 100% } .scrollbar-light>.scroll-element.scroll-y { height: 100%; min-height: 100%; right: 0; top: 0; width: 17px } .scrollbar-light>.scroll-element .scroll-bar { background: #fefefe; background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxIDEiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPjxsaW5lYXJHcmFkaWVudCBpZD0iYSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIHgxPSIwJSIgeTE9IjAlIiB4Mj0iMTAwJSIgeTI9IjAlIj48c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjZmVmZWZlIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjZjVmNWY1Ii8+PC9saW5lYXJHcmFkaWVudD48cGF0aCBmaWxsPSJ1cmwoI2EpIiBkPSJNMCAwaDF2MUgweiIvPjwvc3ZnPg=="); background: -o-linear-gradient(left, #fefefe 0, #f5f5f5 100%); background: -webkit-gradient(linear, left top, right top, from(#fefefe), to(#f5f5f5)); background: linear-gradient(90deg, #fefefe 0, #f5f5f5); border: 1px solid #dbdbdb; border-radius: 10px } .scrollbar-light>.scroll-content.scroll-scrolly_visible { left: -17px; margin-left: 17px } .scrollbar-light>.scroll-content.scroll-scrollx_visible { top: -17px; margin-top: 17px } .scrollbar-light>.scroll-element.scroll-x .scroll-bar { height: 10px; min-width: 10px; top: 0 } .scrollbar-light>.scroll-element.scroll-y .scroll-bar { left: 0; min-height: 10px; width: 10px } .scrollbar-light>.scroll-element.scroll-x .scroll-element_outer { height: 12px; left: 2px; top: 2px } .scrollbar-light>.scroll-element.scroll-x .scroll-element_size { left: -4px } .scrollbar-light>.scroll-element.scroll-y .scroll-element_outer { left: 2px; top: 2px; width: 12px } .scrollbar-light>.scroll-element.scroll-y .scroll-element_size { top: -4px } .scrollbar-light>.scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size { left: -19px } .scrollbar-light>.scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size { top: -19px } .scrollbar-light>.scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track { left: -19px } .scrollbar-light>.scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track { top: -19px } .scrollbar-rail>.scroll-element, .scrollbar-rail>.scroll-element div { border: none; margin: 0; overflow: hidden; padding: 0; position: absolute; z-index: 10 } .scrollbar-rail>.scroll-element { background-color: #fff } .scrollbar-rail>.scroll-element div { display: block; height: 100%; left: 0; top: 0; width: 100% } .scrollbar-rail>.scroll-element .scroll-element_size { background-color: #999; background-color: rgba(0, 0, 0, .3) } .scrollbar-rail>.scroll-element .scroll-element_outer:hover .scroll-element_size { background-color: #666; background-color: rgba(0, 0, 0, .5) } .scrollbar-rail>.scroll-element.scroll-x { bottom: 0; height: 12px; left: 0; min-width: 100%; padding: 3px 0 2px; width: 100% } .scrollbar-rail>.scroll-element.scroll-y { height: 100%; min-height: 100%; padding: 0 2px 0 3px; right: 0; top: 0; width: 12px } .scrollbar-rail>.scroll-element .scroll-bar { background-color: #d0b9a0; border-radius: 2px; -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, .5); box-shadow: 1px 1px 3px rgba(0, 0, 0, .5) } .scrollbar-rail>.scroll-element .scroll-element_outer:hover .scroll-bar { -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, .6); box-shadow: 1px 1px 3px rgba(0, 0, 0, .6) } .scrollbar-rail>.scroll-content.scroll-scrolly_visible { left: -17px; margin-left: 17px } .scrollbar-rail>.scroll-content.scroll-scrollx_visible { margin-top: 17px; top: -17px } .scrollbar-rail>.scroll-element.scroll-x .scroll-bar { height: 10px; min-width: 10px; top: 1px } .scrollbar-rail>.scroll-element.scroll-y .scroll-bar { left: 1px; min-height: 10px; width: 10px } .scrollbar-rail>.scroll-element.scroll-x .scroll-element_outer { height: 15px; left: 5px } .scrollbar-rail>.scroll-element.scroll-x .scroll-element_size { height: 2px; left: -10px; top: 5px } .scrollbar-rail>.scroll-element.scroll-y .scroll-element_outer { top: 5px; width: 15px } .scrollbar-rail>.scroll-element.scroll-y .scroll-element_size { left: 5px; top: -10px; width: 2px } .scrollbar-rail>.scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size { left: -25px } .scrollbar-rail>.scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size { top: -25px } .scrollbar-rail>.scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track { left: -25px } .scrollbar-rail>.scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track { top: -25px } .scrollbar-dynamic>.scroll-element, .scrollbar-dynamic>.scroll-element div { background: none; border: none; margin: 0; padding: 0; position: absolute; z-index: 10 } .scrollbar-dynamic>.scroll-element div { display: block; height: 100%; left: 0; top: 0; width: 100% } .scrollbar-dynamic>.scroll-element.scroll-x { bottom: 2px; height: 7px; left: 0; min-width: 100%; width: 100% } .scrollbar-dynamic>.scroll-element.scroll-y { height: 100%; min-height: 100%; right: 2px; top: 0; width: 7px } .scrollbar-dynamic>.scroll-element .scroll-element_outer { opacity: .3; border-radius: 12px } .scrollbar-dynamic>.scroll-element .scroll-element_size { background-color: #ccc; opacity: 0; border-radius: 12px; -webkit-transition: opacity .2s; -o-transition: opacity .2s; transition: opacity .2s } .scrollbar-dynamic>.scroll-element .scroll-bar { background-color: #6c6e71; border-radius: 7px } .scrollbar-dynamic>.scroll-element.scroll-x .scroll-bar { bottom: 0; height: 7px; min-width: 24px; top: auto } .scrollbar-dynamic>.scroll-element.scroll-y .scroll-bar { left: auto; min-height: 24px; right: 0; width: 7px } .scrollbar-dynamic>.scroll-element.scroll-x .scroll-element_outer { bottom: 0; top: auto; left: 2px; -webkit-transition: height .2s; -o-transition: height .2s; transition: height .2s } .scrollbar-dynamic>.scroll-element.scroll-y .scroll-element_outer { left: auto; right: 0; top: 2px; -webkit-transition: width .2s; -o-transition: width .2s; transition: width .2s } .scrollbar-dynamic>.scroll-element.scroll-x .scroll-element_size { left: -4px } .scrollbar-dynamic>.scroll-element.scroll-y .scroll-element_size { top: -4px } .scrollbar-dynamic>.scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size { left: -11px } .scrollbar-dynamic>.scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size { top: -11px } .scrollbar-dynamic>.scroll-element.scroll-draggable .scroll-element_outer, .scrollbar-dynamic>.scroll-element:hover .scroll-element_outer { overflow: hidden; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)"; filter: alpha(opacity=70); opacity: .7 } .scrollbar-dynamic>.scroll-element.scroll-draggable .scroll-element_outer .scroll-element_size, .scrollbar-dynamic>.scroll-element:hover .scroll-element_outer .scroll-element_size { opacity: 1 } .scrollbar-dynamic>.scroll-element.scroll-draggable .scroll-element_outer .scroll-bar, .scrollbar-dynamic>.scroll-element:hover .scroll-element_outer .scroll-bar { height: 100%; width: 100%; border-radius: 12px } .scrollbar-dynamic>.scroll-element.scroll-x.scroll-draggable .scroll-element_outer, .scrollbar-dynamic>.scroll-element.scroll-x:hover .scroll-element_outer { height: 20px; min-height: 7px } .scrollbar-dynamic>.scroll-element.scroll-y.scroll-draggable .scroll-element_outer, .scrollbar-dynamic>.scroll-element.scroll-y:hover .scroll-element_outer { min-width: 7px; width: 20px } .scrollbar-chrome>.scroll-element, .scrollbar-chrome>.scroll-element div { border: none; margin: 0; overflow: hidden; padding: 0; position: absolute; z-index: 10 } .scrollbar-chrome>.scroll-element { background-color: #fff } .scrollbar-chrome>.scroll-element div { display: block; height: 100%; left: 0; top: 0; width: 100% } .scrollbar-chrome>.scroll-element .scroll-element_track { background: #f1f1f1; border: 1px solid #dbdbdb } .scrollbar-chrome>.scroll-element.scroll-x { bottom: 0; height: 16px; left: 0; min-width: 100%; width: 100% } .scrollbar-chrome>.scroll-element.scroll-y { height: 100%; min-height: 100%; right: 0; top: 0; width: 16px } .scrollbar-chrome>.scroll-element .scroll-bar { background-color: #d9d9d9; border: 1px solid #bdbdbd; cursor: default; border-radius: 2px } .scrollbar-chrome>.scroll-element .scroll-bar:hover { background-color: #c2c2c2; border-color: #a9a9a9 } .scrollbar-chrome>.scroll-element.scroll-draggable .scroll-bar { background-color: #919191; border-color: #7e7e7e } .scrollbar-chrome>.scroll-content.scroll-scrolly_visible { left: -16px; margin-left: 16px } .scrollbar-chrome>.scroll-content.scroll-scrollx_visible { top: -16px; margin-top: 16px } .scrollbar-chrome>.scroll-element.scroll-x .scroll-bar { height: 8px; min-width: 10px; top: 3px } .scrollbar-chrome>.scroll-element.scroll-y .scroll-bar { left: 3px; min-height: 10px; width: 8px } .scrollbar-chrome>.scroll-element.scroll-x .scroll-element_outer { border-left: 1px solid #dbdbdb } .scrollbar-chrome>.scroll-element.scroll-x .scroll-element_track { height: 14px; left: -3px } .scrollbar-chrome>.scroll-element.scroll-x .scroll-element_size { height: 14px; left: -4px } .scrollbar-chrome>.scroll-element.scroll-y .scroll-element_outer { border-top: 1px solid #dbdbdb } .scrollbar-chrome>.scroll-element.scroll-y .scroll-element_track { top: -3px; width: 14px } .scrollbar-chrome>.scroll-element.scroll-y .scroll-element_size { top: -4px; width: 14px } .scrollbar-chrome>.scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size { left: -19px } .scrollbar-chrome>.scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size { top: -19px } .scrollbar-chrome>.scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track { left: -19px } .scrollbar-chrome>.scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track { top: -19px } .scrollbar-inner { height: 100% } .scrollbar-inner:not(:hover) .scroll-element { opacity: 0 } .scrollbar-inner .scroll-element { -webkit-transition: opacity .3s; -o-transition: opacity .3s; transition: opacity .3s; margin-right: 2px } .scrollbar-inner .scroll-element .scroll-bar, .scrollbar-inner .scroll-element .scroll-element_track { -webkit-transition: background-color .3s; -o-transition: background-color .3s; transition: background-color .3s } .scrollbar-inner .scroll-element .scroll-element_track { background-color: transparent } .scrollbar-inner .scroll-element:hover { width: 4px } .scrollbar-inner .scroll-element.scroll-y { width: 3px; right: 0 } .scrollbar-inner .scroll-element.scroll-x { height: 3px; bottom: 0 } .select2-selection__arrow { display: none } .select2.select2-container { width: 100% !important } .select2-container--default.select2-container--focus .select2-selection--multiple, .select2-container--default .select2-search--dropdown .select2-search__field, .select2-container--default .select2-selection--multiple, .select2-container .select2-selection--single { display: block; width: 100%; height: calc(1.5em + 1.5rem + 2px); padding: .75rem 1.25rem; font-size: 1rem; line-height: 1.5; color: #8492a6; background-color: #fff; background-clip: padding-box; border: 1px solid #e0e6ed; border-radius: .25rem; -webkit-box-shadow: inset 0 1px 1px rgba(31, 45, 61, .075); box-shadow: inset 0 1px 1px rgba(31, 45, 61, .075); -webkit-transition: all .2s ease; -o-transition: all .2s ease; transition: all .2s ease } @media (prefers-reduced-motion:reduce) { .select2-container--default.select2-container--focus .select2-selection--multiple, .select2-container--default .select2-search--dropdown .select2-search__field, .select2-container--default .select2-selection--multiple, .select2-container .select2-selection--single { -webkit-transition: none; -o-transition: none; transition: none } } .select2-container--default.select2-container--focus .select2-selection--multiple::-ms-expand, .select2-container--default .select2-search--dropdown .select2-search__field::-ms-expand, .select2-container--default .select2-selection--multiple::-ms-expand, .select2-container .select2-selection--single::-ms-expand { background-color: transparent; border: 0 } .select2-container--default.select2-container--focus .select2-selection--multiple:focus, .select2-container--default .select2-search--dropdown .select2-search__field:focus, .select2-container--default .select2-selection--multiple:focus, .select2-container .select2-selection--single:focus { color: #8492a6; background-color: #fff; border-color: rgba(110, 0, 255, .5); outline: 0; -webkit-box-shadow: inset 0 1px 1px rgba(31, 45, 61, .075), 0 0 20px rgba(110, 0, 255, .1); box-shadow: inset 0 1px 1px rgba(31, 45, 61, .075), 0 0 20px rgba(110, 0, 255, .1) } .select2-container--default.select2-container--focus .select2-selection--multiple::-webkit-input-placeholder, .select2-container--default .select2-search--dropdown .select2-search__field::-webkit-input-placeholder, .select2-container--default .select2-selection--multiple::-webkit-input-placeholder, .select2-container .select2-selection--single::-webkit-input-placeholder { color: #c0ccda; opacity: 1 } .select2-container--default.select2-container--focus .select2-selection--multiple:-ms-input-placeholder, .select2-container--default .select2-search--dropdown .select2-search__field:-ms-input-placeholder, .select2-container--default .select2-selection--multiple:-ms-input-placeholder, .select2-container .select2-selection--single:-ms-input-placeholder { color: #c0ccda; opacity: 1 } .select2-container--default.select2-container--focus .select2-selection--multiple::-ms-input-placeholder, .select2-container--default .select2-search--dropdown .select2-search__field::-ms-input-placeholder, .select2-container--default .select2-selection--multiple::-ms-input-placeholder, .select2-container .select2-selection--single::-ms-input-placeholder { color: #c0ccda; opacity: 1 } .select2-container--default.select2-container--focus .select2-selection--multiple::placeholder, .select2-container--default .select2-search--dropdown .select2-search__field::placeholder, .select2-container--default .select2-selection--multiple::placeholder, .select2-container .select2-selection--single::placeholder { color: #c0ccda; opacity: 1 } .select2-container--default.select2-container--focus .select2-selection--multiple:disabled, .select2-container--default.select2-container--focus .select2-selection--multiple[readonly], .select2-container--default .select2-search--dropdown .select2-search__field:disabled, .select2-container--default .select2-search--dropdown .select2-search__field[readonly], .select2-container--default .select2-selection--multiple:disabled, .select2-container--default .select2-selection--multiple[readonly], .select2-container .select2-selection--single:disabled, .select2-container .select2-selection--single[readonly] { background-color: #eff2f7; opacity: 1 } .select2-container .select2-selection--single .select2-selection__rendered { padding: 0; overflow: inherit; -o-text-overflow: inherit; text-overflow: inherit; white-space: inherit } .select2-container--default .select2-selection--single .select2-selection__rendered { color: inherit; line-height: inherit } .select2-dropdown { padding: .35rem 0; background-color: #fff; border: 1px solid #e0e6ed; border-radius: .25rem } .select2-results__option { padding: .25rem 1.25rem; background-color: #fff; color: #8492a6 } .select2-results__option:hover { color: #6e00ff } .select2-container--default .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-results__option[aria-selected=true] { background-color: transparent; color: #6e00ff } .select2-container--default .select2-results__option[aria-disabled=true] { color: #c0ccda } .select2-container--default.select2-container--focus .select2-selection--multiple, .select2-container--default .select2-selection--multiple { height: auto; min-height: calc(1.5em + 1.5rem + 2px) } .select2-container--default .select2-selection--multiple .select2-selection__rendered { display: block; margin: 0 0 -.25rem -.25rem; padding: 0 } .select2-container--default .select2-selection--multiple .select2-selection__choice { display: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex; padding: 0 .5rem; margin: 0 0 .25rem .25rem; background-color: #eff2f7; border: none; border-radius: .2rem; line-height: 1.5rem; font-size: .875rem; color: #8492a6 } .select2-container--default .select2-selection--multiple .select2-selection__choice__remove { -webkit-box-ordinal-group: 3; -ms-flex-order: 2; order: 2; margin-left: .5rem; color: #8492a6 } .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover { color: #8492a6 } .select2-container .select2-search--inline { display: none } .select2-selection[aria-expanded=true] { border-bottom-left-radius: 0 !important; border-bottom-right-radius: 0 !important } .select2-search--dropdown { padding: .25rem 1.25rem } .form-control-sm+.select2-container--default.select2-container--focus .select2-selection--multiple, .form-control-sm+.select2-container--default .select2-selection--multiple, .form-control-sm+.select2-container .select2-selection--single, .select2-container--default .select2-search--dropdown .select2-search__field { height: calc(1.5em + 1rem + 2px); padding: .5rem 1.25rem; font-size: .875rem; line-height: 1.5; border-radius: .2rem } .form-control-sm+.select2-container--default.select2-container--focus .select2-selection--multiple, .form-control-sm+.select2-container--default .select2-selection--multiple { min-height: calc(1.5em + 1rem + 2px) } .form-control-sm+.select2-container--default .select2-selection--multiple .select2-selection__choice { line-height: 1.3125rem } .form-control-lg+.select2-container--default.select2-container--focus .select2-selection--multiple, .form-control-lg+.select2-container--default .select2-selection--multiple, .form-control-lg+.select2-container .select2-selection--single { height: calc(1.5em + 2rem + 2px); padding: 1rem 1.875rem; font-size: 1.25rem; line-height: 1.5; border-radius: .375rem } .form-control-lg+.select2-container--default.select2-container--focus .select2-selection--multiple, .form-control-lg+.select2-container--default .select2-selection--multiple { min-height: calc(1.5em + 2rem + 2px) } .form-control-lg+.select2-container--default .select2-selection--multiple .select2-selection__choice { line-height: 1.875rem } .swal2-popup { padding: 1.5rem } .swal2-popup .swal2-title { font-size: 1.5rem } .swal2-popup .swal2-content { font-size: .875rem } .swal2-popup .swal2-image { max-width: 200px } .swiper-slide .card { margin: 0 } .swiper-container-vertical { width: 100%; height: 100% } .swiper-container-vertical .swiper-slide { text-align: center; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center } .swiper-pagination { left: 0 } .swiper-pagination-bullet { width: .65rem; height: .65rem; margin-right: .45rem; opacity: .5; background: #d3dce6; outline: none; -webkit-transition: all .2s ease; -o-transition: all .2s ease; transition: all .2s ease } .swiper-pagination-bullet:hover { opacity: 1 } .swiper-pagination-bullet-active { -webkit-transform: scale(1.4); -ms-transform: scale(1.4); transform: scale(1.4); background: #6e00ff; opacity: 1 } .swiper-button { width: auto; margin: 0; top: 0; left: 0; right: 0; display: inline-block; position: static; background: transparent; color: #d3dce6; font-size: 24px } .swiper-button:active, .swiper-button:focus, .swiper-button:hover { background: transparent; color: #6e00ff; opacity: 1 } .swiper-button.swiper-button-next { margin-left: 10px } .bootstrap-tagsinput { display: block; max-width: 100%; color: #c0ccda; vertical-align: middle; background-color: transparent; border: 0 solid transparent; border-radius: .25rem; cursor: default } .bootstrap-tagsinput input { display: block; border: 0; color: #8492a6; -webkit-box-shadow: none; box-shadow: none; outline: none; background-color: transparent; padding: 0; margin: 0; width: auto; max-width: inherit } .bootstrap-tagsinput input::-webkit-input-placeholder { color: #c0ccda; opacity: 1 } .bootstrap-tagsinput input:-ms-input-placeholder { color: #c0ccda; opacity: 1 } .bootstrap-tagsinput input::-ms-input-placeholder { color: #c0ccda; opacity: 1 } .bootstrap-tagsinput input::placeholder { color: #c0ccda; opacity: 1 } .bootstrap-tagsinput input:focus { border: none; -webkit-box-shadow: none; box-shadow: none } .bootstrap-tagsinput [data-role=remove] { margin-left: 10px; cursor: pointer; color: #fff; position: absolute; top: 50%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); opacity: 0 } .bootstrap-tagsinput [data-role=remove]:after { content: "\D7"; font-size: 16px } .bootstrap-tagsinput .badge { display: inline-block; position: relative; padding: .625rem .625rem .5rem; margin: .125rem; border-radius: .25rem; background: #6e00ff; color: #fff; line-height: 1.5; overflow: hidden; -webkit-box-shadow: 0 1px 2px rgba(31, 45, 61, .25); box-shadow: 0 1px 2px rgba(31, 45, 61, .25); -webkit-transition: all .2s ease; -o-transition: all .2s ease; transition: all .2s ease } @media (prefers-reduced-motion:reduce) { .bootstrap-tagsinput .badge { -webkit-transition: none; -o-transition: none; transition: none } } .bootstrap-tagsinput .badge:hover { padding-right: 1.675rem } .bootstrap-tagsinput .badge:hover [data-role=remove] { opacity: 1 } PKZ]`zcmap j5gaspglyfā2head16\"hhea$ hmtxlocaqmaxp namef<epost0 2webf,RQ=T02bDRR x͑JQn~ {(f@}ZRXH!e $6ADtV $Y,LԨn\ls!ųF*rR(TD)ɥ6P͸~/ 6ᣂh}c,8.E"5iHkHD G_xF%&).qW6$e . ܚ3fl?z]7ϫgyxx9+&mXGI?ك)O"MөH2tnxڼ |T0~s;Yd2d$dYĈ. (.*jԪ]jjW}mkWm^?[!sܙ$$}{}=ssxNl!v2] .q83H(Oe!өH: =Rrx7Oon6zż1*.`ts䊖`cubтJ­$C^8ޛd!Hܼ-;<|M`Mq7sf{c<>ܱnYz./ pB'GX a\N>qbwfAt0xvp)/2Q^S;~K^r5LX˧Վ״#1:;܉̉㺹A9$YGXv[esL' ilaGx{xP:)g.%2զ\ɲht%ho;:CsڿZQ^qF*G-&4R0LWqL|}RZ֋&{k;.ux̲]o~ms[?`S;f\ ojf.6%B*u)!f©cbS7CںGuб}֮E\j7hRnfLJ!ǾK T $#++ rv)gb<(}+o>c[ kϽ:[HouYs[-8swmǿq&dZ knzӸK;/sN[ ,Ճ3OG*Π `bL&.&}lg!pq_XXSW:U ?` I…D9> S ?>䫓hE R|z„;E< 4.50"9Sn)O*Obeɰȁ[oU7rLb}l 17W>zj7>gqOzU!M:GUcFYaǹX =fxGsfZh$̀_\)=ws'GSSU(7%\pQ*ۑ,=` U" )wL5&`3<p'9x$!Cfrvƪ ;IG= t&i雡Ζ L֍U-T 9>a 9f3Z|HS XʇP+$WACVwcO@J|AY#Cq1ܨjQ>>K+Ԓf'fRxD 0{Icm8\[uwٸ:!x8;ti)0,v{0j ]%N`41NU+V=TڔEx/#a+A-Az˒PA2qR[abn50"G_Cu "|D%oY 1bUMSB'_sqU3Qn![ mHy1QAN ;źRsɅX-;n^M•XyѢa(v}: ݀`D$?]|^D<[tås*r="kjaJ~0))zJ'z?<<#3&wccC9x0T)$ܣ>a ָO]}SZ_J zp9Sϕ `;fkbl9/߳0:FwQ ""Ԭ cH#U]oyF^W+گ|Xo@  53B+ǐ.Yӟ֎ݻ,sRܶ24?5/g_AFdŃYj_ӎ}XA\qaC(9A /A!ʚ>yi>ͧZyvȟ@5p }6e$k{b]mZﺘX@o-dYm8m#if8vy%G,xӵd%Dg~nA0M rk[n*ڊN> Y%8[z[o>ջcL+XZzCjb= wVۀ'~st#i!U(?t@)itq4I|I/Jv yٻE FR>K |f $,! ? φZJ}MɈ#7~/\ſkޣ7dbu֏΋~'*E #B b@71͝Hct<=t>N~L4_˥c+#?0HNjD7OV+}D=@i\$Zym /c4.K@fȏi< s%yw.!i+p9gSv–q>':0JʬK|e< (1w/dc\_:ѣEl;5 L$ffEyw DM!VdpXTW(ᇸ|dG{'OՙLJ3&f+ ntѱ!UO-Zs?!w |`pJ$Bjm{D[-~W-c wZ A6D^Ȍ45 ʠuX:)%7wQ ӻ!eD]F,!ÍCi;{NgpQ=sڐE0ç Aʜ8j<(4skP1 ģKUaWv~;Gs(ӱ<}$i¥7cd~MJ:y…3n>o[#IBّ2\?l@";%# fRm$ˤ:'?RO'%I9RJuAc7#zvl"Hu&cy!W瀦IbWv/WsHsHMeuHۦ_" 4n[xzԴq9X9DB tZR׫#}jcCbCW'pt8 \JJ4ǙȘq1擸RK)0&r)ڭFRO,K1hcǷz'm>cCxoO7Z =Cc#"}*f*H4l2+Naɳ;Tw. MȠSQ1!hZTJ)SMtGStǠ$Ci&G>nK~Z..13r?vvT&7KsSbn#IaYg$(3!p#mCr$2Huǽ$}xaa< b ~Ht$4bAXR0K8c l$o8 Z P6!nH!H f$>*e7#ֿ>O.(r2>I@hAߊ= =ͤo0նPk{EOa^㣷@887>jN_ҿL[g\zm0ڨE .Mlep&k_!#6.?{A9x[7QwFGU=ף ʒaJ&I!a| T9>gX;z 39"#^rS[q𩸓V,SԉP/URc75-EsaI C:gZrάm0$Uu8mLB1ٴ22उ;neF /S"I?F[QSs1A&7Q{nT*2N[_bj0+-s(9XZMUT`,,JOY93WYBQ=Opj qTD>1B9U؅Nh?^zu|mU|a.*4Ad>Zeew,3R\Wƹ^g2T馴L,jXLVvrwRͳh&6X[j%Uy^AOUIk+j:q0"Jc/{C!%gO,\tEq ?P'q% m01a\IH(qV-Pft tp`ё阚 ́#+Wj4Uj!kGcDWՍ&Ʒeb#*W; $%:SMT:cL/.s>Lc>TGgܔ0y3#Ŷc1oб-FṇVte:ЏezrYmLHz756/^ZH!(R ow,CEt!]|B.|881.0>VN?!pSˁF<+ɺFP/.~gPRlr]T|ʁ8з2IB'T~8ɲ*,JȔBh{@y9Q!R,4ﱏ9#dɩ02q"Pat\SW֒bpϋhBV%tBd3{j/hgE܉4Gl`Is= ɭ**sH>~;p-VLЯ%iPOq13bXw%Rb.5gNWx*21v$cOc٩q/>;V~*BKZVeE`QH6C ж񖧰|Y߼ʧ NǯtLGt(b:űsY^UCUwo% }u2ݦQJjdӧ>cSOD6Y6ҏ E83_2ޜ'E6Ó{(&qig K//?&eC̷+Ru].E)nԭ(0pWIbc+B4=&_diLcR̠MՎ&i&IBYZ` Qʊ1}QBX;d,}.u:-5_L=jBRNR:j _bLNtUx+e$Z|9 ҵ[G]+(ԣ@Rއ71b"SN~//@iX>(2I:;D^M%h⨪B-哯:-˅'q*58\oYUq"rZUYKEf`{|Džq΃T%9!]剦ԪutJY[asR7ᇵB_G^k#ll]\#Eٯ%+I|<?M\s5իt֦.lr_`,rd03K)e?{hwi㍉pxmjět^q&S/;8mhsXwہuYኴ.wE'Mv^M名7BJwʴaxw}/.v6:ÜI stny RݺWou=]۴D=-quX7ۻ\-+zſlZGټț[y#2/xzTr\tl+:'3FYb *L[`Zׯ"-T;cC xRGDmҲt&X/&@۰u4Ook]O `9c}Fqh c5( i~˞=3x{oaǺW|h>z}?lYuDo}ޟoA8 s]=ճ.)$il6BxvS">4<' die-I&_aޔt q Z*%r/Te6C D7a<} +-8 11ؗ Cz9-($A&eK~% UǙCaH\R1Yn![*q]v7 Q*%2ـ D(%lt *]@2?m%VR}YuKIuY&9/j 7^s2&s ]TX V?-/[ę_gTQ sQߺ+NXq!z{)j (I=,H3qzYj̽/hfq  1T0=7[hsq`lEgt膿|aI9v1|;zvJ"uMͭ+t/5xJƐ|SOAucj %(|bn/g@U(;+u:u R&.!-G),c妱\k93Vo1MxSNՑ[˔ΣNTU<1j廠ivBL|Ao.2"Iz'rT` rj 9[W 9qX&yVpriV,0W΁k^P$aFyG;j`C5- `4eцIyQMmRBMe1@.b1Bz;c0 `Ak̎ Otַfd⋧4&k{;Y>NUv#o܆}6>}p}&ݬC~N95|yMd˧X.!NkGF _־,B 5DɅ@Cn7>kSBUc(o#p &^]. ׷UׯoStV \2V 's|A|<y}O-l|zb :-r},ݗ~T lLg]5yQ L Ht)X-3ةAVGnWƥ>W΍}Gh40=ko珳 "}1[$߅%*:͌gJ2-1tI3Zt->}xԼl{wØC67g?yG_ &E:c&˚96̍K䡽/>: Ͼ'<9ipźZZ{gȁrw;^%7{樸?`7WTeQI?Mòǩ?beQUm/9X^ ٢?);)ݪI,h2ާMN.-&.Y{͇k% 4R`I]6 }fgRC Ve0=Bi>#)=d$\!$>nI G%v׷j"Ms,vTm56哊 pcQ.L׀TIj2 uN녭`"U#^T'"U]IRSa`2j \ig$ nZsVDStZm\zb5>OX?Hdd"hQgoj1 zv柽`m_.>n!躢%+&Kż3I;yޖ/m4dz;?|Ιϛ?'ڴrcpo>jӦ=x@qv:j1hX9f%Io>[yFQ [y<2ʖp |ܡ [ؼY-Hqc%xP6g_$oHhhLZ*y)ԢCR~X-P!Gf/ *.8$>.Zgc_⧂l")Kv0Gʺ̺=jO+q٤#;,d:aD/`3a"Oy1IuM Tc{{7~7/? wm+Ȍeո3/&*:*`mo<2IG>Dw LB_s*#S<@0jڗ7; ۧԸ+4G0mW+T,INv8&KXl33FZ,ԯmO$ e!_,ˌJ+$ni>z9f'Kt 4V#S҄ E< 0eGvSe|z`"$*%r :XWxT-wi =t%vˤ<.lK6QJ̪te ?Zr;*|9ۿi)?>n+;!-`c'-C?}/޵41Lf[ə~I&9nʈkaSv`}+sIv?D'Spqz aYF"lx*Jo o=^B<5Ȍfty=Z_+릲6y9u3TpJm!6(83N(4ħ08عhQg'j,/FF T<6;Ty9*Y'5(8]B:.%Ӳ5.ml  j2+ERWןg?fzj<5g|}S_F?ufoFW/=]/Q I^vk]?]9df,?qɻfZ!:W1i,Ym|_9+WyyCH:bѽB([bpH:> NB5=ļ޼qC]2װ̸i009dgG:쌘A_o9w"a{HZgtvvtBƺ5Ii d\֐KmظmrY+4[]]Nc5L|oܲe[y[0n8yUy˝JM31UGD|иmHEd~(OqY*[-63}L{.}F~qQךgVvǂXA)Rzew[Fiܳ`S~oGZ^B[ڷtڕ ]4La˦V Zu-䚳E+8?펕k?z{eJYw97>B-8tsT쌸@?/<;mnENh#AVl^W5D¿{Q.ZPpJjsWgղ&.k?Oxg8w.Jčg:Nv{(F1u܇W }l1[f{/umBgcoQ<^Q[GMtP니_S=dԞZ-Ag[T)Z,.Xƾ1.8Xj!CaJͦuY-* ]$3 R B)Vb33{.NTgMQўy6va&b!.N_ _]ڈA3]W{rj߀tG\H`/;ذ򙧵PI+q5pM{&sy'~c&T6 Zm}mm}^U+>Pc}Z#_GcCf78}z6.Y΂-xmv龾tex+b@)+q1+-V d+Vσhx':)Oy),m׬>!3}Ucs/-p%g|%Bs:ꚽw]jGfc5HF5i5W6TÄ;OW”&PAthg gDm{]2Yv'>Eg+c؃,-xg : -icvgdq薀bnvPtd\7onRڟno0hVLHTMMӐlCƲ5ݤn5`Rƥ|4e" Qt@iU4|,iՖOj~CpǗv h5}5E }~>q!ĸ71xku2'bi ƯyW3]3+[v:͝[vf1U3sfF%Y\dy].qRIvZv˅(jn{Jr=0az/:Ξ ?$ 9]ɢFk N۰ bc@ uNpU/< [t?̳$@7\[rϣ{Rcsx$_y,yŽs[Vg +&x\.^"M8sw۳?Y.q«e|m[By$V;U١:^fώ2ؖNVDd2˰2 N !O8?vUT#@hIq]M;VA"t0/Wܛ$v?%zhP-ªP.Wdn'֙cs/Qĥ̡sYrM暭I!qQ p `ѡfC[j@pP-xaAL/d*j_!$LU;a+:qާiNizL\8Ẕm\~$b*,d5D7FSF~u=X&6msXC16d] ]WBE}!:^oW*VZ뜢/S WEHSWty5kM9IϝlTNn׹c< p'>L&5 w>z R^e(&U^Iֆ$I67Y#6"UFQ6ND0)bEEAEq`[%IAJ2vH&jKϐEQ/:;,ixxky D|6Hv#! !rT%I&OĄ.)F" y DLfUzE-*|7 6&DkE{&*d @dECpK8FYEY^&!wZ;o6b8t7N d'`d:U6l4I"$6U;:"p<8@1l$J<`Akx$"xBp\ ]"ɨU]0%"1=Z`X"Xmk3 6RJN#E fl1PUp b`A &*vKY8Ι ydĈ$<\+ndC:bJER} ,N/9%A4# 5 # `*o3< v%Oi Q2Y!9yGE҈.I6ީA4݈5x;1+,KGU4I 4 $$փȂրL! pYID(p嚈^48jmA30- t-TKTn4`D 8;ǾAEW ZWS89yRάګhsc2Y#>%Bg"6~BW-N]ֲOH!(N ׉~QQ.jB#Yfdo4WfsQ3oNU"xbv*oDuW94Y;J?$ro5c8o_cv)Q9616"HB okkQX>Yv0ԷQEN aڵaۨXmg! eǾdd'Pє9rE +%Yk9wa K{@{.:@`3}K`&/,r<_ 1!5Esn-";Ln[ϸ@܄,"B0׫KܸW &n1/) 9WKW̞' ?w-e}Jsף<~uIm_G}sg_/] Ko֢uOcLOk(}!Wny[a+,%mB\$#ې3rX,N{3%m }ItKJ\e.I4rggnCs//5ML_w=+rK+׮]U/\#̾Z[c:A?3:u LT0>QwW\ykb%\.臰+M9rpc'i<0{CM{W3~+0;zm pY{ZwgP%K)-A"8?;o=:+rڻڻ3 , q혧/6NmGLv$(sK V n?wۘq 9:ٓL4ٷc.öPmi)1׎fˢ>j %J[f&ѝ: .~^ -vb8y:iž+-{XVܷb,6~}+7ɘp1a"?cs$WĒs7/xxүԼUC⿾BLD?$}ڥhĞCoo3oOZꪁ;ҫ,ŋU;f_8mU ^G[%gG8;9dx)2x;E$Ӗ2A >÷~ \qIEq.%vd2R!R4g*SHOAPy]yRdA,*,}s3c7|^袺NfV]e(݂FI/ҋW?sG㵇t-Jzp7ȭ-> k~nVz/]?<7\~bw+C[/g܊^2&^ø^R,l8y8+=_cߍӯw$,$! ]'ݦqyn-_aφ>JPVqsU樣CU_'v񪯩}*i|\KM宲dNvdjAOKpYє5ǜ[ sSl7kV_f.pŰ1!*tXmL\WrWvVAV_rda)>`1~gaLl%7yc-^vեoi3P<[&F^޶d6@zc=glO^O/3𖺮Ծ; ].`GמeMgK#p6p˹VŁ+֟X,xUr|%.:Į]V\}>] Gߚ3k[ڟ^:;wY?}ڦ{VϞW+-rL'7T^4:g```۵c7qJEfc;t }wLb}'<1)*:vSrTb[81'o, _p݉OBLZ@e+%1/)zx Cl*iv;8_p:ExӦ@pՅ?w% ͋Y34Yd`6u}B%=*n٩mfJUX."N!"SLLn򞉿k?w.2'xJRJ6'!j@jyAdty"ļBayF KozmԶ!i c!?,C%J3S}YKKtEvDo~zɶ٪qkkn;.u[  L$GG>q%VC̛Y]{CxI+[\3yCYC쟻9(K^WO3{?ΚȮ3osGq̖{wO^TONwSqorml;16m060ѫLI@BBztQnz6\9K}m % IⅾM _s9ݫnjh;}hAow}צ9+oG8Ċ5Qj5mX]*)\X9RO2 aBžh{FeӋpxZڿ #WoFZ%ÛW? ?Zp^tIruk;<mj5={j"]X=gPiޚv\R!ŵ]>2>a0E1|"8g`=W2M۽iVW :a#<~!DrQEU hh(6&tceiuϸ^j@κh'HMMDWƀXkƹ[$[-M>wu\rI&ΈtwGd2?;w-m zRw8-pjX]Yk7`Gͣ14-m]ǖw3PƝsf lp4D'hxn=S[nTx;nS.jy*ƍТ!dB窰qRDЀ[Fyta@fos68JuU3JGOĤ~rhc8&i_2c%T)|D~d(?`ڏn*CR#&EBDCEshIMI^\& )!qҀ|oJA!˳ g֣ &YN$STf `Y~>}Xrzhsd;a&%dR_LԠN0R% XvM32>Uvơf}QKц9qg}w#2KS2ѥ-&;0Bran2Vl/ fg! ^ wJ6"4'^ z哥+V$۫ԋ}ΙΦ-OG}+v1 <N%uA)۪n1'XVg7,2$⋅C$d+= s앫_\'=3k~jX гxhP":nXT*Eԡ4Nen1YRti%L@djh>S qyAWG'0_9P"- &fl c |Q߶`P+|f]u x FϮ2RF 8jyCNo~ozf^NlӥS,/pOLLz*7.ȸ`yzɼ+gF#󂴖Q :%c3I}\dDW&۩]vȖFoynT尘dH]1ZzR1$G5GH B](hZ#IcE?Mat.Gҹ{tSA6ILjQV.ʹccA%%3aO;PrH&3 NYˀ9SԱ׎C3Vv^Q/lQ03åWn'mYXDPK~t5  E?99pafhNTG"Sh)ZԱ`?.B)9))hmLQ$o>&}$ lH6 )$3D ӨނTT=)ldz\ːw>(0IGA^$5ZB$L]`L42\Zq H_gIys?k#KDa:a|RҽKmojumkSg:#}HncZkW/=s"h# (7ϴI̬yɤgjj4\-h36OP:r-PXYxYÖin[ȦM_ux/dKJb( e5׃N~R$č AD/#]~T Oav$F7hIyn!QXu,gd7YJHC8g.SÜ%ꋰ%v@N\h`?/~b$lZ˴o޷.ݛGNp>a-]}Y3?]~Cy\^1P< j!_vy?:Rz HOOud8q 7bTwzLHvi[z--6nl&췯=ikLF[`ށFJg]\~Ow:w-/Vm׾R{`ݑ/pǧ52lm?qN,hĦ=O]6ǥWAeyGrc,a0&RL&?\2cj m9O)TV{#4y)UZ40*OxL"vǩSR>EA-h͙+9fKcpd?[7nyjhyNOg8bzx# RRn8*f+^t.1N`BXoC@V5( (Q\ck-L˶(LIAK0Kmc*˖%*YZ2@6)n N")P`f2c[ jZ ӠVKAph9~$ۥO\n\+UQ(Q8 DO 7P: e%Gl#OrMa̜*r2¬'cdg**~>hӔ\\[۫^$*;ix|E)p8"Կqr΅ބ:R6~C+;MmR}ɞfɵG*6ҩ3\I|zcLcS?E¯|Ԙa2zd.F45`@ t&YZb@J|TmRQFʞwMsVi<6Prkm;oK/]{Iw \}d#0!ó& H1w_d ߴ4 ^oZO*? 2{G|hd\JW~EoG.0." vSfc#RZUh z#;oWDfD810xgϡ2*?כ8pۼ[I2^ cR;⑟h$L~EV5e1%-ݎ-]TyG'Pr+f?8#˓C7]q3u7}5:}s{{dǃf|}@%7UXٱkk9{U3=gں`ȊBv_72Zzg1&E4ɵd~P$senc1WfGF07VZ0Pe lN"o"v*]!^1Ɋ%vN]u2#.4jwGzNF+tvK7 7XgyjPG@kl=-M,cL1P<}1x9NueĔwS:L`xW,L ,{ɩTKb}A|pDM )hE%/orY2*@5&bNXJ)CzxhpA4k Ť%*9uJؕlZ+yU|, *Ǐ_2wxNʦoŊ>P^-":HUlTW2]7 w} z)m 㲵;lJ\W)-j3䪥D٠BnQ=r>C*B YÔC {5 ĿU6rdJϷ.1%n m/ȑ1]V&|3}#77A͛tMu]Mv{SZ(J N k~%R92jGPO }p>JG9Yϟi-7cX /e2#2 #a7d}JTEn7 (Sc"Yl$)>+|64AvM4Hp2&<'zN UEǒnOJa$qCSV\%ve(# ,Deꡃ;W>_L"(iq9oiZN(KNزJb^0\{cf$e*F&-&1\0cKS㥫Cc6y^3fc_n62Vw2cW'ʌ9c+M `v],IdFO@t$/]+QtX4qVߔ|뮑im'?Qx?^ڌ"ܼ{wp3uJI_,ǹ=*PjQF+KU@$XA'٤L fDnv :ڴ jJR'Xҍ]Sy]Z|ݨnn#iAGi^CI(0 U$ !+~|V^795hyXW&UFna%I䷿q]zPuEx}Q#VzStca_;F{mfdNq ѣåL'Q_Dnk^#SrQEY7aЏ>an˭X<%Yq2μihlk• t7pn{WNձA0-w N/mmsZsFwPsRW,cPVt@1psNw7ed|\:r: bF[ܞ f'SnjE&YBE3+'/w@}ҿ~܋\AW$ط*;H][RmO~PX5ًӳK,5Ա`oʙϮom*5[昫iYYIn((9O`OCd,!¤@Tfu ;2 h4uR$?wleG60y= *~w1e< Q9@*VaXLA 8DY#|r"HyGggd+]U W ]ͩ'h"UJjtg(\Ë~2O Aߥh4,!3I)}=+n3h˴؞WB0 S,DоKfOv(8N<}͗B ;ďC x>. wX4|> k^Zڍ :$4"8ELz,"L4n4s7_B~#8Kʕ;8Ľb@ Aٳ_2 ˓֍M ԵɾtRDx H y6 U' }ȵuWWhljԮBU ׭`?Pp=lǭ-b5a=\D xh<׊yG /'hS=zRzD-^^klc|zu,3ZjpN'YꢭEv[zt8KV`Ue_FCق2)=Thr1_Fg{>Hs>2=5E  (-,h1ڀ4*vTPN4B h$1U,H^"Eoxi6Ȭ5 _]WZ^x^e%zM2?~̇bWK+xwMt,WEEބ?L*SZB&% +o.0T8V2[ǡ:V (vkRhi 2ʤdtsKFisU<4ߢTW|q,\L8 -M_+ dl-J:\/DŻMmG'lCNdvv/^iM?ʾ_Q.tb21)yA`R$8I.9~Fذu=V (!gx(;D7l8O"J, g|xo95PȞ v=O5UvJcٱiOno̟}0Fxr ekgIA9Z}0)  @df - _́ ekNzd.eW}һ*5X\PkؓTF4}& ][uFVwW@&gKZ'U˥ 儸%F1h|`ԏbU,L@R`&*.cK쯈,ޥ-xqԶpN&/ń m Ș&sk8}MA*t 2mËjĩ]~x ip#J.H "KCԘ޾Jaw/=;n Y|Rrhyh*斅Cy@gbY4N_Re/@L-Tq Y :+wT0  eH)ːA&5YKL+i 1r銀SJLÈ)y͠Nb)kGB;)M7#e@,Y`gxL-~ WeeFN|H_Q> >FvsZ؉KSF%ҏ)XcS?x7Ju)葆2CtjIYٱ%ppu^o$oSKʖ黷c䬗sؤ@V !冀ÂS t~rJ'FXU\B98V\tʁgeE"(Z>*-1G/e}5y B׬^#ܭ/bKFD25OSh\ϋ _YXJ#Jl0zYQ D;Nkg ^7 gruݕ;D^h^&pF,Dǂe;UXSb|qjj6j5pC9fYj6~gMesCOp>oLGVӂ:QvEd ut-̾udp(,Y0;['L('GUŊ3{A?ZiA%N6"#:;z\4|3>VUxSIA 6ZT'Ο-&Qw9Nv$Y|wE"Gj4̅gGQ 1#oSR~*#Օ+?6UJ!}'oQU_ NA7f~(xa[ :6Mj9+C6u>;<7 urj!hf7/bʔE9UknF]aUNS nCD%m)5bx`E8Z͚R]+P3}OgciڎK6w <  sj"IʎF QEh1YbkF~|-&2c9N c-{^q֢ YwNlKo{]W';g= ~CpߺWaӦVcj<o.XĪՆv-C~Fwhlңk>4riPb_h0 EL&쑮-3On`p\UUQe~ZU[Vg(T2+Zn=1CwNM+׳5 ?1 Uϥ[A~f]b]厽-Py 8f/nʑz_u/h, j7uz21#z,zQAlzx-C#F^^0'DGfL¨<`u+<(rQ1~^pJZ,0}9-׬E\Nȸ882-7hX< ' Ο_u [8mYsgdرjJ.Xv"x,8'TV,3":b@ NGZz#ޣKf~>2^Yo /}a)̚qs._zf0 <61SEߘY>lZ7~&3I;O9z BwÙ̖t- I{.1?)#,N^'Ćpn!5"> 穿t>5jTO+4gOV[>I[iJć+kJyd = <6_#b:iΊ @ G0@bufT(w?R) ϹE:0%JePap#4xǧ y^gi0~po+GQ2o!z|iۗ cROQAE@ 4=inoaZ  g 7=s'8Dw޴f8Gkvo0]w0މԥ'N\W?V^A~:ԡY[b.Bxeg.togfO~_=o>tDž[=(^Of{{0[paGKGA$OČ0"P 18#AtW0G"b? N-./ &'6?_9fnXLjw#I$۝%z]M`/L4='2sylMwX#zU@P徦kI TfiFAj\l)W)j̯R)aq~dӸ:ڨ4b o|MH6WcqOȹQ[^lT5IZKi*+%E[ZetX/ UG%%'< 6*FXnXLkkB풞&lbvp)&Ѧ@;ghEά]iom匬_, oSӛƹzUm44}:S 4d|Ԍl  3S<]#p?F^nٶeմkfhk1[^LlJEWVE!߹3 ƲO61iM Qv Gj OՔ׏hn >,nKO4Ye |in#Q]LaG }: 3,c/tZǫ;tJ)I)VA }*A &>oI9݂|>f,Ź:FO'kf(d(s)eoZAg?oB.AIg,I |`4)ێG"c4.BI>U@ ߄3D ~ cYg’9^AW&*,RwϚ=v 6>:ìvۗ66w-wuz'fݻx>t~ޑ.HDnSv wufży452uH[pf>R۰2ۖZߙ `,}&=c{?d5E5ɼd<ɝ\$xyIab{V/$4X;c'=:|u~[33Y;m~ۡ60%K HlBUz[UuSn^mfWUǪ̪Ho2o7%^ض>گM[[Am/ |@L D)9cک+RJ-;6Bsj j t˝d ų < 4g5#!4QLA s #$hZ<֐` V‚,]G$gFlq<5E;|cXZj1 nDG>S'hKD?'AC . )4gRtXn?n"HQn.Zayb-}EBNȳf@(i-!4nlvvfaEv W۔tð4PpHK0HEb m^MحY[Ƥ [9%gFŰNJ; |erTFc4 #&E -j.Vai4YUUƐ 8BG͌[UuuNi0cX&a+Ӄ*v)Hq6#;.j=3VТh 54b9HUJZK yFhJ!(y%00a@teeU!jL5Ѳ{b2Pmc>]6stԲ Ѵt߶Z]M &q |K ZB y-],V$Q;qT<IT7S>96Nx4xd"PU8i6PYVuCV; jwy ^ - X]>%vQ`¬{*Q4w׸!QrUFkwJ^hUFϡМ$2 U , 9V;s6 6LlZc=G*h}k}֫4(!R4BJ.bﱖqǼfCz4tzO ՜@CƨqGSB=8Fr4j6|nX&S*n^R@ukQc]1 TZF-|&8֢FgWrj5NlK9fb_5]׸6rg՝˶oZڂѕ svwMd~;]2Q뎺}/Ec`c9@CaƋghLF4LxؐpxnG X\5>ÿj9{p#R: 5phW(w\r(7~rÍG:Wf2m#@eꙺ{]*:0}Bo[ڥdmwr 9 o8W_E-uϷOܟ?/\6{@kO6O.UqVԽhb`cKfۯZ$`h!ͲHCƋLJYt@ 0^BVct="`l=p*A"PkhojCOh#X<}]YU yhw;0}uҩn0eklBa08m^-YXqwnܾ-,"zj Nvw ~&O+HA "۷+9 Oe9D ͻLUY7@?K72'b185v4TUͭ;QW+k u0wgBFwjaءT^6YR)J;ULHW;aة Qޓgiv_"#E44r|ML,M3Ğ:L"yH,^JD .kxf[rqҨdn7TFiNJ2w_FRפqxKn!۸\(GN>XEcڃHXŊ,5*m[H,,T>Lw;RQQw˵c 5h=&{XJH h(g {fn0*\]6? as¦ևoݶXހ Az[祷R{OIozaUO=b ʧz E^B6hӳ+[NRN6~Vo~΀V+_^AW fz?b/C PAp<$L'4 1μDf>7=-ꩁ_^{I2T|vL{ RcƋ.t󊿢ğN&=?j^ůo_`e{ƫ[nHTp2ڌI \eo,B`tkr\0|0A VNp `ixNrl&j#!Mnf"u䵛5Hhqr!4#H&uhaElgF At K,W:DPY`Z Zhݢm=n5I,'\Ӏ"ʪiʖ4\}]6Zm@0ģε״q4²Qo(WW ',M'ͱώHGr3I5_?ZoXf*zl6uŵ`a9ɘ 17++o[X_ee`rENSAq@enoK㢐WVAQc`ZO^%s?}NdԫQkK_cb&j` x ֺhd1:ċ@v Æo%t,xg)d#xA+/=ؼ:lzgmUt|]'jkúYuuݰ G$W pO BSDHKޫRESjsU,6/:.*`*uѰ!P::]P6N.owx}=tN"on@GgoL+$絨-:^zTl&tT~zlq:zT9|)BeB#f oMx?.ڙ`8P'k-[ 7{qb޿ c|bgAb~Ļ<]oeGw_u]=7ǽ~]/HHt@2N/1( 84s5Z{/`>un{h)Erc{?exc``#10LbXɆYŃ/VeB؎Ӄs? \ugT5]·_߇@@#A-UB.Bۄ+D,D|]"'v@HRJZ([("{S 9rrrs˫[,&!RHA\OUBw蕬*VSLlQR %Uejjj6:ՖIUU_R?DZZ^h}fVݢYǚκG0Dxc`d``lgda& fB0xmN@+C\6Ƹpm1a*^B AR!J!mc.\ t'9{:E0d2g "9cV2y8ќ£ylEk^%'gVo?U_?a\e`!|G1|')|g9|_q?/+*&o;.!~')~%~_7-{ğgwĿoR@DU2FujPZԦuG4IS4MhڕviA'E{>/G::::i6,&L[h6:Nd:Nh;NgЙtMйtOЅt]LХt]NWЕt]Mеt]O7ЍtL&Bٕ!i@PHIi'%RF9-Tk?3}FٙXRΕrS)7rK)KJgrg>A`i-SߩJ)X<3#ͬSq62T$Ff晁 e^C~X24̳?A-K3<&&L+ȌHr1 XQͱQc%j~d˥NX#'g,~"R\ 0nH0ٟN Z#]Ѱ--50/5l)MՄV2ʼneu Eb}e=p~fRfzxY[닾ym6@n:"D)D B+Th~TDZoȡP$fP.L/$yd/3|ň7O--M<աit9e^)7YZ]e4xVhv)8e~4dplyz="a0gM!~Tco]`M-`ppUw4ċ&[m=جLN|wTr< dže1u[XU'*ckZ c !#N&'3FE3/%`@4;_#;O iV8w(FmIIZ(: UNJ)ma5]Rfj-jZCnXeaq|q1HϩUC5u64.-FNhES mrzY^ - &W$ &X5fP 0guTNsFr1: m򲊝/T-8"p'ƅfZ(&LvB%e*M:~lXS.EPkmMP^ 'MMv%:xO镾q2̹~Nt.(_w6I`X(wдSœ8.J֪YE CW<츚nՏxTuQu,VQdZ)CFY6g97mJotjHw.u޸[s:Ks97I5#]4%2F2XQ͔/1yAb>iIr:6oUk`& N!td y*[cگ WSk"+i"}Ɖ/jK:\d;s1~0TdϴC5g~\Msu[4?7EےqϪfN5 jwQQPKZw_OjOjfont-awesome.cssnu[/*! * Font Awesome 3.2.1 * the iconic font designed for Bootstrap * ------------------------------------------------------------------------------ * The full suite of pictographic icons, examples, and documentation can be * found at http://fontawesome.io. Stay up to date on Twitter at * http://twitter.com/fontawesome. * * License * ------------------------------------------------------------------------------ * - The Font Awesome font is licensed under SIL OFL 1.1 - * http://scripts.sil.org/OFL * - Font Awesome CSS, LESS, and SASS files are licensed under MIT License - * http://opensource.org/licenses/mit-license.html * - Font Awesome documentation licensed under CC BY 3.0 - * http://creativecommons.org/licenses/by/3.0/ * - Attribution is no longer required in Font Awesome 3.0, but much appreciated: * "Font Awesome by Dave Gandy - http://fontawesome.io" * * Author - Dave Gandy * ------------------------------------------------------------------------------ * Email: dave@fontawesome.io * Twitter: http://twitter.com/byscuits * Work: Lead Product Designer @ Kyruus - http://kyruus.com */ /* FONT PATH * -------------------------- */ @font-face { font-family: 'FontAwesome'; src: url('../font/fontawesome-webfont.eot?v=3.2.1'); src: url('../font/fontawesome-webfont.eot?#iefix&v=3.2.1') format('embedded-opentype'), url('fontawesome-webfont.woff?v=3.2.1') format('woff'), url('fontawesome-webfont.ttf?v=3.2.1') format('truetype'), url('../font/fontawesome-webfont.svg#fontawesomeregular?v=3.2.1') format('svg'); font-weight: normal; font-style: normal; } /* FONT AWESOME CORE * -------------------------- */ [class^="icon-"], [class*=" icon-"] { font-family: FontAwesome; font-weight: normal; font-style: normal; text-decoration: inherit; -webkit-font-smoothing: antialiased; *margin-right: .3em; } [class^="icon-"]:before, [class*=" icon-"]:before { text-decoration: inherit; display: inline-block; speak: none; } /* makes the font 33% larger relative to the icon container */ .icon-large:before { vertical-align: -10%; font-size: 1.3333333333333333em; } /* makes sure icons active on rollover in links */ a [class^="icon-"], a [class*=" icon-"] { display: inline; } /* increased font size for icon-large */ [class^="icon-"].icon-fixed-width, [class*=" icon-"].icon-fixed-width { display: inline-block; width: 1.1428571428571428em; text-align: right; padding-right: 0.2857142857142857em; } [class^="icon-"].icon-fixed-width.icon-large, [class*=" icon-"].icon-fixed-width.icon-large { width: 1.4285714285714286em; } .icons-ul { margin-left: 2.142857142857143em; list-style-type: none; } .icons-ul > li { position: relative; } .icons-ul .icon-li { position: absolute; left: -2.142857142857143em; width: 2.142857142857143em; text-align: center; line-height: inherit; } [class^="icon-"].hide, [class*=" icon-"].hide { display: none; } .icon-muted { color: #eeeeee; } .icon-light { color: #ffffff; } .icon-dark { color: #333333; } .icon-border { border: solid 1px #eeeeee; padding: .2em .25em .15em; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; } .icon-2x { font-size: 2em; } .icon-2x.icon-border { border-width: 2px; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; } .icon-3x { font-size: 3em; } .icon-3x.icon-border { border-width: 3px; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; } .icon-4x { font-size: 4em; } .icon-4x.icon-border { border-width: 4px; -webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px; } .icon-5x { font-size: 5em; } .icon-5x.icon-border { border-width: 5px; -webkit-border-radius: 7px; -moz-border-radius: 7px; border-radius: 7px; } .pull-right { float: right; } .pull-left { float: left; } [class^="icon-"].pull-left, [class*=" icon-"].pull-left { margin-right: .3em; } [class^="icon-"].pull-right, [class*=" icon-"].pull-right { margin-left: .3em; } /* BOOTSTRAP SPECIFIC CLASSES * -------------------------- */ /* Bootstrap 2.0 sprites.less reset */ [class^="icon-"], [class*=" icon-"] { display: inline; width: auto; height: auto; line-height: normal; vertical-align: baseline; background-image: none; background-position: 0% 0%; background-repeat: repeat; margin-top: 0; } /* more sprites.less reset */ .icon-white, .nav-pills > .active > a > [class^="icon-"], .nav-pills > .active > a > [class*=" icon-"], .nav-list > .active > a > [class^="icon-"], .nav-list > .active > a > [class*=" icon-"], .navbar-inverse .nav > .active > a > [class^="icon-"], .navbar-inverse .nav > .active > a > [class*=" icon-"], .dropdown-menu > li > a:hover > [class^="icon-"], .dropdown-menu > li > a:hover > [class*=" icon-"], .dropdown-menu > .active > a > [class^="icon-"], .dropdown-menu > .active > a > [class*=" icon-"], .dropdown-submenu:hover > a > [class^="icon-"], .dropdown-submenu:hover > a > [class*=" icon-"] { background-image: none; } /* keeps Bootstrap styles with and without icons the same */ .btn [class^="icon-"].icon-large, .nav [class^="icon-"].icon-large, .btn [class*=" icon-"].icon-large, .nav [class*=" icon-"].icon-large { line-height: .9em; } .btn [class^="icon-"].icon-spin, .nav [class^="icon-"].icon-spin, .btn [class*=" icon-"].icon-spin, .nav [class*=" icon-"].icon-spin { display: inline-block; } .nav-tabs [class^="icon-"], .nav-pills [class^="icon-"], .nav-tabs [class*=" icon-"], .nav-pills [class*=" icon-"], .nav-tabs [class^="icon-"].icon-large, .nav-pills [class^="icon-"].icon-large, .nav-tabs [class*=" icon-"].icon-large, .nav-pills [class*=" icon-"].icon-large { line-height: .9em; } .btn [class^="icon-"].pull-left.icon-2x, .btn [class*=" icon-"].pull-left.icon-2x, .btn [class^="icon-"].pull-right.icon-2x, .btn [class*=" icon-"].pull-right.icon-2x { margin-top: .18em; } .btn [class^="icon-"].icon-spin.icon-large, .btn [class*=" icon-"].icon-spin.icon-large { line-height: .8em; } .btn.btn-small [class^="icon-"].pull-left.icon-2x, .btn.btn-small [class*=" icon-"].pull-left.icon-2x, .btn.btn-small [class^="icon-"].pull-right.icon-2x, .btn.btn-small [class*=" icon-"].pull-right.icon-2x { margin-top: .25em; } .btn.btn-large [class^="icon-"], .btn.btn-large [class*=" icon-"] { margin-top: 0; } .btn.btn-large [class^="icon-"].pull-left.icon-2x, .btn.btn-large [class*=" icon-"].pull-left.icon-2x, .btn.btn-large [class^="icon-"].pull-right.icon-2x, .btn.btn-large [class*=" icon-"].pull-right.icon-2x { margin-top: .05em; } .btn.btn-large [class^="icon-"].pull-left.icon-2x, .btn.btn-large [class*=" icon-"].pull-left.icon-2x { margin-right: .2em; } .btn.btn-large [class^="icon-"].pull-right.icon-2x, .btn.btn-large [class*=" icon-"].pull-right.icon-2x { margin-left: .2em; } /* Fixes alignment in nav lists */ .nav-list [class^="icon-"], .nav-list [class*=" icon-"] { line-height: inherit; } /* EXTRAS * -------------------------- */ /* Stacked and layered icon */ .icon-stack { position: relative; display: inline-block; width: 2em; height: 2em; line-height: 2em; vertical-align: -35%; } .icon-stack [class^="icon-"], .icon-stack [class*=" icon-"] { display: block; text-align: center; position: absolute; width: 100%; height: 100%; font-size: 1em; line-height: inherit; *line-height: 2em; } .icon-stack .icon-stack-base { font-size: 2em; *line-height: 1em; } /* Animated rotating icon */ .icon-spin { display: inline-block; -moz-animation: spin 2s infinite linear; -o-animation: spin 2s infinite linear; -webkit-animation: spin 2s infinite linear; animation: spin 2s infinite linear; } /* Prevent stack and spinners from being taken inline when inside a link */ a .icon-stack, a .icon-spin { display: inline-block; text-decoration: none; } @-moz-keyframes spin { 0% { -moz-transform: rotate(0deg); } 100% { -moz-transform: rotate(359deg); } } @-webkit-keyframes spin { 0% { -webkit-transform: rotate(0deg); } 100% { -webkit-transform: rotate(359deg); } } @-o-keyframes spin { 0% { -o-transform: rotate(0deg); } 100% { -o-transform: rotate(359deg); } } @-ms-keyframes spin { 0% { -ms-transform: rotate(0deg); } 100% { -ms-transform: rotate(359deg); } } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(359deg); } } /* Icon rotations and mirroring */ .icon-rotate-90:before { -webkit-transform: rotate(90deg); -moz-transform: rotate(90deg); -ms-transform: rotate(90deg); -o-transform: rotate(90deg); transform: rotate(90deg); filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); } .icon-rotate-180:before { -webkit-transform: rotate(180deg); -moz-transform: rotate(180deg); -ms-transform: rotate(180deg); -o-transform: rotate(180deg); transform: rotate(180deg); filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2); } .icon-rotate-270:before { -webkit-transform: rotate(270deg); -moz-transform: rotate(270deg); -ms-transform: rotate(270deg); -o-transform: rotate(270deg); transform: rotate(270deg); filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); } .icon-flip-horizontal:before { -webkit-transform: scale(-1, 1); -moz-transform: scale(-1, 1); -ms-transform: scale(-1, 1); -o-transform: scale(-1, 1); transform: scale(-1, 1); } .icon-flip-vertical:before { -webkit-transform: scale(1, -1); -moz-transform: scale(1, -1); -ms-transform: scale(1, -1); -o-transform: scale(1, -1); transform: scale(1, -1); } /* ensure rotation occurs inside anchor tags */ a .icon-rotate-90:before, a .icon-rotate-180:before, a .icon-rotate-270:before, a .icon-flip-horizontal:before, a .icon-flip-vertical:before { display: inline-block; } /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen readers do not read off random characters that represent icons */ .icon-glass:before { content: "\f000"; } .icon-music:before { content: "\f001"; } .icon-search:before { content: "\f002"; } .icon-envelope-alt:before { content: "\f003"; } .icon-heart:before { content: "\f004"; } .icon-star:before { content: "\f005"; } .icon-star-empty:before { content: "\f006"; } .icon-user:before { content: "\f007"; } .icon-film:before { content: "\f008"; } .icon-th-large:before { content: "\f009"; } .icon-th:before { content: "\f00a"; } .icon-th-list:before { content: "\f00b"; } .icon-ok:before { content: "\f00c"; } .icon-remove:before { content: "\f00d"; } .icon-zoom-in:before { content: "\f00e"; } .icon-zoom-out:before { content: "\f010"; } .icon-power-off:before, .icon-off:before { content: "\f011"; } .icon-signal:before { content: "\f012"; } .icon-gear:before, .icon-cog:before { content: "\f013"; } .icon-trash:before { content: "\f014"; } .icon-home:before { content: "\f015"; } .icon-file-alt:before { content: "\f016"; } .icon-time:before { content: "\f017"; } .icon-road:before { content: "\f018"; } .icon-download-alt:before { content: "\f019"; } .icon-download:before { content: "\f01a"; } .icon-upload:before { content: "\f01b"; } .icon-inbox:before { content: "\f01c"; } .icon-play-circle:before { content: "\f01d"; } .icon-rotate-right:before, .icon-repeat:before { content: "\f01e"; } .icon-refresh:before { content: "\f021"; } .icon-list-alt:before { content: "\f022"; } .icon-lock:before { content: "\f023"; } .icon-flag:before { content: "\f024"; } .icon-headphones:before { content: "\f025"; } .icon-volume-off:before { content: "\f026"; } .icon-volume-down:before { content: "\f027"; } .icon-volume-up:before { content: "\f028"; } .icon-qrcode:before { content: "\f029"; } .icon-barcode:before { content: "\f02a"; } .icon-tag:before { content: "\f02b"; } .icon-tags:before { content: "\f02c"; } .icon-book:before { content: "\f02d"; } .icon-bookmark:before { content: "\f02e"; } .icon-print:before { content: "\f02f"; } .icon-camera:before { content: "\f030"; } .icon-font:before { content: "\f031"; } .icon-bold:before { content: "\f032"; } .icon-italic:before { content: "\f033"; } .icon-text-height:before { content: "\f034"; } .icon-text-width:before { content: "\f035"; } .icon-align-left:before { content: "\f036"; } .icon-align-center:before { content: "\f037"; } .icon-align-right:before { content: "\f038"; } .icon-align-justify:before { content: "\f039"; } .icon-list:before { content: "\f03a"; } .icon-indent-left:before { content: "\f03b"; } .icon-indent-right:before { content: "\f03c"; } .icon-facetime-video:before { content: "\f03d"; } .icon-picture:before { content: "\f03e"; } .icon-pencil:before { content: "\f040"; } .icon-map-marker:before { content: "\f041"; } .icon-adjust:before { content: "\f042"; } .icon-tint:before { content: "\f043"; } .icon-edit:before { content: "\f044"; } .icon-share:before { content: "\f045"; } .icon-check:before { content: "\f046"; } .icon-move:before { content: "\f047"; } .icon-step-backward:before { content: "\f048"; } .icon-fast-backward:before { content: "\f049"; } .icon-backward:before { content: "\f04a"; } .icon-play:before { content: "\f04b"; } .icon-pause:before { content: "\f04c"; } .icon-stop:before { content: "\f04d"; } .icon-forward:before { content: "\f04e"; } .icon-fast-forward:before { content: "\f050"; } .icon-step-forward:before { content: "\f051"; } .icon-eject:before { content: "\f052"; } .icon-chevron-left:before { content: "\f053"; } .icon-chevron-right:before { content: "\f054"; } .icon-plus-sign:before { content: "\f055"; } .icon-minus-sign:before { content: "\f056"; } .icon-remove-sign:before { content: "\f057"; } .icon-ok-sign:before { content: "\f058"; } .icon-question-sign:before { content: "\f059"; } .icon-info-sign:before { content: "\f05a"; } .icon-screenshot:before { content: "\f05b"; } .icon-remove-circle:before { content: "\f05c"; } .icon-ok-circle:before { content: "\f05d"; } .icon-ban-circle:before { content: "\f05e"; } .icon-arrow-left:before { content: "\f060"; } .icon-arrow-right:before { content: "\f061"; } .icon-arrow-up:before { content: "\f062"; } .icon-arrow-down:before { content: "\f063"; } .icon-mail-forward:before, .icon-share-alt:before { content: "\f064"; } .icon-resize-full:before { content: "\f065"; } .icon-resize-small:before { content: "\f066"; } .icon-plus:before { content: "\f067"; } .icon-minus:before { content: "\f068"; } .icon-asterisk:before { content: "\f069"; } .icon-exclamation-sign:before { content: "\f06a"; } .icon-gift:before { content: "\f06b"; } .icon-leaf:before { content: "\f06c"; } .icon-fire:before { content: "\f06d"; } .icon-eye-open:before { content: "\f06e"; } .icon-eye-close:before { content: "\f070"; } .icon-warning-sign:before { content: "\f071"; } .icon-plane:before { content: "\f072"; } .icon-calendar:before { content: "\f073"; } .icon-random:before { content: "\f074"; } .icon-comment:before { content: "\f075"; } .icon-magnet:before { content: "\f076"; } .icon-chevron-up:before { content: "\f077"; } .icon-chevron-down:before { content: "\f078"; } .icon-retweet:before { content: "\f079"; } .icon-shopping-cart:before { content: "\f07a"; } .icon-folder-close:before { content: "\f07b"; } .icon-folder-open:before { content: "\f07c"; } .icon-resize-vertical:before { content: "\f07d"; } .icon-resize-horizontal:before { content: "\f07e"; } .icon-bar-chart:before { content: "\f080"; } .icon-twitter-sign:before { content: "\f081"; } .icon-facebook-sign:before { content: "\f082"; } .icon-camera-retro:before { content: "\f083"; } .icon-key:before { content: "\f084"; } .icon-gears:before, .icon-cogs:before { content: "\f085"; } .icon-comments:before { content: "\f086"; } .icon-thumbs-up-alt:before { content: "\f087"; } .icon-thumbs-down-alt:before { content: "\f088"; } .icon-star-half:before { content: "\f089"; } .icon-heart-empty:before { content: "\f08a"; } .icon-signout:before { content: "\f08b"; } .icon-linkedin-sign:before { content: "\f08c"; } .icon-pushpin:before { content: "\f08d"; } .icon-external-link:before { content: "\f08e"; } .icon-signin:before { content: "\f090"; } .icon-trophy:before { content: "\f091"; } .icon-github-sign:before { content: "\f092"; } .icon-upload-alt:before { content: "\f093"; } .icon-lemon:before { content: "\f094"; } .icon-phone:before { content: "\f095"; } .icon-unchecked:before, .icon-check-empty:before { content: "\f096"; } .icon-bookmark-empty:before { content: "\f097"; } .icon-phone-sign:before { content: "\f098"; } .icon-twitter:before { content: "\f099"; } .icon-facebook:before { content: "\f09a"; } .icon-github:before { content: "\f09b"; } .icon-unlock:before { content: "\f09c"; } .icon-credit-card:before { content: "\f09d"; } .icon-rss:before { content: "\f09e"; } .icon-hdd:before { content: "\f0a0"; } .icon-bullhorn:before { content: "\f0a1"; } .icon-bell:before { content: "\f0a2"; } .icon-certificate:before { content: "\f0a3"; } .icon-hand-right:before { content: "\f0a4"; } .icon-hand-left:before { content: "\f0a5"; } .icon-hand-up:before { content: "\f0a6"; } .icon-hand-down:before { content: "\f0a7"; } .icon-circle-arrow-left:before { content: "\f0a8"; } .icon-circle-arrow-right:before { content: "\f0a9"; } .icon-circle-arrow-up:before { content: "\f0aa"; } .icon-circle-arrow-down:before { content: "\f0ab"; } .icon-globe:before { content: "\f0ac"; } .icon-wrench:before { content: "\f0ad"; } .icon-tasks:before { content: "\f0ae"; } .icon-filter:before { content: "\f0b0"; } .icon-briefcase:before { content: "\f0b1"; } .icon-fullscreen:before { content: "\f0b2"; } .icon-group:before { content: "\f0c0"; } .icon-link:before { content: "\f0c1"; } .icon-cloud:before { content: "\f0c2"; } .icon-beaker:before { content: "\f0c3"; } .icon-cut:before { content: "\f0c4"; } .icon-copy:before { content: "\f0c5"; } .icon-paperclip:before, .icon-paper-clip:before { content: "\f0c6"; } .icon-save:before { content: "\f0c7"; } .icon-sign-blank:before { content: "\f0c8"; } .icon-reorder:before { content: "\f0c9"; } .icon-list-ul:before { content: "\f0ca"; } .icon-list-ol:before { content: "\f0cb"; } .icon-strikethrough:before { content: "\f0cc"; } .icon-underline:before { content: "\f0cd"; } .icon-table:before { content: "\f0ce"; } .icon-magic:before { content: "\f0d0"; } .icon-truck:before { content: "\f0d1"; } .icon-pinterest:before { content: "\f0d2"; } .icon-pinterest-sign:before { content: "\f0d3"; } .icon-google-plus-sign:before { content: "\f0d4"; } .icon-google-plus:before { content: "\f0d5"; } .icon-money:before { content: "\f0d6"; } .icon-caret-down:before { content: "\f0d7"; } .icon-caret-up:before { content: "\f0d8"; } .icon-caret-left:before { content: "\f0d9"; } .icon-caret-right:before { content: "\f0da"; } .icon-columns:before { content: "\f0db"; } .icon-sort:before { content: "\f0dc"; } .icon-sort-down:before { content: "\f0dd"; } .icon-sort-up:before { content: "\f0de"; } .icon-envelope:before { content: "\f0e0"; } .icon-linkedin:before { content: "\f0e1"; } .icon-rotate-left:before, .icon-undo:before { content: "\f0e2"; } .icon-legal:before { content: "\f0e3"; } .icon-dashboard:before { content: "\f0e4"; } .icon-comment-alt:before { content: "\f0e5"; } .icon-comments-alt:before { content: "\f0e6"; } .icon-bolt:before { content: "\f0e7"; } .icon-sitemap:before { content: "\f0e8"; } .icon-umbrella:before { content: "\f0e9"; } .icon-paste:before { content: "\f0ea"; } .icon-lightbulb:before { content: "\f0eb"; } .icon-exchange:before { content: "\f0ec"; } .icon-cloud-download:before { content: "\f0ed"; } .icon-cloud-upload:before { content: "\f0ee"; } .icon-user-md:before { content: "\f0f0"; } .icon-stethoscope:before { content: "\f0f1"; } .icon-suitcase:before { content: "\f0f2"; } .icon-bell-alt:before { content: "\f0f3"; } .icon-coffee:before { content: "\f0f4"; } .icon-food:before { content: "\f0f5"; } .icon-file-text-alt:before { content: "\f0f6"; } .icon-building:before { content: "\f0f7"; } .icon-hospital:before { content: "\f0f8"; } .icon-ambulance:before { content: "\f0f9"; } .icon-medkit:before { content: "\f0fa"; } .icon-fighter-jet:before { content: "\f0fb"; } .icon-beer:before { content: "\f0fc"; } .icon-h-sign:before { content: "\f0fd"; } .icon-plus-sign-alt:before { content: "\f0fe"; } .icon-double-angle-left:before { content: "\f100"; } .icon-double-angle-right:before { content: "\f101"; } .icon-double-angle-up:before { content: "\f102"; } .icon-double-angle-down:before { content: "\f103"; } .icon-angle-left:before { content: "\f104"; } .icon-angle-right:before { content: "\f105"; } .icon-angle-up:before { content: "\f106"; } .icon-angle-down:before { content: "\f107"; } .icon-desktop:before { content: "\f108"; } .icon-laptop:before { content: "\f109"; } .icon-tablet:before { content: "\f10a"; } .icon-mobile-phone:before { content: "\f10b"; } .icon-circle-blank:before { content: "\f10c"; } .icon-quote-left:before { content: "\f10d"; } .icon-quote-right:before { content: "\f10e"; } .icon-spinner:before { content: "\f110"; } .icon-circle:before { content: "\f111"; } .icon-mail-reply:before, .icon-reply:before { content: "\f112"; } .icon-github-alt:before { content: "\f113"; } .icon-folder-close-alt:before { content: "\f114"; } .icon-folder-open-alt:before { content: "\f115"; } .icon-expand-alt:before { content: "\f116"; } .icon-collapse-alt:before { content: "\f117"; } .icon-smile:before { content: "\f118"; } .icon-frown:before { content: "\f119"; } .icon-meh:before { content: "\f11a"; } .icon-gamepad:before { content: "\f11b"; } .icon-keyboard:before { content: "\f11c"; } .icon-flag-alt:before { content: "\f11d"; } .icon-flag-checkered:before { content: "\f11e"; } .icon-terminal:before { content: "\f120"; } .icon-code:before { content: "\f121"; } .icon-reply-all:before { content: "\f122"; } .icon-mail-reply-all:before { content: "\f122"; } .icon-star-half-full:before, .icon-star-half-empty:before { content: "\f123"; } .icon-location-arrow:before { content: "\f124"; } .icon-crop:before { content: "\f125"; } .icon-code-fork:before { content: "\f126"; } .icon-unlink:before { content: "\f127"; } .icon-question:before { content: "\f128"; } .icon-info:before { content: "\f129"; } .icon-exclamation:before { content: "\f12a"; } .icon-superscript:before { content: "\f12b"; } .icon-subscript:before { content: "\f12c"; } .icon-eraser:before { content: "\f12d"; } .icon-puzzle-piece:before { content: "\f12e"; } .icon-microphone:before { content: "\f130"; } .icon-microphone-off:before { content: "\f131"; } .icon-shield:before { content: "\f132"; } .icon-calendar-empty:before { content: "\f133"; } .icon-fire-extinguisher:before { content: "\f134"; } .icon-rocket:before { content: "\f135"; } .icon-maxcdn:before { content: "\f136"; } .icon-chevron-sign-left:before { content: "\f137"; } .icon-chevron-sign-right:before { content: "\f138"; } .icon-chevron-sign-up:before { content: "\f139"; } .icon-chevron-sign-down:before { content: "\f13a"; } .icon-html5:before { content: "\f13b"; } .icon-css3:before { content: "\f13c"; } .icon-anchor:before { content: "\f13d"; } .icon-unlock-alt:before { content: "\f13e"; } .icon-bullseye:before { content: "\f140"; } .icon-ellipsis-horizontal:before { content: "\f141"; } .icon-ellipsis-vertical:before { content: "\f142"; } .icon-rss-sign:before { content: "\f143"; } .icon-play-sign:before { content: "\f144"; } .icon-ticket:before { content: "\f145"; } .icon-minus-sign-alt:before { content: "\f146"; } .icon-check-minus:before { content: "\f147"; } .icon-level-up:before { content: "\f148"; } .icon-level-down:before { content: "\f149"; } .icon-check-sign:before { content: "\f14a"; } .icon-edit-sign:before { content: "\f14b"; } .icon-external-link-sign:before { content: "\f14c"; } .icon-share-sign:before { content: "\f14d"; } .icon-compass:before { content: "\f14e"; } .icon-collapse:before { content: "\f150"; } .icon-collapse-top:before { content: "\f151"; } .icon-expand:before { content: "\f152"; } .icon-euro:before, .icon-eur:before { content: "\f153"; } .icon-gbp:before { content: "\f154"; } .icon-dollar:before, .icon-usd:before { content: "\f155"; } .icon-rupee:before, .icon-inr:before { content: "\f156"; } .icon-yen:before, .icon-jpy:before { content: "\f157"; } .icon-renminbi:before, .icon-cny:before { content: "\f158"; } .icon-won:before, .icon-krw:before { content: "\f159"; } .icon-bitcoin:before, .icon-btc:before { content: "\f15a"; } .icon-file:before { content: "\f15b"; } .icon-file-text:before { content: "\f15c"; } .icon-sort-by-alphabet:before { content: "\f15d"; } .icon-sort-by-alphabet-alt:before { content: "\f15e"; } .icon-sort-by-attributes:before { content: "\f160"; } .icon-sort-by-attributes-alt:before { content: "\f161"; } .icon-sort-by-order:before { content: "\f162"; } .icon-sort-by-order-alt:before { content: "\f163"; } .icon-thumbs-up:before { content: "\f164"; } .icon-thumbs-down:before { content: "\f165"; } .icon-youtube-sign:before { content: "\f166"; } .icon-youtube:before { content: "\f167"; } .icon-xing:before { content: "\f168"; } .icon-xing-sign:before { content: "\f169"; } .icon-youtube-play:before { content: "\f16a"; } .icon-dropbox:before { content: "\f16b"; } .icon-stackexchange:before { content: "\f16c"; } .icon-instagram:before { content: "\f16d"; } .icon-flickr:before { content: "\f16e"; } .icon-adn:before { content: "\f170"; } .icon-bitbucket:before { content: "\f171"; } .icon-bitbucket-sign:before { content: "\f172"; } .icon-tumblr:before { content: "\f173"; } .icon-tumblr-sign:before { content: "\f174"; } .icon-long-arrow-down:before { content: "\f175"; } .icon-long-arrow-up:before { content: "\f176"; } .icon-long-arrow-left:before { content: "\f177"; } .icon-long-arrow-right:before { content: "\f178"; } .icon-apple:before { content: "\f179"; } .icon-windows:before { content: "\f17a"; } .icon-android:before { content: "\f17b"; } .icon-linux:before { content: "\f17c"; } .icon-dribbble:before { content: "\f17d"; } .icon-skype:before { content: "\f17e"; } .icon-foursquare:before { content: "\f180"; } .icon-trello:before { content: "\f181"; } .icon-female:before { content: "\f182"; } .icon-male:before { content: "\f183"; } .icon-gittip:before { content: "\f184"; } .icon-sun:before { content: "\f185"; } .icon-moon:before { content: "\f186"; } .icon-archive:before { content: "\f187"; } .icon-bug:before { content: "\f188"; } .icon-vk:before { content: "\f189"; } .icon-weibo:before { content: "\f18a"; } .icon-renren:before { content: "\f18b"; } PKZH]J$$custom-color.cssnu[/* dark mode time issue */ /* body.custom-color { background: linear-gradient(141.55deg, rgba(240, 244, 243, 0) 3.46%, #f0f4f3 99.86%); } */ body.custom-color .bg-primary { background: linear-gradient(141.55deg, var(--color-customColor) 3.46%, var(--color-customColor) 99.86%), var(--color-customColor) !important; } body.custom-color .dash-header .drp-language .drp-text, body.custom-color .dash-header .dash-head-link > i:not(.nocolor) { color: var(--color-customColor); } body.custom-color .dash-header .drp-company .theme-avtar { background: #e9d5e7; color: var(--color-customColor); } body.custom-color .dash-sidebar.light-sidebar .dash-navbar > .dash-item.active > .dash-link, body.custom-color .dash-sidebar.light-sidebar .dash-navbar > .dash-item:active > .dash-link, body.custom-color .dash-sidebar.light-sidebar .dash-navbar > .dash-item:focus > .dash-link, body.custom-color .dash-sidebar.light-sidebar .dash-navbar > .dash-item:hover > .dash-link, body.custom-color .dash-sidebar .dash-navbar > .dash-item.active > .dash-link, body.custom-color .dash-sidebar .dash-navbar > .dash-item:active > .dash-link, body.custom-color .dash-sidebar .dash-navbar > .dash-item:focus > .dash-link, body.custom-color .dash-sidebar .dash-navbar > .dash-item:hover > .dash-link { background: linear-gradient(141.55deg, var(--color-customColor) 3.46%, var(--color-customColor) 99.86%), var(--color-customColor);; color: #fff; box-shadow: 0 5px 7px -1px rgba(146, 44, 136, 0.3); } body.custom-color .dash-sidebar.light-sidebar .dash-navbar > .dash-item.active > .dash-link i, body.custom-color .dash-sidebar.light-sidebar .dash-navbar > .dash-item:active > .dash-link i, body.custom-color .dash-sidebar.light-sidebar .dash-navbar > .dash-item:focus > .dash-link i, body.custom-color .dash-sidebar.light-sidebar .dash-navbar > .dash-item:hover > .dash-link i, body.custom-color .dash-sidebar .dash-navbar > .dash-item.active > .dash-link i, body.custom-color .dash-sidebar .dash-navbar > .dash-item:active > .dash-link i, body.custom-color .dash-sidebar .dash-navbar > .dash-item:focus > .dash-link i, body.custom-color .dash-sidebar .dash-navbar > .dash-item:hover > .dash-link i { color: var(--color-customColor);; } body.custom-color .dash-sidebar.light-sidebar .dash-item .dash-submenu .dash-item::before, body.custom-color .dash-sidebar .dash-item .dash-submenu .dash-item::before { border-right-color: var(--color-customColor); } body.custom-color .dash-sidebar.light-sidebar .dash-item .dash-submenu .dash-item.active > .dash-link, body.custom-color .dash-sidebar.light-sidebar .dash-item .dash-submenu .dash-item:active > .dash-link, body.custom-color .dash-sidebar.light-sidebar .dash-item .dash-submenu .dash-item:focus > .dash-link, body.custom-color .dash-sidebar.light-sidebar .dash-item .dash-submenu .dash-item:hover > .dash-link, body.custom-color .dash-sidebar .dash-item .dash-submenu .dash-item.active > .dash-link, body.custom-color .dash-sidebar .dash-item .dash-submenu .dash-item:active > .dash-link, body.custom-color .dash-sidebar .dash-item .dash-submenu .dash-item:focus > .dash-link, body.custom-color .dash-sidebar .dash-item .dash-submenu .dash-item:hover > .dash-link { color: var(--color-customColor); } body.custom-color a:not([class]) { color: var(--color-customColor); } body.custom-color a:not([class]):hover { color: var(--color-customColor); } body.custom-color .text-primary { color: var(--color-customColor) !important; } body.custom-color .list-group-item.active { background: linear-gradient(141.55deg, var(--color-customColor) 3.46%, var(--color-customColor) 99.86%), var(--color-customColor) !important; } body.custom-color .progress-bar:not([class*="bg-"]), body.custom-color .btn-primary { --bs-btn-color: #ffffff; --bs-btn-bg: var(--color-customColor); --bs-btn-border-color: var(--color-customColor); --bs-btn-hover-color: #ffffff; --bs-btn-hover-bg: var(--color-customColor); --bs-btn-hover-border-color: var(--color-customColor); --bs-btn-focus-shadow-rgb: 162, 76, 154; --bs-btn-active-color: #ffffff; --bs-btn-active-bg: var(--color-customColor); --bs-btn-active-border-color: var(--color-customColor); --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); --bs-btn-disabled-color: #ffffff; --bs-btn-disabled-bg: var(--color-customColor);; --bs-btn-disabled-border-color: var(--color-customColor); } body.custom-color .btn-outline-primary { --bs-btn-color: var(--color-customColor); --bs-btn-border-color: var(--color-customColor); --bs-btn-hover-color: #ffffff; --bs-btn-hover-bg: var(--color-customColor); --bs-btn-hover-border-color: var(--color-customColor); --bs-btn-focus-shadow-rgb: 146, 44, 136; --bs-btn-active-color: #ffffff; --bs-btn-active-bg: var(--color-customColor); --bs-btn-active-border-color: var(--color-customColor); --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); --bs-btn-disabled-color: var(--color-customColor); --bs-btn-disabled-bg: transparent; --bs-btn-disabled-border-color: var(--color-customColor); --bs-gradient: none; } body.custom-color .btn-light-primary { background: #e9d5e7; color: var(--color-customColor); border-color: #e9d5e7; } body.custom-color .btn-light-primary:hover { background: var(--color-customColor); color: #fff; border-color: var(--color-customColor); } body.custom-color .btn-light-primary.focus, body.custom-color .btn-light-primary:focus { background: var(--color-customColor); color: #fff; border-color: var(--color-customColor); } body.custom-color .btn-light-primary:not(:disabled):not(.disabled).active, body.custom-color .btn-light-primary:not(:disabled):not(.disabled):active, .show > body.custom-color .btn-light-primary.dropdown-toggle { background: var(--color-customColor); color: #fff; border-color: var(--color-customColor); } body.custom-color .btn-check:active + .btn-light-primary, body.custom-color .btn-check:checked + .btn-light-primary { background: var(--color-customColor); color: #fff; border-color: var(--color-customColor); } body.custom-color .alert-primary { --bs-alert-color: var(--color-customColor); --bs-alert-bg: #e9d5e7; --bs-alert-border-color: #dec0db; } body.custom-color .alert-primary .alert-link { color: #461542; } body.custom-color .badge.bg-light-primary { background: #e9d5e7; color: var(--color-customColor); border-color: #e9d5e7; } body.custom-color .page-item.active .page-link { background: var(--color-customColor); border-color: var(--color-customColor); } body.custom-color .nav-link { color: var(--color-customColor); } body.custom-color .nav-link:hover, body.custom-color .nav-link:focus { color: var(--color-customColor); } body.custom-color .nav-tabs .nav-link { background: none; } body.custom-color .nav-pills .nav-link { background: none; } body.custom-color .nav-pills .nav-link:focus, body.custom-color .nav-pills .nav-link.active, body.custom-color .nav-pills .show > .nav-link { color: #ffffff; background: linear-gradient(141.55deg, var(--color-customColor) 3.46%, var(--color-customColor) 99.86%), var(--color-customColor); } body.custom-color .form-check-input:focus, body.custom-color .form-select:focus, body.custom-color .form-control:focus, body.custom-color .custom-select:focus, body.custom-color .dataTable-selector:focus, body.custom-color .dataTable-input:focus { border-color: var(--color-customColor); box-shadow: 0 0 0 0.2rem var(--color-customColor); } body.custom-color .form-check-input:checked { background-color: var(--color-customColor); border-color: var(--color-customColor); } body.custom-color .form-range::-webkit-slider-thumb { background: var(--color-customColor); } body.custom-color .form-range::-webkit-slider-thumb:active { background: var(--color-customColor); } body.custom-color .form-range::-moz-range-thumb { background: var(--color-customColor); } body.custom-color .form-range::-moz-range-thumb:active { background: var(--color-customColor); } body.custom-color .form-check-input:checked { background-color: var(--color-customColor); border-color: var(--color-customColor); } body.custom-color .form-check-input[type="checkbox"]:indeterminate { background-color: var(--color-customColor); border-color: var(--color-customColor); } body.custom-color .form-check .form-check-input.input-primary:checked { background-color: var(--color-customColor); border-color: var(--color-customColor); } body.custom-color pre[class*="language-"] > code { border-left-color: var(--color-customColor); background-image: linear-gradient(transparent 50%, rgba(146, 44, 136, 0.04) 50%); } body.custom-color .card .card-header h5:after, body.custom-color .card .card-header .h5:after, body.custom-color .card .card-header .h5:after { background: var(--color-customColor); }PKZ$SP7G7Gbootstrap-rtl.cssnu[@charset "UTF-8"; /*! * Bootstrap RTL v1.3.0 (https://github.com/parsakafi/bootstrap-rtl) * Copyright 2020 Parsa Kafi (https://parsa.ws) * Licensed under MIT (https://github.com/parsakafi/bootstrap-rtl/blob/master/LICENSE) */ body { text-align: right; direction: rtl; } .offset-1 { margin-right: 8.333333%; margin-left: initial; } .offset-2 { margin-right: 16.666667%; margin-left: initial; } .offset-3 { margin-right: 25%; margin-left: initial; } .offset-4 { margin-right: 33.333333%; margin-left: initial; } .offset-5 { margin-right: 41.666667%; margin-left: initial; } .offset-6 { margin-right: 50%; margin-left: initial; } .offset-7 { margin-right: 58.333333%; margin-left: initial; } .offset-8 { margin-right: 66.666667%; margin-left: initial; } .offset-9 { margin-right: 75%; margin-left: initial; } .offset-10 { margin-right: 83.333333%; margin-left: initial; } .offset-11 { margin-right: 91.666667%; margin-left: initial; } @media (min-width: 576px) { .offset-sm-0 { margin-right: 0; margin-left: initial; } .offset-sm-1 { margin-right: 8.333333%; margin-left: initial; } .offset-sm-2 { margin-right: 16.666667%; margin-left: initial; } .offset-sm-3 { margin-right: 25%; margin-left: initial; } .offset-sm-4 { margin-right: 33.333333%; margin-left: initial; } .offset-sm-5 { margin-right: 41.666667%; margin-left: initial; } .offset-sm-6 { margin-right: 50%; margin-left: initial; } .offset-sm-7 { margin-right: 58.333333%; margin-left: initial; } .offset-sm-8 { margin-right: 66.666667%; margin-left: initial; } .offset-sm-9 { margin-right: 75%; margin-left: initial; } .offset-sm-10 { margin-right: 83.333333%; margin-left: initial; } .offset-sm-11 { margin-right: 91.666667%; margin-left: initial; } } @media (min-width: 768px) { .offset-md-0 { margin-right: 0; margin-left: initial; } .offset-md-1 { margin-right: 8.333333%; margin-left: initial; } .offset-md-2 { margin-right: 16.666667%; margin-left: initial; } .offset-md-3 { margin-right: 25%; margin-left: initial; } .offset-md-4 { margin-right: 33.333333%; margin-left: initial; } .offset-md-5 { margin-right: 41.666667%; margin-left: initial; } .offset-md-6 { margin-right: 50%; margin-left: initial; } .offset-md-7 { margin-right: 58.333333%; margin-left: initial; } .offset-md-8 { margin-right: 66.666667%; margin-left: initial; } .offset-md-9 { margin-right: 75%; margin-left: initial; } .offset-md-10 { margin-right: 83.333333%; margin-left: initial; } .offset-md-11 { margin-right: 91.666667%; margin-left: initial; } } @media (min-width: 992px) { .offset-lg-0 { margin-right: 0; margin-left: initial; } .offset-lg-1 { margin-right: 8.333333%; margin-left: initial; } .offset-lg-2 { margin-right: 16.666667%; margin-left: initial; } .offset-lg-3 { margin-right: 25%; margin-left: initial; } .offset-lg-4 { margin-right: 33.333333%; margin-left: initial; } .offset-lg-5 { margin-right: 41.666667%; margin-left: initial; } .offset-lg-6 { margin-right: 50%; margin-left: initial; } .offset-lg-7 { margin-right: 58.333333%; margin-left: initial; } .offset-lg-8 { margin-right: 66.666667%; margin-left: initial; } .offset-lg-9 { margin-right: 75%; margin-left: initial; } .offset-lg-10 { margin-right: 83.333333%; margin-left: initial; } .offset-lg-11 { margin-right: 91.666667%; margin-left: initial; } } @media (min-width: 1200px) { .offset-xl-0 { margin-right: 0; margin-left: initial; } .offset-xl-1 { margin-right: 8.333333%; margin-left: initial; } .offset-xl-2 { margin-right: 16.666667%; margin-left: initial; } .offset-xl-3 { margin-right: 25%; margin-left: initial; } .offset-xl-4 { margin-right: 33.333333%; margin-left: initial; } .offset-xl-5 { margin-right: 41.666667%; margin-left: initial; } .offset-xl-6 { margin-right: 50%; margin-left: initial; } .offset-xl-7 { margin-right: 58.333333%; margin-left: initial; } .offset-xl-8 { margin-right: 66.666667%; margin-left: initial; } .offset-xl-9 { margin-right: 75%; margin-left: initial; } .offset-xl-10 { margin-right: 83.333333%; margin-left: initial; } .offset-xl-11 { margin-right: 91.666667%; margin-left: initial; } } .list-unstyled { padding-right: 0; } .input-group > .custom-select:not(:last-child), .input-group > .form-control:not(:last-child), .input-group > .input-group-append:last-child > .input-group-text:not(:last-child), .input-group > .input-group-append:not(:last-child) > .btn, .input-group > .input-group-append:not(:last-child) > .input-group-text, .input-group > .input-group-prepend > .btn, .input-group > .input-group-prepend > .input-group-text, .input-group > .custom-file:not(:last-child) .custom-file-label { border-top-left-radius: 0; border-top-right-radius: 0.25rem; border-bottom-right-radius: 0.25rem; border-bottom-left-radius: 0; } .input-group > .custom-select:not(:first-child), .input-group > .form-control:not(:first-child), .input-group > .input-group-append > .btn, .input-group > .input-group-append > .input-group-text, .input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child), .input-group > .input-group-prepend:not(:first-child) > .btn, .input-group > .input-group-prepend:not(:first-child) > .input-group-text, .input-group > .custom-file:not(:first-child) .custom-file-label { border-top-left-radius: 0.25rem; border-top-right-radius: 0; border-bottom-right-radius: 0; border-bottom-left-radius: 0.25rem; } .input-group > .input-group-prepend:first-child > .btn:not(:first-child), .input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle) { border-top-right-radius: 0; border-bottom-right-radius: 0; } .input-group > .input-group-append:last-child > .btn:first-child:not(:last-child):not(.dropdown-toggle), .input-group > .form-control:not(:last-child):not(:first-child) { border-top-left-radius: 0; border-bottom-left-radius: 0; } .input-group > .custom-file:not(:last-child) .custom-file-label, .input-group > .custom-file:not(:last-child) .custom-file-label::after { border-bottom-left-radius: 0; border-top-left-radius: 0; } .input-group > .input-group-prepend > .input-group-text { margin-left: -1px; } .input-group > .input-group-append > .input-group-text { margin-right: -1px; } .form-check { padding-right: 1.25rem; padding-left: inherit; } .form-check-input { margin-right: -1.25rem; margin-left: 0; } .form-check-inline { padding-right: 0; margin-right: 0; margin-left: 0.75rem; } .form-check-inline .form-check-input { margin-right: 0; margin-left: .3125rem; } .form-control.is-valid, .was-validated .form-control:valid, .form-control.is-invalid, .was-validated .form-control:invalid { padding-right: 0.75rem; padding-left: calc(1.5em + .75rem); background-position: left calc(.375em + .1875rem) center; } .custom-select.is-invalid, .was-validated .custom-select:invalid { padding-right: 0.75rem; padding-left: calc(.75em + 2.3125rem); background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat left 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") #fff no-repeat center left 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem); } .custom-select.is-valid, .was-validated .custom-select:valid { padding-right: 0.75rem; padding-left: calc(.75em + 2.3125rem); background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat left 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center left 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem); } .was-validated textarea.form-control:invalid, textarea.form-control.is-invalid, .was-validated textarea.form-control:valid, textarea.form-control.is-valid { padding-right: 0.75rem; padding-left: calc(1.5em + .75rem); background-position: top calc(.375em + .1875rem) left calc(.375em + .1875rem); } .custom-control { padding-right: 1.5rem; padding-left: inherit; } .custom-control-input { right: 0; left: auto; } .custom-control-label::before, .custom-control-label::after { right: -1.5rem; left: auto; } .custom-select { padding: 0.375rem 0.75rem 0.375rem 1.75rem; background-position: left 0.75rem center; } .custom-file-label::after { right: auto; left: 0; border-right: inherit; border-left: none; border-radius: 0.25rem 0 0 0.25rem; } .custom-file-input:lang(en) ~ .custom-file-label::after { content: "انتخاب"; } .btn-group > .btn:last-child, .btn-group > .btn-group:last-child > .btn { border-top-left-radius: 0.25rem; border-top-right-radius: 0 !important; border-bottom-right-radius: 0 !important; border-bottom-left-radius: 0.25rem; } .btn-group > .btn:first-child, .btn-group > .btn-group:first-child > .btn { border-top-left-radius: 0; border-top-right-radius: 0.25rem !important; border-bottom-right-radius: 0.25rem !important; border-bottom-left-radius: 0; } .btn-group > .btn:first-child:first-of-type:last-of-type, .btn-group > .btn-group:first-child:last-child > .btn { border-radius: 0.25rem; } .dropdown-menu { right: 0 !important; left: auto !important; text-align: right; } .dropdown-toggle::after { margin-right: 0.255em; margin-left: 0; } .nav { padding-right: 0; } .navbar-nav { padding-right: 0; padding-left: initial; } .navbar-brand { margin-right: initial; margin-left: 1rem; } .breadcrumb-item + .breadcrumb-item { padding-right: 0.5rem; padding-left: 0; } .breadcrumb-item + .breadcrumb-item::before { padding-right: 0; padding-left: 0.5rem; } .page-item:first-child .page-link { border-top-left-radius: 0; border-bottom-left-radius: 0; border-top-right-radius: 0.25rem; border-bottom-right-radius: 0.25rem; margin-left: -1px; } .page-item:last-child .page-link { border-top-right-radius: 0; border-bottom-right-radius: 0; border-top-left-radius: 0.25rem; border-bottom-left-radius: 0.25rem; } .alert-dismissible { padding-right: 1.25rem; padding-left: 4rem; } .alert-dismissible .close { right: auto; left: 0; } .list-group { padding-right: 0; } .list-group-horizontal { flex-direction: row; } .list-group-horizontal > .list-group-item:first-child { border-top-right-radius: 0.25rem; border-top-left-radius: 0; border-bottom-right-radius: 0.25rem; border-bottom-left-radius: 0; } .list-group-horizontal > .list-group-item:last-child { border-top-right-radius: 0; border-top-left-radius: 0.25rem; border-bottom-right-radius: 0; border-bottom-left-radius: 0.25rem; } .list-group-horizontal > .list-group-item.active { margin-top: 0; } .list-group-horizontal > .list-group-item + .list-group-item { border-top-width: 1px; border-right-width: 0; border-left-width: 1px; } .list-group-horizontal > .list-group-item + .list-group-item.active { margin-left: -1px; border-left-width: 1px; } @media (min-width: 576px) { .list-group-horizontal-sm { flex-direction: row; } .list-group-horizontal-sm > .list-group-item:first-child { border-top-right-radius: 0.25rem; border-top-left-radius: 0; border-bottom-right-radius: 0.25rem; border-bottom-left-radius: 0; } .list-group-horizontal-sm > .list-group-item:last-child { border-top-right-radius: 0; border-top-left-radius: 0.25rem; border-bottom-right-radius: 0; border-bottom-left-radius: 0.25rem; } .list-group-horizontal-sm > .list-group-item.active { margin-top: 0; } .list-group-horizontal-sm > .list-group-item + .list-group-item { border-top-width: 1px; border-right-width: 0; border-left-width: 1px; } .list-group-horizontal-sm > .list-group-item + .list-group-item.active { margin-left: -1px; border-left-width: 1px; } } @media (min-width: 768px) { .list-group-horizontal-md { flex-direction: row; } .list-group-horizontal-md > .list-group-item:first-child { border-top-right-radius: 0.25rem; border-top-left-radius: 0; border-bottom-right-radius: 0.25rem; border-bottom-left-radius: 0; } .list-group-horizontal-md > .list-group-item:last-child { border-top-right-radius: 0; border-top-left-radius: 0.25rem; border-bottom-right-radius: 0; border-bottom-left-radius: 0.25rem; } .list-group-horizontal-md > .list-group-item.active { margin-top: 0; } .list-group-horizontal-md > .list-group-item + .list-group-item { border-top-width: 1px; border-right-width: 0; border-left-width: 1px; } .list-group-horizontal-md > .list-group-item + .list-group-item.active { margin-left: -1px; border-left-width: 1px; } } @media (min-width: 992px) { .list-group-horizontal-lg { flex-direction: row; } .list-group-horizontal-lg > .list-group-item:first-child { border-top-right-radius: 0.25rem; border-top-left-radius: 0; border-bottom-right-radius: 0.25rem; border-bottom-left-radius: 0; } .list-group-horizontal-lg > .list-group-item:last-child { border-top-right-radius: 0; border-top-left-radius: 0.25rem; border-bottom-right-radius: 0; border-bottom-left-radius: 0.25rem; } .list-group-horizontal-lg > .list-group-item.active { margin-top: 0; } .list-group-horizontal-lg > .list-group-item + .list-group-item { border-top-width: 1px; border-right-width: 0; border-left-width: 1px; } .list-group-horizontal-lg > .list-group-item + .list-group-item.active { margin-left: -1px; border-left-width: 1px; } } @media (min-width: 1200px) { .list-group-horizontal-xl { flex-direction: row; } .list-group-horizontal-xl > .list-group-item:first-child { border-top-right-radius: 0.25rem; border-top-left-radius: 0; border-bottom-right-radius: 0.25rem; border-bottom-left-radius: 0; } .list-group-horizontal-xl > .list-group-item:last-child { border-top-right-radius: 0; border-top-left-radius: 0.25rem; border-bottom-right-radius: 0; border-bottom-left-radius: 0.25rem; } .list-group-horizontal-xl > .list-group-item.active { margin-top: 0; } .list-group-horizontal-xl > .list-group-item + .list-group-item { border-top-width: 1px; border-right-width: 0; border-left-width: 1px; } .list-group-horizontal-xl > .list-group-item + .list-group-item.active { margin-left: -1px; border-left-width: 1px; } } .toast { display: none; } .modal-header .close { margin: -1rem auto -1rem -1rem; } .carousel-control-next { right: auto; left: 0; } .carousel-control-prev { right: 0; left: auto; } .carousel-control-next-icon, .carousel-control-prev-icon { transform: rotate(180deg); } .carousel-indicators { padding-right: 0; } /*# sourceMappingURL=bootstrap-rtl.css.map */ /*-----------------------Custom Css---------_*/ .custom-sidenav { right: 0 } .application .sidenav.custom-sidenav.show + .main-content { margin-left: 0 !important; margin-right: 250px !important; padding-left: 0 !important; } .application .sidenav.show { z-index: 1130; height: 100%; background: #011c4b; border-radius: 25px 0 0 25px; } .scrollbar-inner .scroll-element.scroll-y { width: 3px; left: 0 !important; } .scrollbar-inner > .scroll-element.scroll-y { height: 100%; left: 3px !important; } .scrollbar-inner .scroll-element.scroll-y { width: 3px; right: unset; } /*-----------------custom css-----------------------*/ .fas { margin-left: 4px; } .nav-link img { margin-right: -12px !important; } .dataTables_wrapper .dataTables_filter label:before { right: unset; left: 11px; } .dataTables_wrapper .dataTables_length select { text-indent: 7px; } .nav-tabs .nav-item:last-child { margin-right: 10px; } PKZ gg summernote/summernote-bs4.min.jsnu[/*! Summernote v0.8.9 | (c) 2013- Alan Hong and other contributors | MIT license */ !function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(require("jquery")):"function"==typeof define&&define.amd?define(["jquery"],e):e(t.jQuery)}(this,function(t){"use strict";t=t&&t.hasOwnProperty("default")?t.default:t;var e=function(){function e(t,e,o,n){this.markup=t,this.children=e,this.options=o,this.callback=n}return e.prototype.render=function(e){var o=t(this.markup);if(this.options&&this.options.contents&&o.html(this.options.contents),this.options&&this.options.className&&o.addClass(this.options.className),this.options&&this.options.data&&t.each(this.options.data,function(t,e){o.attr("data-"+t,e)}),this.options&&this.options.click&&o.on("click",this.options.click),this.children){var n=o.find(".note-children-container");this.children.forEach(function(t){t.render(n.length?n:o)})}return this.callback&&this.callback(o,this.options),this.options&&this.options.callback&&this.options.callback(o),e&&e.append(o),o},e}(),o=function(o,n){return function(){var i="object"==typeof arguments[1]?arguments[1]:arguments[0],r=t.isArray(arguments[0])?arguments[0]:[];return i&&i.children&&(r=i.children),new e(o,r,i,n)}},n=o('
'),i=o('
'),r=o('
'),s=o('