Plugin Directory

Changeset 3061831

Timestamp:
03/31/2024 11:58:18 PM (4 months ago)
Author:
realwebcare
Message:

Committing RWC Team Members v0.2

Location:
rwc-team-members/trunk
Files:
40 edited

Legend:

Unmodified
Added
Removed
  • rwc-team-members/trunk/action/activate-plugin.php

    r3050730 r3061831  
    99 * behavior of the plugin. Make sure to proceed with caution.
    1010 *
    11  * @package RWC Team Members - v0.1 - 14 March, 2024
     11 * @package RWC Team Members - v0., 2024
    1212 */
    1313if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
     
    1616    function rwctm_plugin_activation_values() {
    1717        $rwctm_globals = get_option('rwctm_global_options', 'default_value');
     18
     19
     20
     21
    1822
    1923        // Checking global options exist or not
  • rwc-team-members/trunk/action/init-functions.php

    r3050730 r3061831  
    1010 * as they collectively ensure a smooth and error-free activation process.
    1111 *
    12  * @package RWC Team Members - v0.1 - 14 March, 2024
     12 * @package RWC Team Members - v0., 2024
    1313 */
    1414if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
     
    5454    }
    5555}
     56
     57
     58
     59
     60
     61
     62
     63
     64
     65
     66
     67
     68
     69
     70
     71
     72
     73
     74
     75
     76
     77
     78
     79
     80
     81
     82
     83
     84
     85
     86
     87
     88
     89
     90
     91
     92
     93
     94
     95
     96
     97
     98
     99
     100
     101
     102
     103
     104
     105
     106
     107
     108
     109
     110
    56111
    57112/**
  • rwc-team-members/trunk/action/team-enqueue.php

    r3050730 r3061831  
    88 * enhancing performance and maintaining a seamless user experience.
    99 *
    10  * @package RWC Team Members - v0.1 - 14 March, 2024
     10 * @package RWC Team Members - v0., 2024
    1111 */
    1212if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
     
    2828        }
    2929        wp_register_script('selectize', plugins_url( '../assets/js/selectize.min.js', __FILE__ ), array('jquery'), '0.15.2', true);
    30         wp_register_script('rwctmjs', plugins_url( '../assets/js/rwctm-admin.js', __FILE__ ), array('jquery'), '0.1', true);
     30        wp_register_script('rwctmjs', plugins_url( '../assets/js/rwctm-admin.js', __FILE__ ), array('jquery'), '0.', true);
    3131        wp_enqueue_script('selectize');
    3232        wp_enqueue_script('rwctmjs');
     
    4343        ) );
    4444        wp_localize_script('jquery', 'rwctm_cm_settings', $rwctm_cm_settings);
    45         wp_enqueue_style('rwctmscone', plugins_url( '../assets/css/rwctm-style.min.css', __FILE__ ), '', '0.1');
    46         wp_enqueue_style('rwctmadmin', plugins_url( '../assets/css/rwctm-admin.min.css', __FILE__ ), '', '0.1');
     45        wp_enqueue_style('rwctmscone', plugins_url( '../assets/css/rwctm-style.min.css', __FILE__ ), '', '0.');
     46        wp_enqueue_style('rwctmadmin', plugins_url( '../assets/css/rwctm-admin.min.css', __FILE__ ), '', '0.');
    4747        wp_enqueue_style('selectize', plugins_url( '../assets/css/selectize.min.css', __FILE__ ), '', '0.15.2');
    4848        wp_enqueue_style('jquery-ui-rwctm', plugins_url( '../assets/css/jquery-ui-rwctm.css', __FILE__ ), '', '1.10.4');
     
    5656        file_put_contents($output_path, $css_code);
    5757        // enqueue the CSS file
    58         wp_enqueue_style('rwctmcustom', plugins_url( '../assets/css/rwctm-custom.css', __FILE__ ), array(), '0.1');
     58        wp_enqueue_style('rwctmcustom', plugins_url( '../assets/css/rwctm-custom.css', __FILE__ ), array(), '0.');
    5959    }
    6060}
     
    7979            }
    8080        }
    81         wp_register_script('rwctm-team', plugins_url( '../assets/js/rwctm-team.js', __FILE__ ), array('jquery'), '0.1', true);
     81        wp_register_script('rwctm-team', plugins_url( '../assets/js/rwctm-team.js', __FILE__ ), array('jquery'), '0.', true);
    8282        wp_register_script('rwctm-slider', plugins_url( '../assets/js/rwctm-slider.js', __FILE__ ), array('jquery'), '1.8.1', true);
    8383        wp_enqueue_script('rwctm-team');
    8484        wp_enqueue_script('rwctm-slider');
    8585        wp_enqueue_style('rwctmslider', plugins_url( '../assets/css/rwctm-slider.css', __FILE__ ), '', '1.8.1');
    86         wp_enqueue_style('rwctmstyle', plugins_url( '../assets/css/rwctm-style.css', __FILE__ ), '', '0.1');
     86        wp_enqueue_style('rwctmstyle', plugins_url( '../assets/css/rwctm-style.css', __FILE__ ), '', '0.');
    8787        if(isset($rwctm_options['fasome']) && $rwctm_options['fasome'] == 'yes') {
    8888            wp_enqueue_style( 'dashicons' );
     
    109109                file_put_contents($output_path, $css_code);
    110110                // enqueue the CSS file
    111                 wp_enqueue_style('rwctmcustom-'.$page_id, plugins_url( 'assets/css/rwctm-custom-'.$page_id.'.css', RWCTM_AUF ), array(), '0.1');
     111                wp_enqueue_style('rwctmcustom-'.$page_id, plugins_url( 'assets/css/rwctm-custom-'.$page_id.'.css', RWCTM_AUF ), array(), '0.');
    112112            }
    113113        }
  • rwc-team-members/trunk/action/team-shortcode.php

    r3050730 r3061831  
    88 * and provides a seamless way to integrate the team's information into posts or pages.
    99 *
    10  * @package RWC Team Members - v0.1 - 14 March, 2024
     10 * @package RWC Team Members - v0., 2024
    1111 */
    1212if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
  • rwc-team-members/trunk/action/uninstall-plugin.php

    r3050730 r3061831  
    88 * after the plugin is removed.
    99 *
    10  * @package RWC Team Members - v0.1 - 14 March, 2024
     10 * @package RWC Team Members - v0., 2024
    1111 */
    1212if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
  • rwc-team-members/trunk/assets/css/jquery-ui-rwctm.css

    r3050730 r3061831  
    77 * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT
    88 *
    9  * @package RWC Team Members - v0.1 - 14 March, 2024
     9 * @package RWC Team Members - v0., 2024
    1010 */
    1111
  • rwc-team-members/trunk/assets/css/rwctm-admin.css

    r3050730 r3061831  
    77 * user-friendly interface for administrators.
    88 *
    9  * @package RWC Team Members - v0.1 - 14 March, 2024
     9 * @package RWC Team Members - v0., 2024
    1010 */
    1111.wrap .rwctm-clear{clear:both}
     
    697697#add_new_team .button.button-small{margin:0 0 0 -2px;font-size:12px;height:32px;line-height:32px}
    698698#add_new_team .button.button-small{margin-left:2px}
     699
     700
     701
     702
     703
     704
     705
    699706
    700707/* Responsive */
  • rwc-team-members/trunk/assets/css/rwctm-admin.min.css

    r3050730 r3061831  
    77 * user-friendly interface for administrators.
    88 *
    9  * @package RWC Team Members - v0.1 - 14 March, 2024
     9 * @package RWC Team Members - v0., 2024
    1010 */
    11 .wrap .rwctm-clear{clear:both}#add_new_team{width:100%}#add_new_team h2 a.add-new-h2{font-style:normal;font-size:14px;font-weight:700}#add_new_team #rwctm_new{display:none}.wrap #add_new_team h2 span#rwctm-loading-image{background:url(../images/ajax-loader.gif) no-repeat 0 0;margin:-3px 10px;width:96px;height:20px;display:none}#add_new_team #rwctm_edit_form #form-messages{position:relative;padding:.75rem 1.25rem;margin-bottom:2px;border-radius:.25rem;border:1px solid rgba(36,241,6,0.46);background-color:#327432;box-shadow:0 0 2px #259c08;color:#e3ffe2;font-size:17px;text-shadow:1px 1px 2px #00040a;transition:.5s;cursor:pointer;display:none}#add_new_team .success:before{content:"";position:absolute;width:0;height:calc(100% - 44px);border-left:1px solid;border-right:2px solid;border-bottom-right-radius:3px;border-top-right-radius:3px;left:0;top:50%;transform:translate(0,-50%);height:20px}#add_new_team .success > .start-icon{margin-right:5px;min-width:20px;text-align:center}#add_new_team .success .greencross{font-size:18px;color:#e3ffe2;text-shadow:none;margin-top:3px}#add_new_team .success .rwctm_close{float:right;position:absolute;top:0;right:0;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5;padding:.6rem 1.25rem;background-color:transparent;border:0}#add_new_team .success .rwctm_close:hover{opacity:1}#add_new_team .success .rwctm_close:not(:disabled):not(.disabled){cursor:pointer}#add_new_team .team_list{position:relative;display:block;margin-top:15px}#add_new_team .team_list .subsubsub{margin-bottom:8px;padding:0 10px;font-size:14px;font-weight:600;background:#fff;color:#1d2327;box-shadow:1px 1px 2px 1px #cbc8c8}#add_new_team .team_list .subsubsub li{position:relative;box-shadow:1px 0 0 0 #c9c9c9;padding:8px 5px 8px 15px}#add_new_team .team_list .subsubsub li:first-child{padding-left:5px}#add_new_team .team_list .subsubsub li:last-child{box-shadow:none}#add_new_team .team_list .subsubsub li span.count{width:20px;height:20px;line-height:20px;margin:0 10px 0 2px;background:#1d2327;color:#fff;border:1px solid #1d2327;border-radius:50%;display:inline-block;text-align:center}#add_new_team .team_list .subsubsub li.publish{color:#1fa750}#add_new_team .team_list .subsubsub li.publish span.count{background:#23bd5a;border-color:#5baf79;color:#fff}#add_new_team .team_list .subsubsub li.unpublish{color:#dca80c}#add_new_team .team_list .subsubsub li:last-child span.count{margin-right:0}#add_new_team .team_list .subsubsub li.unpublish span.count{background:#f2be1d;border-color:#dbac1a;color:#fff}#add_new_team .team_list .button.button-del,#add_new_team .team_list .button.update-all{position:relative;margin:-7px 0 10px 10px;padding:0 0 0 24px;background-color:#d9534f;border-color:#d43f3a;color:#fff;font-weight:500;font-size:14px;width:74px;display:none}#add_new_team .team_list .button.update-all{background-color:#2271b1;border-color:#1a5889;margin-right:-5px;width:81px}#add_new_team .team_list .button.button-del:hover{background-color:#d43f3a}#add_new_team .team_list .button.update-all:hover{background-color:#1a5889}#add_new_team .team_list .button.button-del:before,#add_new_team .team_list .button.update-all:before{content:"\f153";font-family:dashicons;position:absolute;left:5px;top:0;color:#fff}#add_new_team .team_list .button.update-all:before{content:"\f463"}#add_new_team .team_list #rwctm_list{border-collapse:collapse;margin:0 0 1rem;text-align:left;color:#212529;background:#fff;box-shadow:0 0 4px 1px #c0c0d4;width:100%}#add_new_team .team_list table thead tr{background:#2271b1;border-bottom:4px solid #174d78}#add_new_team .team_list table td,#add_new_team .team_list table th{padding:30px 15px 15px;vertical-align:top}#add_new_team .team_list table thead th{width:auto;font-size:18px;border:none;padding-bottom:30px;font-weight:500;color:#fff}#add_new_team .team_list table thead th:first-child{border:none}#add_new_team .team_list table tbody tr{background-color:#FFFFFF;margin-bottom:10px;border-bottom:4px solid #eceffa}#add_new_team .team_list table tbody:last-child tr{border-bottom-width:1px}#add_new_team .team_list table tbody td{position:relative;color:#007193;font-size:16px;font-weight:normal;height:50px}#add_new_team .team_list table tbody .alt td{background:#F4F6FC}#add_new_team .team_list table tbody td:first-child{border-left:none}#add_new_team .team_list table tbody tr:last-child td{border-bottom:none}#add_new_team .team_list table tbody td.team_name div{padding-bottom:5px;cursor:pointer}#add_new_team .team_list table tbody td.team_name{width:42%}#add_new_team .team_list table tbody td.team_name span:first-of-type{border:none;padding-left:0}#add_new_team .team_list table tbody td.team_name span{font-size:14px;cursor:pointer;border-left:1px solid #ddd;color:#0074a2;padding-left:5px}#add_new_team .team_list table tbody td.team_name span:hover{color:#2ea2cc}#add_new_team .team_list table tbody td.shortcode,#add_new_team .team_list table tbody td.rwctm-status{text-align:left}#add_new_team .team_list table tbody td.shortcode{width:250px;padding:30px 0 15px}#add_new_team .team_list table tbody td .ot_tooltip{position:relative;width:90%;display:inline-block;top:-7px}#add_new_team .team_list table tbody td .ot_tooltip .ot_tooltip_text{visibility:hidden;width:190px;background-color:#555;color:#fff;font-size:14px;text-align:center;border-radius:6px;padding:5px;position:absolute;z-index:1;bottom:120%;left:50%;margin-left:-100px;opacity:0;transition:opacity .3s}#add_new_team .team_list table tbody td .ot_tooltip .ot_tooltip_text::after{content:"";position:absolute;top:100%;left:50%;margin-left:-5px;border-width:5px;border-style:solid;border-color:#555 transparent transparent}#add_new_team .team_list table tbody td .ot_tooltip:hover .ot_tooltip_text{visibility:visible;opacity:1}#add_new_team .team_list table tbody td input.rwctm_shortcode{margin:0;padding:6px 0;border-radius:0;background:#f0f0f1;vertical-align:middle;font-size:16px;font-weight:500;width:100%;max-width:100%;border:.5px solid #ddd;border-bottom:3px solid #bbb;text-align:center}#add_new_team .team_list .regen_shortcode{position:relative;display:inline-block;margin:0;padding:0;font-size:18px}#add_new_team .team_list .regen_shortcode input{width:auto;height:40px;line-height:38px;padding:0 10px 0 30px}#add_new_team .team_list .regen_shortcode::before{content:"\f150";font-family:dashicons;position:absolute;left:7px;top:11px;color:#fff}#add_new_team .team_list table tbody td .temp_choice select{-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;appearance:none;outline:0;box-shadow:none;border:.5px solid #ddd;border-bottom:3px solid #bbb;background:#f1f1f1;background-image:none}#add_new_team .team_list table tbody td .temp_choice select::-ms-expand{display:none}#add_new_team .team_list table tbody td .temp_choice{position:relative;top:-3px;display:flex;width:9em;height:2.4em;line-height:2.4;background:#f1f1f1;color:#d2d2d2;overflow:hidden;border-radius:.25em}#add_new_team .team_list table tbody td .temp_choice select{flex:1;padding:0 0 0 .7em;color:#32373c;cursor:pointer;font-size:16px}#add_new_team .team_list table tbody td .temp_choice::after{content:'\f140';font-family:dashicons;font-size:26px;position:absolute;height:47px;top:-12px;right:0;padding:0 .2em;background:#2271b1;border-bottom:3px solid #1b5c91;cursor:pointer;pointer-events:none;-webkit-transition:.25s all ease;-o-transition:.25s all ease;transition:.25s all ease}#add_new_team .team_list table tbody td .temp_choice:hover::after{color:#0d2e48}#add_new_team .team_list table tbody td .temp_choice select option{background:#f1f1f1;font-size:14px;color:#2271b1}#add_new_team .team_list table tbody td span.status{position:relative;border-radius:30px;background:#cff6dd;color:#1fa750;height:25px;display:inline-block;line-height:24px;text-align:right}#add_new_team .team_list table tbody td span.status.active{width:70px;padding-right:10px}#add_new_team .team_list table tbody td span.status.inactive{padding:0 10px 0 25px;background:#fdf5dd;color:#cfa00c}#add_new_team .team_list table tbody td span.inactive:after{background:#f2be1d}#add_new_team .team_list table tbody td span.status:after{position:absolute;top:8px;left:10px;width:10px;height:10px;content:'';border-radius:50%}#add_new_team .team_list table tbody td span.active:after{background:#23bd5a}#add_new_team .team_list table tbody td .duplicate_team{background:url(../images/duplicate.png) no-repeat 0 0;position:absolute;top:32px;left:15px;width:22px;height:22px;cursor:pointer}#add_new_team .team_list table tbody td #copy_team.duplicate_team{left:unset;margin-left:11px;margin-top:-2px}#add_new_team .team_list table tbody td.rwctm_notice{width:40%}#add_new_team .team_list table tbody td.rwctm_notice span{font-size:13px;color:#778899}#add_new_team .team_list table tbody td.rwctm_notice span strong{font-weight:700}#add_new_team .team_list table tbody td.no_templates{position:relative}#add_new_team #teamnamediv{width:100%;border-radius:5px;margin:0 0 30px;padding:0;line-height:0;display:inline-block}#add_new_team .addnewteamwrap{width:98%;background:#fff;box-shadow:0 0 4px 1px #c0c0d4;margin:0;padding:10px;display:inline-block}#add_new_team .team_list table tbody td .wp-color-result-text{height:28px;line-height:28px}#add_new_team .teamnamewrap,#add_new_team .teamactivitywrap,#add_new_team .teamcolumnwrap,#add_new_team .settingcolumnwrap{margin:10px;padding:0 18px}#add_new_team .teamactivitywrap h3{padding:10px 1px 15px}#add_new_team .teamcolumnwrap{position:relative;display:grid}#teamcolumndiv .accordion-expand-holder{position:absolute;top:40px;right:25px}#teamcolumndiv .accordion-expand-holder .expand,#teamcolumndiv .accordion-expand-holder .collapse{color:#444444;text-transform:uppercase;cursor:pointer;padding:5px 10px}#add_new_team .teamnamewrap{border-bottom:1px solid #CCC;margin-bottom:30px}#add_new_team #title{width:50%;display:block;margin:10px 0 20px;padding:7px 14px;line-height:30px;font-size:18px;box-shadow:2px 2px 4px 0 rgb(29 35 39 / 16%);border:1px solid #d1d1d1}#add_new_team #teamactivitydiv #activity_edititem{border:1px solid #ddd;margin-bottom:10px;width:100%}#add_new_team #teamactivitydiv #activity_edititem tr.smheader th{background-color:#F3F3F3;padding:15px 10px;border-bottom:1px solid #ddd;border-left:1px solid #ddd;font-size:14px;font-weight:700;line-height:18px;color:#333333}#add_new_team #teamactivitydiv #activity_edititem tr.activitybody td{background-color:#fff;padding:10px;border-left:1px solid #ddd;border-bottom:1px solid #ddd;line-height:48px}#add_new_team #teamactivitydiv #activity_edititem tr.smheader th:first-child,#add_new_team #teamactivitydiv #activity_edititem tr.activitybody td:first-child{border-left:none}#add_new_team #teamactivitydiv tr.activitybody td input[type="text"]{display:block;width:auto;padding:8px 16px;line-height:25px;font-size:14px;font-weight:500;border-radius:6px;color:#6a7283;border:1px solid #CDD9ED;background:#fff;transition:border .3s ease}#add_new_team #teamactivitydiv tr.activitybody td input[type="text"]:focus{box-shadow:none;border:1px solid #678efe}#add_new_team #teamactivitydiv tr.activitybody td > span,#add_new_team #teamactivitydiv tr.activitybody td input[type="text"]{white-space:nowrap;display:inline-block}#add_new_team #teamactivitydiv tr.activitybody td .select{cursor:pointer;display:inline-block;position:relative;margin-left:6px;padding:0 3px;height:30px;line-height:30px;font-size:14px;border-radius:6px;color:#6a7283;border:1px solid #CDD9ED;transition:border .3s ease}#add_new_team #teamactivitydiv tr.activitybody td .select .s-hidden{visibility:hidden}#add_new_team #teamactivitydiv tr.activitybody td .select .styledSelect{position:absolute;top:0;right:0;bottom:0;left:0;padding:0 10px;font-weight:500;display:inline-block;border-radius:3px;box-shadow:0 1px 0 rgb(0 0 0 / 5%),inset 0 1px 0 rgb(255 255 255 / 80%);background-color:#f9f9f9;background-image:linear-gradient(to bottom,#fefefe,#f2f2f2);background-repeat:repeat-x;border:1px solid #b8b8b8}#add_new_team #teamactivitydiv tr.activitybody td .select .styledSelect.social{background:#415DE5;background-image:linear-gradient(to bottom,#6178e6,#415DE5);color:#fff;border:1px solid #364ebf;box-shadow:0 1px 0 rgb(65 93 229 / 5%),inset 0 1px 0 rgb(65 93 229 / 80%)}#add_new_team #teamactivitydiv tr.activitybody td .select .styledSelect.status{background:#61ECFB;background-image:linear-gradient(to bottom,#b3eef5,#61ECFB);color:#286167;border:1px solid #54c5d1;box-shadow:0 1px 0 rgb(97 236 251 / 5%),inset 0 1px 0 rgb(97 236 251 / 80%)}#add_new_team #teamactivitydiv tr.activitybody td .select .styledSelect.sector{background:#783EC0;background-image:linear-gradient(to bottom,#844acd,#783EC0);color:#fff;border:1px solid #6835a7;box-shadow:0 1px 0 rgb(120 62 192 / 5%),inset 0 1px 0 rgb(120 62 192 / 80%)}#add_new_team #teamactivitydiv tr.activitybody td .select .styledSelect:after{content:"";width:0;height:0;border:5px solid transparent;border-color:black transparent transparent;position:absolute;top:13px;right:10px}#add_new_team #teamactivitydiv tr.activitybody td .select .styledSelect.social:after,#add_new_team #teamactivitydiv tr.activitybody td .select .styledSelect.sector:after{border-color:#ffffff transparent transparent}#add_new_team #teamactivitydiv tr.activitybody td .select .styledSelect:active,#add_new_team #teamactivitydiv tr.activitybody td .select .styledSelect.active{background-color:#eef4ff}#add_new_team #teamactivitydiv tr.activitybody td .select .options{display:none;position:absolute;top:100%;right:0;left:-1px;z-index:999;margin:0;padding:0;list-style:none;border:1px solid #cdd9ed;background-color:#fff;-webkit-box-shadow:0 1px 2px rgb(0 0 0 / 20%);-moz-box-shadow:0 1px 2px rgba(0,0,0,0.2);box-shadow:0 1px 2px rgb(0 0 0 / 20%);width:calc(100% + 50px)}#add_new_team #teamactivitydiv tr.activitybody td .select .options li{margin:0;padding:0 10px;height:32px;line-height:32px;border-bottom:1px solid #c3c4c7}#add_new_team #teamactivitydiv tr.activitybody td .select .options li:hover{background-color:#39f;color:#fff}#add_new_team #teamactivitydiv tr.activitybody td .select .options li:last-child{border-bottom:none}#add_new_team #teamactivitydiv tr.activitybody td .select .options li.active{background-color:#92c836;color:#fff}#add_new_team .element-input .selectize-control.single,#add_new_team .element-input .selectize-control.multi,#add_new_team #settingcommon .team-input .selectize-control.single{width:69.2%;margin:0 2px 10px;display:inline-block}#add_new_team #settingcommon .team-input .selectize-control.single{width:18%}#add_new_team #settingcommon .team-input #max-column .selectize-control.single{width:150px;margin:0;display:table}#add_new_team #teamactivitydiv tr.activitybody td > span{text-align:center;padding:8px 12px;font-size:14px;line-height:25px;color:#99A3BA;background:#eef4ff;border:1px solid #CDD9ED;display:inline-block;transition:background .3s ease,border .3s ease,color .3s ease}#add_new_team #teamactivitydiv tr.activitybody td input[type="text"]{position:relative;z-index:1;margin-top:0;margin-bottom:0}#add_new_team #teamactivitydiv tr.activitybody td > span:first-child,#add_new_team #teamactivitydiv tr.activitybody td input[type="text"]:first-child{border-radius:6px 0 0 6px}#add_new_team #teamactivitydiv tr.activitybody td > span:last-child,#add_new_team #teamactivitydiv tr.activitybody td input[type="text"]:last-child{border-radius:0 6px 6px 0}#add_new_team #teamactivitydiv tr.activitybody td > span:not(:first-child),#add_new_team #teamactivitydiv tr.activitybody td input[type="text"]:not(:first-child){border-radius:0 6px 6px 0;margin-left:-1px}#add_new_team #teamactivitydiv tr.activitybody td:focus-within > span{color:#fff;background:#678efe;border-color:#275efe}#add_new_team #teamactivitydiv tr.activitybody td input[type="text"]::placeholder,#add_new_team .element-input input[type="text"]::placeholder,#add_new_team .element-input input[type="number"]::placeholder,#add_new_team .element-input textarea::placeholder,#add_new_team #settingcommon .team-input input[type="text"]::placeholder,#add_new_team #settingcommon .team-input input[type="number"]::placeholder,#add_new_team #settingcommon .team-input textarea::placeholder{color:#CBD1DC}#add_new_team #teamactivitydiv #activity_edititem tr.activitybody td span#remActivity,#add_new_team #teamactivitydiv #activity_edititem tr.activitybody td span#remDisable{cursor:pointer;background:transparent;border:none;margin:0;padding:0;color:#444444;display:block}#add_new_team #teamactivitydiv #activity_edititem tr.activitybody td span#remDisable{color:#bbbbbb;cursor:auto}#add_new_team #teamactivitydiv #activity_edititem tr.activitybody td span#remActivity::after,#add_new_team #teamactivitydiv #activity_edititem tr.activitybody td span#remDisable::after{content:"\f182";font-family:dashicons;font-weight:400;font-size:24px;position:absolute;top:50%;left:50%;border:1px solid #c7c7c7;border-radius:4px;box-shadow:inset 0 0 3px 1px rgb(0 0 0 / 10%);padding:4px;transform:translate(-50%,-50%)}#add_new_team #teamactivitydiv #activity_edititem tr.smheader th{text-align:center}#add_new_team #teamactivitydiv #activity_edititem tr.activitybody td{cursor:move}#add_new_team input#rwctm_add_new,#add_new_team #rwctm_upactivity,#add_new_team #rwctm_addactivity{float:right;margin-top:10px;margin-right:10px}#add_new_team input#rwctm_add,#add_new_team input#rwctm_edit{margin:10px 10px 20px}#add_new_team #teamdisplaydiv{background:#fff;margin:0 0 30px;padding:10px;line-height:5px;position:relative}#add_new_team #teamdisplaydiv h3{position:relative;font-size:24px;margin-top:15px;padding:10px}#add_new_team #teamdisplaydiv h3 span#editTeam{position:absolute;top:0;right:24px;background:#22313f;margin:0;padding:0 10px 0 0;color:#fff;font-size:14px;font-weight:600;text-align:right;width:130px;height:36px;line-height:33px;border:1px solid #1d2327;border-radius:5px}#add_new_team #teamdisplaydiv h3 #editTeam:hover{background:#646970}#add_new_team #teamdisplaydiv h3 span#editTeam:before{content:"\f186";font-family:'dashicons';position:absolute;left:1px;top:50%;font-size:20px;width:26px;height:32px;transform:translateY(-50%)}#add_new_team #teamcolumndiv{float:left;margin:0;padding-bottom:30px;line-height:5px;background:#fff;box-shadow:0 0 4px 1px #c0c0d4;width:100%;position:relative}#teamcolumndiv #addButtons{position:relative;clear:both;margin-bottom:5px}#teamcolumndiv #addButtons a#addMember{padding:0 10px 0 30px;font-size:16px;height:36px;line-height:32px;font-weight:600}#teamcolumndiv #addButtons a#addMember:before{content:"\f502";font-family:dashicons;position:absolute;top:50%;left:6px;margin:0;font-size:20px;display:inline-block;line-height:1;transform:translateY(-50%)}#teamcolumndiv #sortable_column{margin-left:-5px;margin-top:5px}#teamcolumndiv #sortable_column .member_details h3.mtitle{margin:3px 1px;border-left:10px solid #4f94d4}#teamcolumndiv .member_details{float:left;margin:5px;position:relative}#teamcolumndiv .member_details h4{margin:0;padding:10px 0 13px 2px;font-size:15px}#teamcolumndiv .member_details span.column_hide,#teamcolumndiv .member_details span.column_show{position:absolute;top:0;right:42px;padding:7px 14px;border-right:2px solid #cbcbcb;display:inline-block;cursor:pointer;z-index:9999}#teamcolumndiv .member_details span.column_hide:before,#teamcolumndiv .member_details span.column_hide:after{content:"";position:absolute;top:-1px;background:#e7e7e7;border-top:1px solid #ccc}#teamcolumndiv .member_details span.column_hide:before{left:-8px;box-shadow:1px 0 1px 0 rgb(92 92 92 / 30%);width:4px;height:36px;border-top-right-radius:3px;z-index:9999}#teamcolumndiv .member_details span.column_hide:after{left:5px;border-left:1px solid #ccc;border-top:1px solid #ccc;box-shadow:-9px 0 0 4px #ffffff;width:5px;height:36px;border-top-left-radius:3px}#teamcolumndiv .member_details span.column_hide .dashicons,#teamcolumndiv .member_details span.column_show .dashicons,#teamcolumndiv .member_details span#delDisable .dashicons,#teamcolumndiv .member_details span#delMember .dashicons{font-size:24px}#teamcolumndiv .member_details span.inactive{cursor:auto!important;opacity:.3}#teamcolumndiv .member_details span#delDisable,#teamcolumndiv .member_details span#delMember{position:absolute;top:0;right:8px;padding:7px;border-left:1px solid #f9f9f9;display:inline-block;z-index:9999}#teamcolumndiv .member_details span#delDisable{opacity:.3}#teamcolumndiv .member_details span#delMember{cursor:pointer}#teamcolumndiv .element-input h4{margin:0;padding:5px 10px 15px;font-weight:700;color:#555555}#teamcolumndiv .member_details input#upload_image{margin-left:5px}#teamcolumndiv .member_details img.preview_image{background:#F1F1F1;width:50%;height:auto;padding:24px 5px 5px;border:1px solid #CCC}#teamcolumndiv .member_details span#remove_image{background:url(../images/rwctm-buttons.png) no-repeat -272px -89px;position:absolute;width:24px;height:24px;margin:1px 0 0 -28px;cursor:pointer}#teamcolumndiv .element-input input.medium{width:224px}#teamcolumndiv .element-input input.checktext{width:204px}#teamcolumndiv .element-input input.in_small{width:137px}#teamcolumndiv .element-input input[type=text].in_double_one{width:180px;margin-left:-138px;padding-left:10px;padding-right:10px;background:#eef4ff;color:#99A3BA;margin-right:0;border-right:0;border-top-right-radius:0;border-bottom-right-radius:0}#teamcolumndiv .element-input input[type=text].in_double_two{width:184px;margin-left:0;padding-left:10px;border-top-left-radius:0;border-bottom-left-radius:0}#teamcolumndiv .element-input input[type=text].in_small{width:65px}#teamcolumndiv .ed_button.button.button-small{width:auto;margin-bottom:2px}#teamcolumndiv .element-input input.tickbox{border:1px solid #aaa!important}#teamcolumndiv .element-input .rwctm-editor-bottom{position:relative;background:#fff;width:50px;height:20px;top:4px;left:-49px;display:inline-block}#teamcolumndiv .element-input textarea[id=member_desc],#teamcolumndiv .element-input textarea[id=short_bio],#teamcolumndiv .element-input textarea[id=tag_line]{resize:none;display:block;margin:0 0 20px 10px;border-radius:5px;border:1px solid #ccc;width:96%}#teamcolumndiv .element-input input[type=text]:focus,#teamcolumndiv .element-input input[type=number]:focus,#teamcolumndiv .element-input textarea:focus{box-shadow:none;border-color:#72aee6}#teamcolumndiv .element-input hr{width:490px;border-top:1px solid #fbfbfb;margin:.5em auto 20px;box-shadow:0 -1px 0 0 rgb(145 145 145 / 60%)}#teamcolumndiv .member_details{background:#e7e7e7;width:525px;padding:5px!important;border:1px solid #ccc!important;border-radius:3px;box-shadow:1px 1px 2px 1px rgb(83 154 177 / 30%)}#teamcolumndiv .element-input{background:#F9F9F9;width:502px;margin-left:1px!important;padding:10px;border:1px solid #fff!important;cursor:auto}#add_new_team .member_details h3.mtitle,#add_new_team .member_advance h3.mtitle{background:#FFFFFF;border:none;position:relative;border-radius:4px;background-color:#fff!important;box-shadow:0 0 0 1px #ececec;opacity:1;transition:box-shadow 0.2s,opacity .4s}#add_new_team .member_details h3.mtitle.ui-accordion-header-active,#add_new_team .member_advance h3.mtitle.ui-accordion-header-active{box-shadow:none;border-bottom-left-radius:0;border-bottom-right-radius:0}#add_new_team .ui-accordion .ui-accordion-content{margin-top:-6px;position:relative;border-top:0!important;border-left:10px solid #4f94d4!important;border-bottom-left-radius:4px;border-bottom-right-radius:4px;border-bottom:0!important}#add_new_team .member_details h3.mtitle:hover,#add_new_team .member_advance h3.mtitle:hover{box-shadow:0 4px 10px 0 rgba(0,0,0,0.11)}#teamcolumndiv .element-input label.input-title,#add_new_team .element-input label.input-check,#teamcolumndiv .element-input label.input-title-check{color:#555555;margin:0;padding:0 10px;float:left;font-size:14px;width:250px;height:35px;line-height:35px}#teamcolumndiv .element-input label.input-title.mb-section,#teamcolumndiv .element-input label.input-title.mb-status{width:25%}#teamcolumndiv .element-input label.input-title:after{content:"";border-bottom:1px dashed #c9c9c9;width:100%;display:block;margin:-1px 0 0}#teamcolumndiv .element-input label.input-title.double-text:after{width:44%}#teamcolumndiv .element-input label.input-title.label-lg{width:315px}#add_new_team .element-input table tr.team-input th label.input-title::after{border:none}#add_new_team .element-input span.star_mark{float:right;margin:5px 10px 0 5px}#teamcolumndiv .element-input label.input-image{color:#555555;margin-top:1px;padding:7px 10px;float:left;font-size:14px;width:120px}#teamcolumndiv .element-input #enable_sp_price{display:none}#add_new_team .element-input input.medium,#teamcolumndiv .element-input input.in_small,#add_new_team .element-input input.tickbox{padding:3px 4px;border-radius:5px;border:1px solid #ccc}#add_new_team .element-input input.medium,#teamcolumndiv .element-input input.in_small{margin:0 2px 10px}#add_new_team .element-input select.font-dir{margin:2px 2px 10px;padding:0 10px;border-radius:5px;border:1px solid #ccc}#add_new_team .element-input input.tickbox{margin:7px 2px 10px}#add_new_team .element-input table{width:99.5%}#add_new_team .element-input table tr.team-header,#add_new_team .element-input table tr.team-input{background-color:#fff;display:block;border:none}#add_new_team .element-input table tr.team-header{background:#f9f9f9;position:relative;margin:30px 0 10px}#add_new_team .element-input table tr:first-child{margin-top:-10px}#add_new_team .element-input table tr.team-header:after{content:"";position:absolute;left:0;bottom:8px;border-bottom:2px solid #dcdcde;width:100%}#add_new_team .element-input table tr.team-input{box-shadow:1px 1px 3px 0 #dcdcde}#add_new_team .element-input table tr.team-input th{padding:5px 0}#add_new_team .element-input table tr.team-input th label.input-title{font-size:12px;width:200px}#add_new_team .element-input table tr.team-header td{color:#23282d;font-weight:700;margin:10px 0;padding:5px 10px;font-size:14px;background:#dcdcde;display:inline-block}#add_new_team .element-input table tr td{height:auto;padding:5px 10px 0}#teamcolumndiv .button.button-small,#settingcolumn.button.button-small{width:50px}#add_new_team #settingcommon{margin:0 0 10px;line-height:24px}#add_new_team #settingcommon .cs-inactive,#add_new_team #settingcommon .cs-active{position:absolute;right:31px;top:24px;font-size:32px;color:#fff;text-align:center;background:#2271b1;border:1px solid #195281;width:48px;height:38px;line-height:38px;cursor:pointer}#add_new_team #settingcommon .common-settings{border:1px solid #195281;margin:-1px 0 0}#add_new_team #settingcommon .common-settings,#add_new_team #settingcommon .cs-inactive{display:none}#add_new_team #settingcommon .team-input{margin-bottom:10px}#add_new_team #settingcommon .team-input h4{margin:20px 0 10px;padding:0 0 5px;font-size:14px;border-bottom:1px dashed #c3c3c3}#add_new_team #settingcommon .team-input .rwctm_notice{background:#F3F7FA;color:#606c41;font-size:12px;font-weight:400;margin:0 0 0 230px;padding:10px 20px;display:block;border-left:10px solid #656e74;border-radius:25px;box-shadow:4px 0 0 1px #656e74;transition:all .3s}#add_new_team #settingcommon .team-input h4:first-child{margin-top:0}#add_new_team #settingcommon .team-input .team_options{position:relative;margin:0 0 30px}#add_new_team #settingcommon .team-input .team_options.thumb_desig,#add_new_team #settingcommon .team-input .team_options.thumb_depart,#add_new_team #settingcommon .team-input .team_options.thumb_smicon,#add_new_team #settingcommon .team-input .team_options.member_desig,#add_new_team #settingcommon .team-input .team_options.member_depart,#add_new_team #settingcommon .team-input .team_options.member_smicon{margin-bottom:10px}#add_new_team #settingcommon .team-input .team_options .multicheck-item{display:inline}#add_new_team #settingcommon .team-input .team_options.ticker_dates{background:#f1f1f1;margin:0 15px 30px;padding:15px 30px}#add_new_team #settingcommon .team-input .team_options .t4b-badge{position:absolute;left:0;top:-2px;background:rgb(0 115 170 / 80%);color:#f1f1f1;width:26px;height:12px;line-height:12px;text-align:center;text-transform:lowercase;font-size:10px;border:1px solid rgb(0 86 128 / 43%);box-shadow:1px 1px 4px 1px rgb(0 86 128 / 46%);border-radius:5px}#add_new_team #settingcommon .team-input .show_icons{margin-bottom:5px}#add_new_team #settingcommon .team-input .ticker_icons,#add_new_team #settingcommon .team-input .upload-input,#add_new_team #settingcommon .team-input .scroll_speed,#add_new_team #settingcommon .team-input .scroll_start,#add_new_team #settingcommon .team-input .delay_timer,#add_new_team #settingcommon .team-input .fadein_speed,#add_new_team #settingcommon .team-input .typo_speed{background:#f1f1f1;margin:0;padding:30px}#add_new_team #settingcommon .team-input .start_right{background:#f1f1f1;margin:0;padding:15px 30px 0}#add_new_team #settingcommon .team-input .upload-input{background:#fbe4e4;padding:10px 30px}#add_new_team #settingcommon .team-input .imgmax_width,#add_new_team #settingcommon .team-input .imgmin_width{background:#e7d7d7;margin:0}#add_new_team #settingcommon .team-input .scroll_speed,#add_new_team #settingcommon .team-input .imgmax_width,#add_new_team #settingcommon .team-input .imgmin_width{padding:15px 30px}#add_new_team #settingcommon .team-input .imgmin_width{padding-bottom:30px}#add_new_team #settingcommon .team-input .scroll_start,#add_new_team #settingcommon .team-input .delay_timer,#add_new_team #settingcommon .team-input .fadein_speed,#add_new_team #settingcommon .team-input .typo_speed{margin-bottom:15px;padding:15px 30px 30px}#add_new_team #settingcommon .team-input .delay_timer{background:#fbe4e4;margin-bottom:20px;padding:15px 30px 40px}#add_new_team #settingcommon .team-input .fadein_speed,#add_new_team #settingcommon .team-input .typo_speed{margin-top:-30px}#add_new_team #settingcommon .team-input label{display:inline}#add_new_team #settingcommon .team-input label.label-title,#add_new_team #settingcommon .team-input label.label-check{color:#555555;margin:0;padding:10px 0;display:inline-block;font-size:14px;width:230px}#add_new_team #settingcommon .team-input input.medium,#add_new_team #settingcommon .team-input input.tickbox{padding:2px 4px;border-radius:5px;border:1px solid #ccc}#add_new_team #settingcommon .team-input input.medium{width:25%;margin:5px 3px 0;padding-left:10px}#add_new_team #settingcommon .team-input input[type=number]{width:100px}#add_new_team #settingcommon .team-input input.tickbox{margin:7px 2px 10px;border:1px solid #aaa}#add_new_team #settingcommon .team-input input.radiobox{margin:-4px 5px 0 10px}#add_new_team #settingcommon .team-input input#marked_layout_lout1,#add_new_team #settingcommon .team-input input#marked_ribbon_rb-1{margin-left:4px}#add_new_team #settingcommon .team-input input#ticker_type_category{margin-left:0}#add_new_team #settingcommon .team-input input[type=text]{width:30%}#add_new_team #settingcommon .team-input input#icon_prev,#add_new_team #settingcommon .team-input input#icon_next,#add_new_team #settingcommon .team-input input#icon_pause,#add_new_team #settingcommon .team-input input#icon_play,#add_new_team #settingcommon .team-input input#icon_bullet,#add_new_team #settingcommon .team-input .image_margin input[type=number]{width:7%}#add_new_team #settingcommon .team-input input#ticker_title,#add_new_team #settingcommon .team-input input#region_title{width:25%}#add_new_team #settingcommon .team-input textarea{display:inline-block;margin:10px 0;vertical-align:middle}#add_new_team #settingcommon .team-input textarea.medium{resize:none;border-radius:5px;border:1px solid #ccc;width:50%}#add_new_team #settingcommon .team-input textarea#shortcode_page_url{resize:vertical}#add_new_team #settingcommon .team-input .wp-editor-wrap{display:block}#add_new_team #settingcommon .team-input .rwctm-editor-bottom{background:#ffffff;width:140px;height:30px;position:absolute;bottom:-8px}#add_new_team #settingcommon .team-input #ticker_tag_add{position:relative;bottom:-47px;margin:0 5px;width:16px;height:16px;overflow:hidden;display:inline-block}#add_new_team #settingcommon .team-input #ticker_tag_add img{position:absolute;background-position:32px 44px;top:-9px;left:-8px}#add_new_team #settingcommon .team-input .tags-list{display:none;margin:0 0 10px}#add_new_team #settingcommon .team-input .tags-list a{background:#23282d;color:#fff;margin:0 3px 3px 0;padding:3px 5px;font-size:12px;display:inline-block}#add_new_team #settingcommon .team-input .wp-color-picker-field{display:inline-block}#add_new_team #settingcommon .team-input input.rwctm-color-picker{width:100%;margin:0 -2px;padding:0 10px;height:33px;line-height:34px}#add_new_team #settingcommon .team-input span.input_note,#add_new_team #settingcommon .team-input span.check_note{position:absolute;top:100%;bottom:0;left:236px;font-style:italic;color:#999;font-size:12px;line-height:16px;transform:translateY(-50%)}#add_new_team #settingcommon .team-input .team_options.ticker_custom span.input_note{left:0;padding-top:10px}#add_new_team #settingcommon .team-input span.check_note,#add_new_team #settingcommon .team-input .image_size span.input_note{top:50%;bottom:5px;left:300px;transform:translateY(-50%)}#add_new_team #settingcommon .team-input .image_size span.input_note{left:430px}#add_new_team #settingcommon .team-input span.check_note.multi{top:90%;left:235px}#add_new_team #settingcommon .team-input span.check_note b,#add_new_team #settingcommon .team-input span.input_note b{color:#8c8f94}#add_new_team #settingcommon .team-input .ticker_icons span.input_note,#add_new_team #settingcommon .team-input .scroll_speed span.input_note,#add_new_team #settingcommon .team-input .scroll_start span.input_note,#add_new_team #settingcommon .team-input .delay_timer span.input_note,#add_new_team #settingcommon .team-input .fadein_speed span.input_note,#add_new_team #settingcommon .team-input .typo_speed span.input_note,#add_new_team #settingcommon .team-input .imgmax_width .input_note,#add_new_team #settingcommon .team-input .imgmin_width .input_note{bottom:-50px;left:267px}#add_new_team #settingcommon .team-input .start_right span.check_note{top:64%;left:290px}#add_new_team #settingcommon .team-input .scroll_speed span.input_note,#add_new_team #settingcommon .team-input .imgmax_width .input_note{bottom:-25px}#add_new_team #settingcommon .team-input .delay_timer span.input_note{bottom:-70px}#add_new_team #settingcommon .team-input .image_margin .input_note{bottom:-40px;left:256px}#add_new_team #settingcommon .team-input input.tickbox{margin:0 19px;border:1px solid #aaa;position:relative;left:3px}#add_new_team #settingcommon .team-input input.tickbox.mcheck{position:relative;top:-1px;margin:2px 5px 2px 20px}#add_new_team #settingcommon .team-input label.label-title-check{float:left}#add_new_team #settingcommon .team-input img.preview_image{background:#F1F1F1;margin:0 7px;padding:5px;border:1px solid #CCC;position:relative;top:9px}#add_new_team #settingcommon .team-input span#remove_image{background:url(../images/rwctm-buttons.png) no-repeat -1px -57px;position:absolute;bottom:4px;width:26px;height:26px;margin:0 -8px;cursor:pointer}#add_new_team #settingcommon .ui-widget.ui-widget-content{border:none}#add_new_team #settingcommon .team-input #img-features,#add_new_team #settingcommon .team-input #filter-nav,#add_new_team #settingcommon .team-input #img-custom,#add_new_team #settingcommon .team-input .image_margin,#add_new_team #settingcommon .team-input #slider-apspeed,#add_new_team #settingcommon .team-input #slider-option{position:relative;background:#fff;border:1px solid #d2d2d2;margin:-20px 0 20px;padding:20px;width:auto;box-shadow:0 0 3px 1px rgb(177 177 177 / 50%)}#add_new_team #settingcommon .team-input #slider-option{margin-top:-54px}#add_new_team #settingcommon .team-input #img-features::before,#add_new_team #settingcommon .team-input #filter-nav::before,#add_new_team #settingcommon .team-input #img-custom::before,#add_new_team #settingcommon .team-input #slider-apspeed::before,#add_new_team #settingcommon .team-input .image_margin::before{content:"\f142";font-family:dashicons;position:absolute;left:222px;top:-20px;color:#b1b1b1;font-size:50px}#add_new_team #settingcommon .team-input .labelexpanded.slide::before{content:"\f142";font-family:dashicons;position:absolute;left:20px;bottom:-6px;color:#b1b1b1;font-size:50px;opacity:0;transition:opacity 1s ease}#add_new_team #settingcommon .team-input .labelexpanded.slider-before::before{opacity:1}#add_new_team #settingcommon .team-input .image_margin,#add_new_team #settingcommon .team-input #img-custom,#add_new_team #settingcommon .team-input #slider-apspeed{background:#f3f7fa;border-color:#d2e0eb;padding:30px 20px 20px;width:auto;box-shadow:none}#add_new_team #settingcommon .team-input .image_margin::before,#add_new_team #settingcommon .team-input #img-custom::before,#add_new_team #settingcommon .team-input #slider-apspeed::before{color:#d2e0eb}#add_new_team #settingcommon .team-input .team_options.video_screen,#add_new_team #settingcommon .team-input .team_options.modest_brand{margin-bottom:0;top:-10px}#add_new_team #settingcommon .team-input #max-column{display:inline-block;width:100%;margin:10px 0 0;padding:15px 0 0;border-top:1px solid #ccc;border-bottom:1px solid #ccc}#add_new_team #settingcommon .team-input #max-column h4{float:left;border:none}#add_new_team #settingcommon .team-input #max-column .team_options{float:left;margin-left:21px}#add_new_team #settingcommon .team-input #max-column .team_options .label-check{width:100%;margin-bottom:5px;padding:0}#add_new_team #settingcommon .team-input .team_options .label-check.numgroup{position:absolute;top:-2px;margin-left:6px;width:auto}#add_new_team #settingcommon .team-input .team_options.tm_name_font,#add_new_team #settingcommon .team-input .team_options.nav_font_size,#add_new_team #settingcommon .team-input .team_options.mn_thumb_font,#add_new_team #settingcommon .team-input .team_options.dp_thumb_font,#add_new_team #settingcommon .team-input .team_options.dg_thumb_font,#add_new_team #settingcommon .team-input .team_options.bio_thumb_fnt,#add_new_team #settingcommon .team-input .team_options.sm_thumb_font,#add_new_team #settingcommon .team-input .team_options.tmname_margin{padding:30px 0 0}#add_new_team #settingcommon .team-input #max-column .team_options .select{margin-left:0;margin-bottom:0}#add_new_team #settingcommon .team-input input[type=checkbox]:after{content:"Off";position:absolute;z-index:1;margin:-14px 0 0;top:50%;left:4px;display:inline-block;background:#CCCCCC;padding:14px 5px;width:4.2em;border-radius:30px;box-shadow:inset 1px 1px 1px rgba(0,0,0,0.3);color:#EEEEEE;text-transform:uppercase;font-size:11px;text-align:right}#add_new_team #settingcommon .team-input input[type=checkbox]:before{content:"";position:absolute;z-index:2;width:1.6em;height:1.6em;top:50%;margin-top:-.8em;left:7px;font-size:14px;background:#eee;border-radius:1em;box-shadow:0 1px 1px #999,inset 0 3px 4px #fff;transition:left .05s linear}#add_new_team #settingcommon .team-input input[type=checkbox]:checked:after{content:"On";text-align:left;padding-left:5px;background:#9ad179;color:#669933}#add_new_team #settingcommon .team-input input[type=checkbox]:after{left:-20px}#add_new_team #settingcommon .team-input input[type=checkbox]:before{left:-17px}#add_new_team #settingcommon .team-input input[type=checkbox]:checked:before{left:15px}#add_new_team #settingcommon .team-input hr{margin:40px 0 20px;border-style:dashed;border-top-color:#c1c1c1;border-bottom-color:#f1f1f1}#add_new_team #settingcommon .team-input .marked_layout .label-check,#add_new_team #settingcommon .team-input .layout_style .label-check{position:relative;top:-50px}#add_new_team #settingcommon .team-input .marked_layout .input_note,#add_new_team #settingcommon .team-input .layout_style .input_note{bottom:-36px}#add_new_team #settingcommon .team-input .team_options .layout-style{position:relative;width:50%;display:inline-table;margin:20px 0 5px}#add_new_team #settingcommon .team-input .marked_ribbon .layout-style,#add_new_team #settingcommon .team-input .team_options .layout-style.style-group{width:70%}#add_new_team #settingcommon .team-input label.labelexpanded{position:relative;width:25%;display:inline-block;margin:0 0 20px}#add_new_team #settingcommon .team-input .style-group .labelexpanded{margin-bottom:3px}#add_new_team #settingcommon .team-input .marked_ribbon .layout-style .labelexpanded{width:100px;height:52px;margin-right:18px}#add_new_team #settingcommon .team-input .labelexpanded > input[type=radio]{position:absolute;opacity:0;width:0;height:0}#add_new_team #settingcommon .team-input .radio-btns{position:relative;padding:0;border:1px solid #eaeaea;display:inline-block;margin:0 15px 25px 0;transition:120ms transform ease-in-out}#add_new_team #settingcommon .team-input .marked_ribbon .radio-btns{width:89px;height:52px}#add_new_team #settingcommon .team-input .radio-btns.btn-group{width:140px}#add_new_team #settingcommon .team-input .radio-btns .rb-1{position:absolute;top:-1px;left:-7px;background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/ribbons.png) 15px 0 no-repeat;width:105px;height:45px}#add_new_team #settingcommon .team-input .radio-btns .rb-2{position:absolute;top:-1px;left:-7px;background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/ribbons.png) -100px -10px no-repeat;width:60px;height:45px}#add_new_team #settingcommon .team-input .radio-btns .rb-3{position:absolute;top:-8px;left:-7px;background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/ribbons.png) -160px -7px no-repeat;width:60px;height:52px}#add_new_team #settingcommon .team-input .radio-btns .rb-4{position:absolute;top:-1px;left:15px;background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/ribbons.png) -224px -2px no-repeat;width:85px;height:45px}#add_new_team #settingcommon .team-input .radio-btns .rb-5{position:absolute;top:-1px;left:5px;background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/ribbons.png) -310px -10px no-repeat;width:90px;height:45px}#add_new_team #settingcommon .team-input .radio-btns.grids{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-type.png) -15px -14px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.slide{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-type.png) -125px -14px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.popup{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-type.png) -235px -14px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.lout1{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-style.png) -15px -14px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.lout2{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-style.png) -125px -14px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.lout3{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-style.png) -235px -14px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.lout4{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-style.png) -345px -14px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.lout5{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-style.png) -15px -84px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.lout6{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-style.png) -125px -84px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.lout7{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-style.png) -235px -84px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.lout8{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-style.png) -345px -84px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.lout9{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-style.png) -15px -154px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.lout10{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-style.png) -125px -154px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.lout11{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-style.png) -235px -154px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.lout12{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-style.png) -345px -154px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.lout13{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-style.png) -15px -224px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.lout14{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-style.png) -125px -224px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.lout15{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-style.png) -235px -224px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.lout16{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-style.png) -345px -224px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.lout17{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-style.png) -15px -294px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.lout18{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-style.png) -125px -294px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.lout19{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-style.png) -235px -294px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.lout20{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-style.png) -345px -294px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.lout21{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-style.png) -15px -364px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.lout22{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-style.png) -125px -364px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.lout23{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-style.png) -235px -364px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.lout24{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-style.png) -345px -364px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.lout25{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-style.png) -15px -434px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.lout26{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-style.png) -125px -434px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.lout27{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-style.png) -235px -434px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.lout28{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-style.png) -345px -434px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.effect0{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/box-shadows.png) -10px -13px no-repeat;width:100px;height:60px}#add_new_team #settingcommon .team-input .radio-btns.effect1{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/box-shadows.png) -120px -14px no-repeat;width:100px;height:60px}#add_new_team #settingcommon .team-input .radio-btns.effect2{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/box-shadows.png) -230px -15px no-repeat;width:100px;height:60px}#add_new_team #settingcommon .team-input .radio-btns.effect3{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/box-shadows.png) -10px -84px no-repeat;width:100px;height:60px}#add_new_team #settingcommon .team-input .radio-btns.effect4{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/box-shadows.png) -120px -83px no-repeat;width:100px;height:60px}#add_new_team #settingcommon .team-input .radio-btns.effect5{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/box-shadows.png) -230px -83px no-repeat;width:100px;height:60px}#add_new_team #settingcommon .team-input .radio-btns.effect6{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/box-shadows.png) -10px -154px no-repeat;width:100px;height:60px}#add_new_team #settingcommon .team-input .radio-btns.effect7{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/box-shadows.png) -120px -153px no-repeat;width:100px;height:60px}#add_new_team #settingcommon .team-input .radio-btns.effect8{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/box-shadows.png) -230px -153px no-repeat;width:100px;height:60px}#add_new_team #settingcommon .team-input .radio-btns.effect9{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/box-shadows.png) -10px -223px no-repeat;width:100px;height:60px}#add_new_team #settingcommon .team-input .radio-btns.effect10{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/box-shadows.png) -120px -222px no-repeat;width:100px;height:60px}#add_new_team #settingcommon .team-input .radio-btns.effect11{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/box-shadows.png) -230px -224px no-repeat;width:100px;height:60px}#add_new_team #settingcommon .team-input .labelexpanded input:checked + .radio-btns{border-color:#253c6a}#add_new_team #settingcommon .team-input .radio-btns.btn-group .dashicons-yes-alt{width:16px;height:16px;font-size:24px}#add_new_team #settingcommon .team-input .labelexpanded input:checked + .radio-btns.btn-group .dashicons-yes-alt{background:#605105;color:#f3bc59;left:50%;top:-2px;transform:translateX(-50%)}#add_new_team #settingcommon .team-input .radio-btns .dashicons-yes-alt{font-size:36px;position:absolute;top:-10px;right:-10px;width:28px;height:28px;border-radius:50px;opacity:0;z-index:1}#add_new_team #settingcommon .team-input .labelexpanded input:checked + .radio-btns .dashicons-yes-alt{opacity:1;background:#ffffff;color:#135e96}#add_new_team #settingcommon .team-input .radio-btns .dashicons-yes-alt:before{position:absolute;top:-4px;left:-4px}#add_new_team #settingcommon .team-input .radio-btns span{position:absolute;bottom:-18px;left:-1px;width:100%;padding:0 1px;text-align:center;background-color:#eaeaea;border-bottom-left-radius:15px;border-bottom-right-radius:15px}#add_new_team #settingcommon .team-input .marked_ribbon .radio-btns span{top:45px;left:-1px;bottom:unset;width:89px}#add_new_team #settingcommon .team-input .labelexpanded input:checked + .radio-btns span{background-color:#253c6a;color:#fff}#add_new_team #settingcommon .team-input .radio-btns.btn-group span{border-radius:0}#add_new_team #settingcommon .team-input .labelexpanded input:checked + .radio-btns.btn-group span{background-color:#262626}#add_new_team #rwctm_list #rwctm_save.button-primary{float:left;margin:15px 27px 25px}#add_new_team a.rwctm_tooltip,#rwctm_global_settings a.rwctm_tooltip{font-size:18px;margin:0 0 0 5px;position:relative;display:inline-block;color:#364D55}#add_new_team .smheader a.rwctm_tooltip:hover:after,#add_new_team #teamcolumndiv a.rwctm_tooltip:hover:after,#add_new_team #settingcommon a.rwctm_tooltip:hover:after,#rwctm_global_settings a.rwctm_tooltip:hover:after,#add_new_team .team_list table tbody td #copy_team.duplicate_team:hover:after{background:#e5f9e0;border:1px solid #80c780;color:#378037;-moz-border-radius:5px;-webkit-border-radius:5px;-o-border-radius:5px;-khtml-border-radius:5px;border-radius:5px;top:30px;left:-90px;content:attr(rel);padding:20px;position:absolute;z-index:98;width:320px;font-size:14px;text-align:left;line-height:24px}#add_new_team .smheader a.rwctm_tooltip.rwctm_left:hover:after{right:-90px;left:unset}#add_new_team .smheader a.rwctm_tooltip:hover .rwctm_ttarrow::before,#add_new_team #teamcolumndiv a.rwctm_tooltip:hover .rwctm_ttarrow::before,#add_new_team #settingcommon a.rwctm_tooltip:hover .rwctm_ttarrow::before,#rwctm_global_settings a.rwctm_tooltip:hover .rwctm_ttarrow::before,#rwctm_global_settings a.rwctm_tooltip.rwctm_note:hover::before,#add_new_team .team_list table tbody td #copy_team.duplicate_team:hover:before{content:"";border:solid;border-color:transparent transparent #80c780;border-width:10px;top:10px;left:-1px;position:absolute;z-index:99}#add_new_team #teamcolumndiv a.rwctm_tooltip::before{position:relative;top:1px}#add_new_team #settingcommon a.rwctm_tooltip::before{position:relative;top:4px}#add_new_team #teamcolumndiv a.rwctm_tooltip:hover:after,#add_new_team #settingcommon a.rwctm_tooltip:hover:after,#add_new_team .team_list table tbody td #copy_team.duplicate_team:hover:after{background:#3c434a;color:#fff;border:1px solid #1d2327;top:-20px;left:35px;right:unset;padding:10px 20px;padding:15px 30px;font-size:14px;line-height:20px}#add_new_team #teamcolumndiv a.rwctm_tooltip:hover:after,#add_new_team #settingcommon a.rwctm_tooltip:hover:after{width:300px}#add_new_team #teamcolumndiv a.rwctm_tooltip:hover .rwctm_ttarrow::before,#add_new_team #settingcommon a.rwctm_tooltip:hover .rwctm_ttarrow::before,#add_new_team .team_list table tbody td #copy_team.duplicate_team:hover:before{border-color:transparent #3c434a transparent transparent;top:unset;bottom:-3px;left:16px}#add_new_team #teamcolumndiv a.rwctm_tooltip:hover .rwctm_ttarrow::before{bottom:0}#add_new_team .team_list table tbody td #copy_team.duplicate_team:hover:before{bottom:1px}#add_new_team .team_list table tbody td #copy_team.duplicate_team:hover:after{top:-4px;padding:5px 10px;width:98px;font-size:14px}#add_team_template .template-container{clear:both;margin-top:20px;padding:0 0 100px}#add_team_template .template-container .template-items{cursor:pointer;float:left;margin:0 1% 1% 0;position:relative;width:24.2%;border:1px solid #dedede;-webkit-box-shadow:0 1px 1px -1px rgba(0,0,0,.1);box-shadow:0 1px 1px -1px rgba(0,0,0,.1);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#add_team_template .template-container .template-items:focus,#add_team_template .template-container .template-items:hover{cursor:pointer}#add_team_template .template-container .template-items:nth-child(4n){margin-right:0}#add_team_template .template-container .template-items .template-img{background:#fff;display:block;overflow:hidden;position:relative;text-align:center;-webkit-transition:opacity .2s ease-in-out;transition:opacity .2s ease-in-out}#add_team_template .template-container .template-items .template-img .demo_link{opacity:0;position:absolute;top:50%;left:50%;font-size:14px;font-weight:600;background:#07156b;width:36%;height:36px;line-height:36px;color:#fff;padding-left:3px;text-decoration:none;text-align:center;border-radius:4px;transform:translate(-50%,-50%)}#add_team_template .template-container .template-items .template-img .demo_link span{position:relative;top:10px;left:-2px;font-size:16px}#add_team_template .template-container .template-items .template-img .demo_link:hover{background:#333333}#add_team_template .template-container .template-items .template-img:after{content:"";padding:0}#add_team_template .template-container .template-items:focus .template-img,#add_team_template .template-container .template-items:hover .template-img{background:#fff}#add_team_template .template-container .template-items .template-img img{position:relative;width:100%;-webkit-transition:opacity .2s ease-in-out;transition:opacity .2s ease-in-out}#add_team_template .template-container .template-items:focus .template-img img,#add_team_template .template-container .template-items:hover .template-img img{opacity:.4}#add_team_template .template-container .template-items .template-name{font-size:15px;font-weight:600;height:18px;margin:0;padding:15px;-webkit-box-shadow:inset 0 0 2px 4px #ffffff;box-shadow:inset 0 0 2px 4px #ffffff;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;background:#fff}#add_team_template .template-container .template-items.focus .template-actions,#add_team_template .template-container .template-items:focus .template-actions,#add_team_template .template-container .template-items:hover .template-actions,#add_team_template .template-container .template-items:hover .template-img .demo_link{-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);filter:opacity(1);opacity:1}#add_team_template .template-container .template-items .template-actions{-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);filter:opacity(0);opacity:0;-webkit-transition:opacity .1s ease-in-out;transition:opacity .1s ease-in-out;position:absolute;bottom:0;right:0;height:38px;padding:9px 10px 0;background:rgba(244,244,244,.7);border-left:1px solid rgba(0,0,0,.05)}#add_team_template .template-container .template-items .template-actions .button-secondary{float:none;margin-left:3px}#add_team_template .template-container .template-items .template-actions .button-primary{margin-right:3px}#rwctm-modal-container{position:fixed;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,0.7);display:flex;align-items:center;justify-content:center;z-index:9999}#rwctm-modal-container #rwctm-modal-content{background-color:#fff;max-width:90%;max-height:90%;overflow:auto;padding:20px;box-shadow:0 0 10px rgba(0,0,0,0.3)}#rwctm-modal-container #rwctm-modal-content img{width:100%}#rwctm_global_settings h2{margin:1em 0 .56em;font-size:24px;font-weight:600}#rwctm_global_settings .rwctm_global.ui-widget.ui-widget-content{margin:0 0 20px;width:64%;float:left;background:#fff}.rwctm_global .rwctm_options{float:left;width:100%;margin:5px 2px 15px}.rwctm_global #user_choice_font{display:inline-block;background:#F8F8FF;border:1px solid #aaa;-moz-border-radius:5px;-webkit-border-radius:5px;-o-border-radius:5px;-khtml-border-radius:5px;border-radius:5px;color:#6E6E6E;margin:10px auto 20px;padding:10px 20px 20px;font-style:italic}.rwctm_global label.rwctm_global_check{float:left;border-radius:10px;padding:6px;margin:0 7px 10px 0;position:relative;font-size:13px;cursor:pointer;line-height:24px;background-color:#f5f5f5;background-image:-moz-linear-gradient(top,#fff,#e6e6e6);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fff),to(#e6e6e6));background-image:-webkit-linear-gradient(top,#fff,#e6e6e6);background-image:-o-linear-gradient(top,#fff,#e6e6e6);background-image:linear-gradient(to bottom,#fff,#e6e6e6);background-repeat:repeat-x;border:1px solid #ccc;border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);border-bottom-color:#b3b3b3;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#ffe6e6e6',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);box-shadow:inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05)}.rwctm_global label.rwctm_global_check input[type=checkbox]:after{content:"On";position:absolute;z-index:1;margin:-14px 0 0;top:50%;right:4px;display:inline-block;background:#9ad179;padding:14px 5px;width:4em;border-radius:30px;box-shadow:inset 1px 1px 1px rgba(0,0,0,0.3);color:#669933;text-transform:uppercase;font-size:11px;text-align:left}.rwctm_global label.rwctm_global_check input[type=checkbox]:before{content:"";position:absolute;z-index:2;width:1.6em;height:1.6em;top:50%;margin-top:-.8em;right:7px;font-size:14px;background:#eee;border-radius:1em;box-shadow:0 1px 1px #999,inset 0 3px 4px #fff;transition:right .05s linear}.rwctm_global #user_choice_font .rwctm_options{margin-bottom:0}.rwctm_global label.input-check,.rwctm_global label.input-title{padding:9px 0;float:left;font-size:14px;width:65%;cursor:auto}.rwctm_global label.rwctm_global_check{width:62px;height:34px;margin:0;padding:0}.rwctm_global input.medium{padding:9px 5px;border-radius:5px;border:1px solid #ccc;width:49%;margin:2px 0 0}.rwctm_global #user_choice_font label.input-title a.global-link{color:#2271b1;text-decoration:none}.rwctm_global #user_choice_font label.input-title a.global-link:hover{text-decoration:underline}.rwctm_global #user_choice_font label.input-title a.global-link::after{content:'\f504';font-family:dashicons;font-size:16px;position:relative;top:2px}.rwctm_global #user_choice_font input.medium{width:100%}.rwctm_global label.rwctm_global_check input[type=checkbox]{margin:10px 24px}.rwctm_global label.rwctm_global_check input[type=checkbox]:after{content:"Off";text-align:right;padding-right:6px;background:#CCCCCC;color:#EEEEEE}.rwctm_global label.rwctm_global_check input[type=checkbox]:checked:after{content:"On";position:absolute;z-index:1;margin:-14px 0 0;top:50%;right:4px;display:inline-block;background:#9ad179;padding:14px 5px;width:4em;border-radius:30px;box-shadow:inset 1px 1px 1px rgba(0,0,0,0.3);color:#669933;text-transform:uppercase;font-size:11px;text-align:left}.rwctm_global label.rwctm_global_check input[type=checkbox]:before{right:34px}.rwctm_global label.rwctm_global_check input[type=checkbox]:checked:before{content:"";position:absolute;z-index:2;width:1.6em;height:1.6em;top:50%;margin-top:-.8em;right:7px;font-size:14px;background:#eee;border-radius:1em;box-shadow:0 1px 1px #999,inset 0 3px 4px #fff;transition:right .05s linear}#rwctm_global_settings a.rwctm_tooltip{width:18px;height:18px}#rwctm_global_settings a.rwctm_tooltip:hover:after{top:-25px;left:30px;right:unset;width:360px;font-style:normal;line-height:20px}#rwctm_global_settings a.rwctm_tooltip.rwctm_note:hover:after{top:-36px}#rwctm_global_settings a.rwctm_tooltip:hover .rwctm_ttarrow::before,#rwctm_global_settings a.rwctm_tooltip.rwctm_note:hover::before{top:-2px;left:10px;border-color:transparent #80c780 transparent transparent}#rwctm_global_settings a.rwctm_tooltip.rwctm_note:hover::before{top:0}#rwctm_global_settings .dashicons{margin-left:5px;margin-top:-1px}#rwctm_global_settings #user_choice_font .dashicons{margin-top:2px}#rwctm_global_settings a.rwctm_tooltip.rwctm_note{background:none;left:-24px;top:-1px}#rwctm_global_settings a.rwctm_tooltip.rwctm_note:hover:after{min-width:300px;max-width:524px;width:500px;font-size:14px;line-height:24px;padding:45px 30px 20px;color:#323232}#rwctm_global_settings a.rwctm_tooltip.rwctm_note:hover i.attention::after{content:attr(title);position:absolute;top:-15px;left:61px;font-size:16px;line-height:24px;color:#323232;font-style:normal;min-width:300px;z-index:99}#rwctm_global_settings a.rwctm_tooltip.rwctm_note::before{top:-4px}.simple-css .CodeMirror{height:80vh}#rwctm_global_settings .rwctm_global .rwctm_custom_css .CodeMirror{border:1px solid #ddd}#rwctm_global_settings .rwctm_global .rwctm_custom_css .CodeMirror-scroll{margin-right:0}#rwctm_global_settings .rwctm_global .rwctm_custom_css .CodeMirror-sizer{border:0;margin-left:46px!important}#rwctm_global_settings .rwctm_global .rwctm_custom_css .CodeMirror-gutters{left:0!important}#rwctm_global_settings .rwctm_global .rwctm_custom_css .CodeMirror-lint-markers{width:auto}#rwctm_global_settings .rwctm_global .rwctm_custom_css .CodeMirror-gutter.CodeMirror-linenumbers{width:45px!important}.rwctmusage-maincontent{padding:0 20px 0 0}.rwctmusage-maincontent .rwctm{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;margin:0 auto 20px;background:#f9fcff;box-shadow:0 0 4px 2px rgb(34 35 58 / 20%);padding:25px;border-radius:25px;transition:all .3s}.rwctmusage-maincontent .rwctm h3{font-size:18px;font-weight:700;color:#0d0925;margin-bottom:20px;border-bottom:1px solid #72777c;padding-bottom:7px;text-transform:uppercase;line-height:30px}.rwctmusage-maincontent .rwctm p{font-size:16px;padding:0 10px}.rwctmusage-maincontent .prepend-top{margin-top:10px;margin-bottom:10px}.rwctmusage-maincontent .append-1{padding:0 10px}.rwctm_guide.postbox-container .rwctmusage-maincontent .getting-started_video{display:flex}.rwctm_guide.postbox-container .rwctmusage-maincontent .getting-started_video img{max-width:100%}.rwctm_guide.postbox-container h2{font-size:24px;margin-top:0}#rwctm-narration{position:relative;top:30px;margin:0 0 50px;width:64%;float:left}#rwctm-narration #rwctmusage-note.rwctmusage-maincontent{padding-bottom:64px}#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm .likeit{position:relative;margin:0 0 50px;font-size:14px;text-transform:uppercase;text-align:justify;color:#2271b1;font-weight:600;line-height:1.5}#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm .likeit a{position:absolute;left:50%;top:calc(100% + 5px);font-size:16px;background-image:linear-gradient(147deg,#fe8a39 0%,#fd3838 74%);margin:10px 0 0;padding:6px 18px;border-radius:50px;color:#fff;text-decoration:none;text-align:center;letter-spacing:4px;transform:translateX(-50%)}#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm .likeit a:hover{text-decoration:none;color:#ffe000;background-image:linear-gradient(335deg,#fe8a39 0%,#fd3838 74%)}#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm blockquote{position:relative;margin:40px 0;padding:2.6em 2.6em 10px;background:hsl(0 0% 97%) no-repeat left / 140px;border-radius:7px;border:2px solid white;box-shadow:2px 2px 4px hsl(0 0% 0% / 20%);text-indent:1.6em}@media (min-width: 768px){#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm blockquote{margin:40px 5px}}#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm blockquote::before{content:"";pointer-events:none;position:absolute;z-index:1;left:0;top:0;right:0;bottom:0;border-radius:7px;box-shadow:inset -2px -2px 1px hsl(0 0% 100%),inset 2px 2px 4px hsl(0 0% 0% / 20%)}#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm blockquote::after{content:"\f122";font-family:dashicons;position:absolute;z-index:1;left:50%;top:-2px;transform:translate(-50%,-50%);width:50px;height:50px;background:white;box-shadow:0 4px 5px -1px hsla(0 0% 0% / 20%);border-radius:999px;display:grid;place-content:center;padding:0;color:#3059fd;font-size:30px;font-style:normal;text-indent:0}#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm blockquote p{font-size:.85rem;font-style:italic;font-weight:400;letter-spacing:normal;margin-left:49%}#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm blockquote .blockquote-author-image{position:absolute;left:11px;top:11px;width:48%;height:94%;background:#f7f7f7 url(../images/general-settings-shortcode-page-url.png) no-repeat;background-position:-12px 0;background-size:contain;border-top-left-radius:7px;border-bottom-left-radius:7px}#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm blockquote cite{display:block;margin-top:-20px;text-indent:0;text-align:right;text-transform:uppercase;color:hsl(0 0% 20%)}@media (min-width: 768px){#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm blockquote cite{margin-left:calc(5rem - 140px)}}#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm blockquote .cite-last-name{background:#3059fd;color:hsl(0 0% 97%)}#rwctm-sidebar.code{position:relative;width:34%;float:left;top:60px;margin-left:15px;margin-bottom:50px}#rwctm-sidebar.code.rwctm-tools{width:30%;top:0;left:20px;margin-left:0}#rwctm-sidebar.code.rwctm-tools #rwctmusage-info{display:none}#rwctm-sidebar .rwctmusage-sidebar h3{border-bottom:1px solid #72777c;padding-bottom:7px;text-transform:uppercase}#rwctm-sidebar.code .rwctmusage-sidebar h3{font-size:24px;font-weight:700;color:#0d0925;margin-bottom:10px;line-height:30px}#rwctm-sidebar #rwctmusage-note.rwctmusage-sidebar,#rwctm-sidebar #rwctmusage-info.rwctmusage-sidebar{background-color:#ffffff;border:1px solid #ddd;color:#000;position:relative;max-width:422px;padding:15px;margin-bottom:20px!important;box-shadow:0 14px 80px rgb(34 35 58 / 20%);padding:25px;border-radius:25px;transition:all .3s}#rwctm-sidebar.code #rwctmusage-note.rwctmusage-sidebar,#rwctm-sidebar.code #rwctmusage-info.rwctmusage-sidebar{height:auto;padding-top:0;padding-bottom:40px}#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm,#rwctm-sidebar #rwctmusage-note.rwctmusage-sidebar .rwctm{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;margin:0 0 10px;line-height:30px}#rwctm-sidebar.code #rwctmusage-note.rwctmusage-sidebar .rwctm .rwctm-first::first-letter{font-size:2em;line-height:1;letter-spacing:-4px;font-weight:700;color:#e9950c}#rwctm-sidebar #rwctmusage-note.rwctmusage-sidebar .rwctm pre{overflow:auto;margin:0;scrollbar-width:thin;scrollbar-color:#d4aa70 #0e8cf1;scrollbar-gutter:stable}#rwctm-sidebar #rwctmusage-note.rwctmusage-sidebar .rwctm pre::-webkit-scrollbar{height:8px}#rwctm-sidebar #rwctmusage-note.rwctmusage-sidebar .rwctm pre::-webkit-scrollbar-track{background-color:#343541}#rwctm-sidebar #rwctmusage-note.rwctmusage-sidebar .rwctm pre::-webkit-scrollbar-thumb{background-color:#0e8cf1;border-radius:100px;background-clip:content-box}#rwctm-sidebar #rwctmusage-note.rwctmusage-sidebar .rwctm code{color:#ffd100;display:block;height:36px;line-height:36px;margin:0;padding:0 4px;font-size:13px;font-weight:600;border-left:10px solid #343541;background:#000000;min-width:410px;width:490px}#rwctm-sidebar.code #rwctmusage-note.rwctmusage-sidebar .rwctm ol li code{width:auto;min-width:298px}#rwctm-sidebar.code #rwctmusage-note.rwctmusage-sidebar .rwctm p{font-size:.94rem;line-height:1.35;margin-bottom:10px}#rwctm-sidebar.code #rwctmusage-note.rwctmusage-sidebar .rwctm p:last-child{margin:10px 0 -25px}#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm ol,#rwctm-sidebar.code #rwctmusage-note.rwctmusage-sidebar .rwctm ol{margin:15px 10px 15px 24px;padding:0}#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm ol li,#rwctm-sidebar.code #rwctmusage-note.rwctmusage-sidebar .rwctm ol li{font-family:none;margin:0 0 5px;padding:0;font-size:13px;font-weight:400;line-height:1.4;color:#445460}#rwctm-sidebar.code #rwctmusage-note.rwctmusage-sidebar .rwctm ol li pre{margin:10px -21px;width:calc(100% + 24px)}#rwctm-sidebar #rwctmusage-note.rwctmusage-sidebar .rwctm pre code,#rwctm-sidebar.code #rwctmusage-note.rwctmusage-sidebar .rwctm pre code{border-left-width:10px;border-left-color:#343541;background:#000;color:#fff;height:50px;line-height:50px}#rwctm-sidebar #rwctmusage-note.rwctmusage-sidebar .rwctm .rwctm-meta{color:hsla(0,0%,100%,.6)}#rwctm-sidebar #rwctmusage-note.rwctmusage-sidebar .rwctm .rwctm-keyword{color:#2e95d3}#rwctm-sidebar #rwctmusage-note.rwctmusage-sidebar .rwctm .rwctm-function{color:#f22c3d}#rwctm-sidebar #rwctmusage-note.rwctmusage-sidebar .rwctm .rwctm-string{color:#00a67d}#rwctm-sidebar #rwctmusage-note.rwctmusage-sidebar .rwctm .rwctm-built_in{color:#e9950c}#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm a,#rwctm-sidebar.code #rwctmusage-note.rwctmusage-sidebar .rwctm a{float:none;background:none;margin:0;padding:0;color:#2271b1;font-size:100%;border-radius:0;box-shadow:none;border:0;font-weight:600;text-decoration:none}#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm a:hover,#rwctm-sidebar.code #rwctmusage-note.rwctmusage-sidebar .rwctm a:hover{color:#135e96;text-decoration:underline}#rwctm-sidebar #rwctmusage-info.rwctmusage-sidebar .rwctmusage-list{margin:10px 0 0}#rwctm-sidebar #rwctmusage-info.rwctmusage-sidebar .rwctmusage-list li{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;list-style:disc;margin:0 0 0 20px;font-size:16px;line-height:30px}#rwctm-sidebar #rwctmusage-info.rwctmusage-sidebar a{color:#0073aa;text-decoration:none;font-weight:600}#rwctm-sidebar #rwctmusage-info.rwctmusage-sidebar a:hover{text-decoration:underline}#add_new_team .team_list p.get_started,#add_new_team .team_list p.activity_notice,#rwctm_global_settings .rwctm_global .rwctm_custom_css p.get_started{color:#464646;margin:0 auto 30px;padding:30px;font-size:18px;font-weight:400;font-style:italic;background:#fff;border-left:10px solid #7ad03a;-webkit-box-shadow:0 1px 1px 0 rgb(0 0 0 / 10%);box-shadow:0 0 3px 1px rgb(0 0 0 / 20%);max-width:95%;border-radius:30px}#add_new_team .team_list p.activity_notice{text-align:center;position:absolute;bottom:0;left:50%;padding:10px 15px;display:inline-block;transform:translateX(-50%);width:50%;border-radius:25px}#rwctm_global_settings .rwctm_global .rwctm_custom_css p.get_started{width:90%;font-size:16px;margin-top:50px;margin-bottom:10px}#add_new_team .table_list p.get_started,#add_new_team .table_list p.rwctm_notice,#rwctm_global_settings .rwctm_global .rwctm_custom_css p.get_started{border-radius:25px;transition:all .3s}#add_new_team .wp-picker-container.wp-picker-active{width:100%}#add_new_team .wp-picker-container.wp-picker-active .wp-picker-open + .wp-picker-input-wrap label{float:left;width:70px!important}#add_new_team .wp-picker-container.wp-picker-active .wp-picker-open + .wp-picker-input-wrap .wp-color-picker{width:70px;float:left}#add_new_team .wp-picker-container.wp-picker-active .wp-picker-holder{width:100%!important}#add_new_team .wp-picker-container.wp-picker-active .wp-picker-holder .iris-picker{max-width:240px!important}#add_new_team .wp-picker-container.wp-picker-active .iris-picker-inner .iris-square{margin-right:6px!important;max-height:147px!important}#add_new_team .wp-picker-container.wp-picker-active .iris-palette-container .iris-palette{width:17px!important;height:17px!important;margin-bottom:4px!important}#add_new_team .wp-picker-container.wp-picker-active .iris-palette-container .iris-palette:nth-child(9)+ a.iris-palette{float:left;clear:left;margin-left:0!important}#add_new_team .wp-picker-container .wp-color-result.button{font-size:12px}#add_new_team a.wp-color-result{margin:2px 2px 0 0}#add_new_team .wp-picker-container input[type=text].wp-color-picker,#add_new_team .button.button-small{margin:0 0 0 -2px;font-size:12px;height:32px;line-height:32px}#add_new_team .button.button-small{margin-left:2px}@media only screen and (min-width:1366px){#teamcolumndiv .member_details{width:525px}}@media only screen and (max-width:1365px) and (min-width:1300px){#teamcolumndiv .member_details{width:493px}#teamcolumndiv .element-input{width:470px}#teamcolumndiv .element-input hr{width:445px}#teamcolumndiv .element-input label.input-title,#add_new_team .element-input label.input-check,#teamcolumndiv .element-input label.input-title-check{width:215px}#teamcolumndiv .element-input label.input-image{width:100px}#add_new_team .element-input table tr.team-header,#add_new_team .element-input table tr.team-input{max-width:94%}#add_new_team .wp-picker-container.wp-picker-active .wp-picker-holder{position:relative;left:-121px}#teamcolumndiv .element-input .rwctm-uploader input.medium{width:198px}}@media only screen and (max-width:1299px) and (min-width:1200px){#add_new_team #teamactivitydiv tr.activitybody td input[type="text"]{max-width:162px}#teamcolumndiv .member_details{width:442px}#teamcolumndiv .element-input{width:419px}#teamcolumndiv .element-input hr{width:395px}#teamcolumndiv .element-input label.input-title,#add_new_team .element-input label.input-check,#teamcolumndiv .element-input label.input-title-check{width:180px}#teamcolumndiv .element-input input.medium{width:210px}#teamcolumndiv .element-input label.input-title.mb-section,#teamcolumndiv .element-input label.input-title.mb-status{width:115px}#add_new_team .element-input .selectize-control.single,#add_new_team .element-input .selectize-control.multi,#add_new_team #settingcommon .team-input .selectize-control.single{width:275px}#teamcolumndiv .element-input label.input-title.mb-section .rwctm_tooltip,#teamcolumndiv .element-input label.input-title.mb-status .rwctm_tooltip{margin-top:9px}#teamcolumndiv .element-input input.in_small{width:122px}#teamcolumndiv .element-input label.input-image{width:100px}#teamcolumndiv .element-input label.input-title.double-text,#teamcolumndiv .element-input label.input-title.double-text:after{width:72px}#teamcolumndiv .element-input input[type=text].in_double_one{width:150px;margin-left:10px;font-size:12px}#teamcolumndiv .element-input input[type=text].in_double_two{width:160px;font-size:12px;margin-top:5px}#add_new_team .element-input table tr.team-header,#add_new_team .element-input table tr.team-input{max-width:413px}#add_new_team .wp-picker-container.wp-picker-active .wp-picker-holder{position:relative;left:-121px}#teamcolumndiv .element-input .rwctm-uploader input.medium{width:170px}}@media only screen and (max-width:1199px) and (min-width:1024px){#add_new_team .team_list table tbody td.team_name{width:410px}#add_new_team .team_list table tbody td.team_name #set_team,#add_new_team .team_list table tbody td input.rwctm_shortcode{font-size:14px}#add_new_team .team_list table tbody td.team_name span{font-size:12px}#add_new_team .team_list table tbody td.shortcode{width:290px}#add_new_team .team_list table tbody td .temp_choice{width:124px}#add_new_team .team_list table tbody td .temp_choice select{font-size:14px;padding-left:5px}#add_new_team #teamactivitydiv tr.activitybody td input[type="text"]{max-width:102px}#add_new_team #teamactivitydiv tr.activitybody td input[type="text"],#add_new_team #teamactivitydiv tr.activitybody td > span{font-size:12px;padding:5px 8px}#add_new_team #teamactivitydiv tr.activitybody td input[type="text"][name="awesome_icon[]"]{max-width:148px;width:148px}#teamcolumndiv .member_details{width:354px}#teamcolumndiv .element-input{width:331px;padding:10px 5px!important}#teamcolumndiv .element-input label.input-title,#add_new_team .element-input label.input-check,#teamcolumndiv .element-input label.input-title-check,#settingcolumndiv .advance-input label.input-radio{padding:10px;width:310px}#add_new_team .element-input input.medium,#teamcolumndiv .element-input input.in_small{width:315px;margin-left:8px}#teamcolumndiv .element-input hr,#teamcolumndiv .element-input label.input-title.double-text:after{width:320px}#teamcolumndiv .element-input label.input-title.mb-section,#teamcolumndiv .element-input label.input-title.mb-status{width:92%}#teamcolumndiv .element-input label.input-title.mb-section .rwctm_tooltip,#teamcolumndiv .element-input label.input-title.mb-status .rwctm_tooltip{margin-top:9px}#add_new_team .element-input .selectize-control.single,#add_new_team .element-input .selectize-control.multi{width:315px;margin:0;padding:0 8px}#teamcolumndiv .element-input input[type=text].in_small{margin-bottom:0}#teamcolumndiv .element-input input[type=number].in_small{width:220px;margin-bottom:0}#teamcolumndiv .element-input input[type=text].in_double_one{width:315px;margin:0 9px;border-radius:5px;border:1px solid #ccc;border-bottom-left-radius:0;border-bottom-right-radius:0}#teamcolumndiv .element-input input[type=text].in_double_two{width:315px;margin:0 9px;border-top:0;border-radius:5px;border-top-left-radius:0;border-top-right-radius:0}#add_new_team .element-input table tr.team-input th{width:325px;display:block}#add_new_team .element-input table tr.team-input .input-title{padding:0 10px}#add_new_team #settingcommon .ui-tabs .ui-tabs-nav li{margin:3px 1px -1px;font-size:13px}#add_new_team #settingcommon .cs-inactive,#add_new_team #settingcommon .cs-active{height:35px;line-height:35px;top:27px}#add_new_team #settingcommon .team-input #max-column .selectize-control.single{width:140px}#add_new_team #settingcommon .team-input .team_options .layout-style{width:60%}}@media only screen and (max-width:1023px) and (min-width:961px){#add_new_team .team_list table tbody td.team_name{width:410px}#add_new_team .team_list table tbody td.team_name #set_team,#add_new_team .team_list table tbody td input.rwctm_shortcode{font-size:12px}#add_new_team .team_list table tbody td.team_name span{font-size:10px}#add_new_team .team_list table tbody td.shortcode{width:230px}#add_new_team .team_list table tbody td .temp_choice{width:112px}#add_new_team .team_list table tbody td .temp_choice select{font-size:12px;padding-left:5px}#add_new_team .team_list table tbody td.rwctm-status .status{width:30px!important;height:30px;top:-3px;left:50%;font-size:0;padding-right:0!important;transform:translateX(-50%)}#add_new_team .team_list table tbody td span.status:after{top:10px}#add_new_team #teamactivitydiv tr.activitybody td input[type="text"]{max-width:80px}#add_new_team #teamactivitydiv tr.activitybody td input[type="text"],#add_new_team #teamactivitydiv tr.activitybody td > span{font-size:12px;padding:5px 3px}#add_new_team #teamactivitydiv tr.activitybody td input[type="text"][name="awesome_icon[]"]{max-width:148px;width:148px}#add_new_team #settingcommon .ui-tabs .ui-tabs-nav li{margin:3px 1px -1px;font-size:12px}#add_new_team #settingcommon .cs-inactive,#add_new_team #settingcommon .cs-active{height:32px;line-height:32px;top:27px;right:25px}#add_new_team #settingcommon .team-input #max-column .selectize-control.single{width:124px}#add_new_team #settingcommon .team-input .team_options .layout-style{width:60%}#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm blockquote p{position:relative;margin:190px 0 0;padding:0;font-size:.5rem}#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm blockquote .blockquote-author-image{width:90%;height:53%;background-size:cover;background-position:12px -143px}#rwctm-sidebar.code{width:33%}}@media only screen and (max-width:960px) and (min-width:783px){#add_new_team .team_list table thead th{font-size:14px}#add_new_team .team_list table thead th:last-child{padding-left:0}#add_new_team .team_list table tbody td.team_name{width:410px}#add_new_team .team_list table tbody td.team_name #set_team,#add_new_team .team_list table tbody td input.rwctm_shortcode{font-size:12px}#add_new_team .team_list table tbody td.team_name span{font-size:10px}#add_new_team .team_list table tbody td.shortcode{width:250px}#add_new_team .team_list table tbody td .temp_choice{width:110px}#add_new_team .team_list table tbody td .temp_choice select{font-size:12px;padding-left:5px}#add_new_team .team_list table tbody td.rwctm-status .status{width:20px!important;height:20px;top:-3px;left:50%;font-size:0;padding-right:0!important;transform:translateX(-50%)}#add_new_team .team_list table tbody td span.status:after{top:5px;left:5px}#add_new_team #teamactivitydiv tr.activitybody td input[type="text"]{max-width:100%;width:100%}#add_new_team #teamactivitydiv tr.activitybody td input[type="text"],#add_new_team #teamactivitydiv tr.activitybody td > span{display:block;border-radius:5px 5px 0 0!important;font-size:12px;padding:5px 3px}#add_new_team #teamactivitydiv tr.activitybody td input[type="text"]{border-radius:0 0 5px 5px!important;margin:0!important}#add_new_team #teamactivitydiv tr.activitybody td:nth-of-type(3) input[type="text"][name="awesome_icon[]"]{border-radius:5px 5px 0 0!important}#add_new_team #teamactivitydiv tr.activitybody td:nth-of-type(3) > span{border-radius:0 0 5px 5px!important;margin-left:0!important}#add_new_team #settingcommon .ui-tabs .ui-tabs-nav li{margin:3px 1px -1px;font-size:12px}#add_new_team #settingcommon .ui-tabs .ui-tabs-nav li a{padding:.7em .76em}#add_new_team #settingcommon .cs-inactive,#add_new_team #settingcommon .cs-active{height:32px;line-height:32px;top:27px;right:25px}#add_new_team #settingcommon .team-input #max-column .selectize-control.single{width:105px}#add_new_team #settingcommon .team-input .team_options .layout-style{width:60%}#add_new_team #settingcommon .team-input label.labelexpanded{width:30%}#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm blockquote p{position:relative;margin:190px 0 0;padding:0;font-size:.5rem}#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm blockquote .blockquote-author-image{width:90%;height:50%;background-size:cover;background-position:12px -173px}#rwctm-sidebar.code{width:33%}}@media only screen and (max-width:782px){#add_new_team h2 a.add-new-h2{padding:0 10px}#add_new_team .team_list table#rwctm_list tbody.team_todo{margin-bottom:0;display:grid}#add_new_team .team_list table#rwctm_list tbody.team_todo:last-child{margin-bottom:-9px}#add_new_team .team_list table tbody.team_todo tr{border-bottom-width:0}#add_new_team .team_list table#rwctm_list .team_todo td{border:none;border-bottom:1px solid #eee;position:relative;padding:0;padding-left:38%;text-align:left;height:40px;line-height:40px}#add_new_team .team_list table#rwctm_list .team_todo td:before{position:absolute;top:0;left:0;width:32%;height:40px;padding-right:10px;text-align:right;background:#2271b1;color:#fff;white-space:nowrap}#add_new_team .team_list table#rwctm_list .team_todo td.team_name:before{height:50px}#add_new_team .team_list table#rwctm_list .team_todo td:nth-of-type(1):before{content:"ID:"}#add_new_team .team_list table#rwctm_list .team_todo td:nth-of-type(2):before{content:"Team Name:"}#add_new_team .team_list table#rwctm_list .team_todo td:nth-of-type(3):before{content:"Shortcode:"}#add_new_team .team_list table#rwctm_list .team_todo td:nth-of-type(4):before{content:"Template:"}#add_new_team .team_list table#rwctm_list .team_todo td:nth-of-type(5):before{content:"Status:"}#add_new_team .team_list table#rwctm_list .team_todo td:last-child{border-bottom:0}#add_new_team .team_list table#rwctm_list .team_todo td:nth-of-type(1),#add_new_team .team_list table#rwctm_list .team_todo td:nth-of-type(2),#add_new_team .team_list table#rwctm_list .team_todo td:nth-of-type(3),#add_new_team .team_list table#rwctm_list .team_todo td:nth-of-type(4),#add_new_team .team_list table#rwctm_list .team_todo td:nth-of-type(5){display:block;width:61.6%;font-weight:bold;color:#32373c}#add_new_team .team_list table#rwctm_list .team_todo .team_name{height:50px}#add_new_team .team_list table tbody td.team_name span{padding:0;height:32px}#add_new_team .team_list table tbody td.team_name span#process_team:after{border:none}#add_new_team .team_list table tbody td #copy_team.duplicate_team{top:15px}#add_new_team .team_list table tbody td.team_name div{position:relative;top:-5px;font-size:14px}#add_new_team .team_list table tbody td.team_name span{font-size:8px;font-weight:400;position:relative;top:-30px;margin-left:0;padding-left:2px;border:none}#add_new_team .team_list table tbody td.team_name span#remTeam{position:absolute;right:23px;top:-41px}#add_new_team .team_list table tbody td .ot_tooltip{top:0}#add_new_team .team_list table tbody td input.rwctm_shortcode{min-height:10px;line-height:1;border-bottom-width:1px;font-size:14px}#add_new_team .team_list table tbody td .temp_choice{height:2.2em;line-height:2.2;top:2px}#add_new_team .team_list table tbody td .temp_choice select{font-size:12px;min-height:26px;line-height:22px;margin:0;padding:0 7px;border-bottom-width:1px}#add_new_team .team_list table tbody td .temp_choice::after{font-size:23px;top:-7px;height:39px}#add_new_team .team_list table tbody td span.status{height:21px;line-height:20px;font-size:15px}#add_new_team .team_list table tbody td span.status:after{top:5px}#add_new_team #teamactivitydiv tr.activitybody td > span{display:none}#add_new_team #teamactivitydiv table#activity_edititem{border:none}#add_new_team .team_list table#rwctm_list thead,#add_new_team #teamactivitydiv table#activity_edititem thead{display:none}#add_new_team .team_list table tbody tr{display:block;margin-bottom:20px}#add_new_team #teamactivitydiv table#activity_edititem tr.activitybody{margin-bottom:20px;display:block}#add_new_team #teamactivitydiv table#activity_edititem tr.activitybody td{border:none;border-right:1px solid #ddd;position:relative;margin:0;padding:0;padding-left:37%;text-align:left;height:44px;line-height:43px}#add_new_team #teamactivitydiv table#activity_edititem tr.activitybody td input,#add_new_team #teamactivitydiv table#activity_edititem tr.activitybody td select#activity_type{margin:0;padding:9px 6px 7px;font-size:14px;font-weight:400;border-radius:0;width:100%;border-right:0}#add_new_team #teamactivitydiv tr.activitybody td .select{margin:5px 6px 6px;width:90%}#add_new_team #teamactivitydiv table#activity_edititem tr.activitybody td:nth-of-type(4){border-bottom:1px solid #dddd}#add_new_team #teamactivitydiv tr.activitybody td .select .options{width:100%}#add_new_team #teamactivitydiv table#activity_edititem tr.activitybody td select#activity_type{padding:9px 6px}#add_new_team #teamactivitydiv table#activity_edititem tr.activitybody td::before{position:absolute;top:0;left:1px;width:34%;height:43px;padding-right:10px;text-align:right;background:#22313f;color:#ffffff;white-space:nowrap}#add_new_team #teamactivitydiv table#activity_edititem tr.activitybody td:nth-of-type(1):before{content:"Name:"}#add_new_team #teamactivitydiv table#activity_edititem tr.activitybody td:nth-of-type(2):before{content:"URL:"}#add_new_team #teamactivitydiv table#activity_edititem tr.activitybody td:nth-of-type(3):before{content:"Icon:"}#add_new_team #teamactivitydiv table#activity_edititem tr.activitybody td:nth-of-type(4):before{content:"Type:"}#add_new_team #teamactivitydiv table#activity_edititem tr.activitybody td:nth-of-type(5):before{content:"Actions:"}#add_new_team #teamactivitydiv table#activity_edititem tr.activitybody td:nth-of-type(1),#add_new_team #teamactivitydiv table#activity_edititem tr.activitybody td:nth-of-type(2),#add_new_team #teamactivitydiv table#activity_edititem tr.activitybody td:nth-of-type(3),#add_new_team #teamactivitydiv table#activity_edititem tr.activitybody td:nth-of-type(4),#add_new_team #teamactivitydiv table#activity_edititem tr.activitybody td:nth-of-type(5){display:block;width:62%;font-weight:bold;color:#32373c}#add_new_team .team_list p.activity_notice{font-size:12px;bottom:26px;left:63%;width:55%}#add_new_team .element-input table tr td{display:table-cell}#add_new_team .wp-picker-container .wp-color-result.button.wp-color-result.wp-picker-open{padding:0 0 0 30px}#add_new_team .wp-picker-container .wp-color-result.button.wp-color-result.wp-picker-open span{padding:0 6px}#add_new_team #settingcommon .ui-tabs .ui-tabs-nav li{width:99px;margin-top:7px;font-size:13px}#add_new_team #settingcommon .ui-tabs .ui-tabs-nav li a{width:74px}#add_new_team #settingcommon .cs-inactive,#add_new_team #settingcommon .cs-active{height:35px;line-height:35px;top:74px;right:30px}#add_new_team #settingcommon .team-input span.check_note,#add_new_team #settingcommon .team-input .image_size span.input_note{width:300px;left:0;top:100%;line-height:18px;font-size:9px}#add_new_team #settingcommon .team-input span.input_note,#add_new_team #settingcommon .team-input span.check_note{left:0;top:104%}#add_new_team #settingcommon .team-input .image_size span.input_note{left:265px}#add_new_team #settingcommon .team-input input.medium,#add_new_team #settingcommon .team-input textarea.medium{width:275px}#add_new_team #settingcommon .team-input .selectize-control.single{width:160px}#add_new_team #settingcommon .team-input .tmname_margin label.label-check,#add_new_team #settingcommon .team-input .team_options.tm_name_font label.label-check,#add_new_team #settingcommon .team-input .team_options.nav_font_size label.label-check,#add_new_team #settingcommon .team-input .team_options.mn_thumb_font label.label-check,#add_new_team #settingcommon .team-input .team_options.dp_thumb_font label.label-check,#add_new_team #settingcommon .team-input .team_options.dg_thumb_font label.label-check,#add_new_team #settingcommon .team-input .team_options.bio_thumb_fnt label.label-check,#add_new_team #settingcommon .team-input .team_options.sm_thumb_font label.label-check{display:block}#add_new_team #settingcommon .team-input .team_options.tm_name_font,#add_new_team #settingcommon .team-input .team_options.nav_font_size,#add_new_team #settingcommon .team-input .team_options.mn_thumb_font,#add_new_team #settingcommon .team-input .team_options.dp_thumb_font,#add_new_team #settingcommon .team-input .team_options.dg_thumb_font,#add_new_team #settingcommon .team-input .team_options.bio_thumb_fnt,#add_new_team #settingcommon .team-input .team_options.sm_thumb_font,#add_new_team #settingcommon .team-input .team_options.tmname_margin{padding-top:0}#add_new_team #settingcommon .team-input .team_options .label-check.numgroup{position:relative;display:inline-block;width:224px}#add_new_team #settingcommon .team-input input[type=number].medium{width:100px}#add_new_team #settingcommon .team-input input.tickbox{float:right;top:10px}#add_new_team #settingcommon .team-input .team_options.enable_image .check_note{top:80%;left:0}#add_new_team #settingcommon .team-input #max-column h4{width:100%}#add_new_team #settingcommon .team-input #max-column .team_options{margin:0 15px 30px 0}#add_new_team #settingcommon .team-input #max-column .selectize-control.single{width:130px}#add_new_team #settingcommon .team-input .marked_layout .label-check,#add_new_team #settingcommon .team-input .layout_style .label-check{top:0}#add_new_team #settingcommon .team-input .team_options .layout-style{width:70%}#add_new_team #settingcommon .team-input label.labelexpanded{width:30%}#add_new_team #settingcommon .team-input .team_options.tm_name_font .label-check.numgroup,#add_new_team #settingcommon .team-input .team_options.nav_font_size .label-check.numgroup,#add_new_team #settingcommon .team-input .team_options.mn_thumb_font .label-check.numgroup,#add_new_team #settingcommon .team-input .team_options.dp_thumb_font .label-check.numgroup,#add_new_team #settingcommon .team-input .team_options.dg_thumb_font .label-check.numgroup,#add_new_team #settingcommon .team-input .team_options.bio_thumb_fnt .label-check.numgroup,#add_new_team #settingcommon .team-input .team_options.sm_thumb_font .label-check.numgroup{display:inline}#add_new_team #settingcommon .team-input .tm_name_font span.input_note,#add_new_team #settingcommon .team-input .nav_font_size span.input_note,#add_new_team #settingcommon .team-input .mn_thumb_font span.input_note,#add_new_team #settingcommon .team-input .dp_thumb_font span.input_note,#add_new_team #settingcommon .team-input .dg_thumb_font span.input_note,#add_new_team #settingcommon .team-input .bio_thumb_fnt span.input_note,#add_new_team #settingcommon .team-input .sm_thumb_font span.input_note{position:relative;top:15px;left:5px;display:block}#add_new_team #settingcommon .team-input input.medium.rwctm-color-picker{width:100%}.template-container .template-items{width:32%;margin:0 1% 1% 0}.template-container .template-items .template-actions .button-secondary{min-height:20px;padding:0 14px;line-height:2}#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm blockquote p{font-size:12px}#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm blockquote cite{margin-top:0}#rwctm_global_settings .rwctm_global.ui-widget.ui-widget-content{width:96.5%;margin:0;padding:20px 5px}#rwctm_global_settings .ui-tabs .ui-tabs-nav li{margin:0 1px!important;padding:0!important}#rwctm_global_settings .ui-tabs .ui-tabs-nav .ui-tabs-anchor{padding:5px!important;font-size:12px!important}#rwctm_global_settings .ui-tabs .ui-tabs-panel{padding:0 10px!important}.rwctm_global label.input-check,.rwctm_global label.input-title{width:78%;font-size:12px;height:18px;line-height:10px;padding:9px 0}.rwctm_global label.rwctm_global_check input[type=checkbox]{width:15px;height:15px}.rwctm_global #user_choice_font{padding:10px 9px 10px 5px}#rwctm_global_settings a.rwctm_tooltip:hover:after{top:26px;left:-170px;width:calc(100% + 280px)!important}#rwctm_global_settings a.rwctm_tooltip:hover:before{top:7px;left:-3px;border-color:transparent transparent #aaa}#rwctm_global_settings a.rwctm_tooltip.rwctm_note:hover:after{padding:27px 10px 10px;font-size:12px;top:30px;left:-195px;line-height:20px}#rwctm_global_settings a.rwctm_tooltip.rwctm_note::before{top:11px!important}#rwctm_global_settings a.rwctm_tooltip.rwctm_note:hover i.attention::after{left:-184px;top:34px}#add_new_team .team_list p.get_started,#add_new_team .team_list p.rwctm_notice,#rwctm_global_settings .rwctm_global .rwctm_custom_css p.get_started{width:85%;font-size:12px;padding:15px}#add_new_team .team_list p.rwctm_notice{padding:5px}#add_new_team input#rwctm_add_new,#add_new_team #rwctm_upfeature,#add_new_team #rwctm_addfeature{position:relative;top:-50px}.wrap .rwctm_guide.postbox-container{width:100%!important}.wrap .rwctm_guide.postbox-container .rwctmusage-maincontent{padding:0}#rwctm-narration{width:100%;margin-bottom:0}#rwctm-narration #rwctmusage-note.rwctmusage-maincontent{padding-bottom:0;padding-right:0}#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm,#rwctm-sidebar #rwctmusage-note.rwctmusage-sidebar .rwctm{padding:10px}.rwctmusage-maincontent .rwctm p,#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm .likeit{font-size:12px}#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm blockquote{margin:25px 0}#rwctm-sidebar.code,#rwctm-sidebar.code.rwctm-tools{width:100%;margin:0}#rwctm-sidebar.code.rwctm-tools{margin-top:20px}#rwctm-sidebar.tools{width:100%;margin:10px 0 0}#rwctm-sidebar{width:100%}#rwctm-sidebar #rwctmusage-note.rwctmusage-sidebar,#rwctm-sidebar #rwctmusage-info.rwctmusage-sidebar{max-width:100%}.postbox-container.rwctm-guide{width:100%!important}.rwctm-guide .rwctmusage-maincontent{padding:0}.rwctm-guide .rwctmusage-maincontent .inside .getting-started_video{display:flex}#rwctm-sidebar{width:100%}#rwctm-sidebar.code .rwctmusage-sidebar h3{font-size:20px}#rwctm-sidebar #rwctmusage-note.rwctmusage-sidebar,#rwctm-sidebar #rwctmusage-info.rwctmusage-sidebar{max-width:100%;padding:10px}}@media only screen and (max-width:640px){#add_new_team{overflow:hidden}#add_new_team .team_list #rwctm_list{display:block}#add_new_team .teamactivitywrap{padding:0}#add_new_team .teamcolumnwrap{padding:0 3px 0 4px;margin:0}#teamcolumndiv #addButtons{left:5px}#teamcolumndiv #addButtons a#addMember{position:relative;min-height:30px}#teamcolumndiv .accordion-expand-holder{right:10px;top:43px}#teamcolumndiv #sortable_column{margin:0}#teamcolumndiv .member_details{width:426px}#teamcolumndiv #sortable_column .member_details h3.mtitle{width:378px;font-size:13px;height:24px;line-height:24px}#teamcolumndiv .element-input{width:402px;top:4px}#teamcolumndiv .element-input label.input-title,#add_new_team .element-input label.input-check,#teamcolumndiv .element-input label.input-title-check{padding:0 10px 10px;width:385px}#teamcolumndiv .element-input hr,#teamcolumndiv .element-input label.input-title.double-text:after{width:385px}#teamcolumndiv .element-input input.medium,#teamcolumndiv .element-input textarea[id=member_desc],#teamcolumndiv .element-input textarea[id=short_bio],#teamcolumndiv .element-input textarea[id=tag_line],#add_new_team #settingcommon .team-input textarea.medium{margin-left:9px;width:385px}#add_new_team #settingcommon .team-input textarea.medium{margin-left:0}#add_new_team #settingcommon .team-input .image_size span.input_note{left:0}#add_new_team #settingcommon .team-input #img-custom,#add_new_team #settingcommon .team-input #slider-apspeed{margin-top:0}#add_new_team #settingcommon .team-input .marked_layout .input_note,#add_new_team #settingcommon .team-input .layout_style .input_note{bottom:-70px}#add_new_team #settingcommon .team-input .team_options.enable_filter span.check_note{top:84%}#add_new_team #settingcommon .team-input h4{padding-top:20px}#teamcolumndiv .element-input label.input-title.mb-section,#teamcolumndiv .element-input label.input-title.mb-status{width:92%}#add_new_team #teamcolumndiv .element-input label.input-title.mb-section a.rwctm_tooltip::before,#add_new_team #teamcolumndiv .element-input label.input-title.mb-status a.rwctm_tooltip::before{top:10px}#add_new_team .element-input .selectize-control.single,#add_new_team .element-input .selectize-control.multi{width:385px;margin:0;padding:0 8px}#teamcolumndiv .element-input input[type=text].in_small{margin-left:9px;width:90px}#teamcolumndiv .element-input input[type=number].in_small{width:200px}#teamcolumndiv .element-input input[type=text].in_double_one{width:385px;margin:0 9px;border-radius:5px;border:1px solid #ccc;border-bottom-left-radius:0;border-bottom-right-radius:0}#teamcolumndiv .element-input input[type=text].in_double_two{width:385px;margin:0 9px;border-top:0;border-radius:5px;border-top-left-radius:0;border-top-right-radius:0}#add_new_team .element-input table tr td:before{display:none}#add_new_team .element-input table tr td{width:40%!important;padding:5px 10px 0!important;height:auto!important;line-height:1.3!important}#add_new_team .ui-accordion .ui-accordion-content a.button-primary.rwctm-upload{margin-left:9px}#add_new_team #settingcommon{margin:60px 0 15px;padding:0 5px}#add_new_team #settingcommon .ui-widget.ui-widget-content{padding:0}#add_new_team #settingcommon .cs-inactive,#add_new_team #settingcommon .cs-active{top:-40px;right:5px}#rwctm_global_settings .ui-tabs .ui-tabs-nav,#settingcommon .ui-tabs .ui-tabs-nav{padding:0}#add_new_team #settingcommon .ui-tabs .ui-tabs-nav li{width:32%;max-width:103px;margin:1px;padding-bottom:1px}#add_new_team #settingcommon .ui-tabs .ui-tabs-nav li a{width:75px}#add_new_team #settingcommon .team-input .team_options.tm_name_font .label-check.numgroup,#add_new_team #settingcommon .team-input .team_options.nav_font_size .label-check.numgroup,#add_new_team #settingcommon .team-input .team_options.mn_thumb_font .label-check.numgroup,#add_new_team #settingcommon .team-input .team_options.dp_thumb_font .label-check.numgroup,#add_new_team #settingcommon .team-input .team_options.dg_thumb_font .label-check.numgroup,#add_new_team #settingcommon .team-input .team_options.bio_thumb_fnt .label-check.numgroup,#add_new_team #settingcommon .team-input .team_options.sm_thumb_font .label-check.numgroup{display:inline-block}#add_new_team #settingcommon .team-input label.label-title,#add_new_team #settingcommon .team-input label.label-check{width:218px}#add_new_team #settingcommon .team-input .team_options .label-check.numgroup{width:174px}#add_new_team #settingcommon .team-input #slider-option label.label-check{width:160px}#add_new_team #settingcommon .team-input .team_options .label-check.numgroup{position:relative;top:0;padding:0 0 3px}#add_new_team #settingcommon .team-input input.medium{margin-bottom:10px}#add_new_team #settingcommon .team-input .team_options.tm_name_font,#add_new_team #settingcommon .team-input .team_options.nav_font_size,#add_new_team #settingcommon .team-input .team_options.mn_thumb_font,#add_new_team #settingcommon .team-input .team_options.dp_thumb_font,#add_new_team #settingcommon .team-input .team_options.dg_thumb_font,#add_new_team #settingcommon .team-input .team_options.bio_thumb_fnt,#add_new_team #settingcommon .team-input .team_options.sm_thumb_font,#add_new_team #settingcommon .team-input .team_options.tmname_margin{padding-top:0;margin-bottom:10px}#add_new_team #settingcommon .team-input .rwctm_notice{width:232px;margin-left:0}#add_new_team #settingcommon .team-input .selectize-control.single{width:242px}#add_new_team #settingcommon .team-input #img-features::before,#add_new_team #settingcommon .team-input #filter-nav::before,#add_new_team #settingcommon .team-input #img-custom::before,#add_new_team #settingcommon .team-input #slider-apspeed::before,#add_new_team #settingcommon .team-input .image_margin::before{left:unset;right:0}#add_new_team #settingcommon .team-input #img-custom .rwctm_notice{width:90%;margin-left:-12px;margin-top:42px}#add_new_team #settingcommon .team-input .marked_layout .label-check,#add_new_team #settingcommon .team-input .layout_style .label-check{top:-10px}#add_new_team #settingcommon .team-input .team_options .layout-style{width:300px;margin:0}#add_new_team #settingcommon .team-input label.labelexpanded{width:33%}#add_new_team #settingcommon .team-input .team_options.thumb_desig,#add_new_team #settingcommon .team-input .team_options.thumb_depart,#add_new_team #settingcommon .team-input .team_options.thumb_smicon,#add_new_team #settingcommon .team-input .team_options.member_desig,#add_new_team #settingcommon .team-input .team_options.member_depart,#add_new_team #settingcommon .team-input .team_options.member_smicon{margin-bottom:30px}#add_new_team #settingcommon .team-input input[type=text],#add_new_team #settingcommon .team-input input.medium{width:95%;margin:0}#add_new_team .ui-tabs-panel{padding:10px}#add_team_template .template-container .template-items{width:100%;margin-right:0}#add_team_template .template-container .template-items:nth-child(2n),#add_team_template .template-container .template-items:nth-child(3n){margin-right:0}}@media only screen and (max-width:480px){#add_new_team{overflow:hidden}#add_new_team #teamactivitydiv tr.activitybody td > span{display:none}#add_new_team .teamactivitywrap{padding:0}#teamcolumndiv .member_details{width:308px}#teamcolumndiv #sortable_column .member_details h3.mtitle,#teamcolumndiv .element-input hr,#teamcolumndiv .element-input label.input-title.double-text:after,#teamcolumndiv .element-input input.medium,#teamcolumndiv .element-input textarea[id=member_desc],#teamcolumndiv .element-input textarea[id=short_bio],#teamcolumndiv .element-input textarea[id=tag_line],#add_new_team #settingcommon .team-input textarea.medium{width:260px}#teamcolumndiv .element-input{width:284px}#teamcolumndiv .element-input label.input-title,#add_new_team .element-input label.input-check,#teamcolumndiv .element-input label.input-title-check{width:255px}#add_new_team .element-input .selectize-control.single,#add_new_team .element-input .selectize-control.multi{width:262px}#teamcolumndiv .element-input input[type=text].in_small{width:70px}#teamcolumndiv .element-input input[type=number].in_small{width:167px}#teamcolumndiv .element-input input[type=text].in_double_one,#teamcolumndiv .element-input input[type=text].in_double_two{width:266px}#add_new_team .element-input table tr td:before{display:none}#add_new_team .element-input table tr td{width:60%!important}#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm blockquote{padding-left:15px;padding-right:15px}#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm blockquote p{position:relative;margin:206px 0 0;padding:0;font-size:12px}#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm blockquote .blockquote-author-image{width:92%;height:48%;background-size:contain;background-position:0}}
     11.wrap .rwctm-clear{clear:both}#add_new_team{width:100%}#add_new_team h2 a.add-new-h2{font-style:normal;font-size:14px;font-weight:700}#add_new_team #rwctm_new{display:none}.wrap #add_new_team h2 span#rwctm-loading-image{background:url(../images/ajax-loader.gif) no-repeat 0 0;margin:-3px 10px;width:96px;height:20px;display:none}#add_new_team #rwctm_edit_form #form-messages{position:relative;padding:.75rem 1.25rem;margin-bottom:2px;border-radius:.25rem;border:1px solid rgba(36,241,6,0.46);background-color:#327432;box-shadow:0 0 2px #259c08;color:#e3ffe2;font-size:17px;text-shadow:1px 1px 2px #00040a;transition:.5s;cursor:pointer;display:none}#add_new_team .success:before{content:"";position:absolute;width:0;height:calc(100% - 44px);border-left:1px solid;border-right:2px solid;border-bottom-right-radius:3px;border-top-right-radius:3px;left:0;top:50%;transform:translate(0,-50%);height:20px}#add_new_team .success > .start-icon{margin-right:5px;min-width:20px;text-align:center}#add_new_team .success .greencross{font-size:18px;color:#e3ffe2;text-shadow:none;margin-top:3px}#add_new_team .success .rwctm_close{float:right;position:absolute;top:0;right:0;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5;padding:.6rem 1.25rem;background-color:transparent;border:0}#add_new_team .success .rwctm_close:hover{opacity:1}#add_new_team .success .rwctm_close:not(:disabled):not(.disabled){cursor:pointer}#add_new_team .team_list{position:relative;display:block;margin-top:15px}#add_new_team .team_list .subsubsub{margin-bottom:8px;padding:0 10px;font-size:14px;font-weight:600;background:#fff;color:#1d2327;box-shadow:1px 1px 2px 1px #cbc8c8}#add_new_team .team_list .subsubsub li{position:relative;box-shadow:1px 0 0 0 #c9c9c9;padding:8px 5px 8px 15px}#add_new_team .team_list .subsubsub li:first-child{padding-left:5px}#add_new_team .team_list .subsubsub li:last-child{box-shadow:none}#add_new_team .team_list .subsubsub li span.count{width:20px;height:20px;line-height:20px;margin:0 10px 0 2px;background:#1d2327;color:#fff;border:1px solid #1d2327;border-radius:50%;display:inline-block;text-align:center}#add_new_team .team_list .subsubsub li.publish{color:#1fa750}#add_new_team .team_list .subsubsub li.publish span.count{background:#23bd5a;border-color:#5baf79;color:#fff}#add_new_team .team_list .subsubsub li.unpublish{color:#dca80c}#add_new_team .team_list .subsubsub li:last-child span.count{margin-right:0}#add_new_team .team_list .subsubsub li.unpublish span.count{background:#f2be1d;border-color:#dbac1a;color:#fff}#add_new_team .team_list .button.button-del,#add_new_team .team_list .button.update-all{position:relative;margin:-7px 0 10px 10px;padding:0 0 0 24px;background-color:#d9534f;border-color:#d43f3a;color:#fff;font-weight:500;font-size:14px;width:74px;display:none}#add_new_team .team_list .button.update-all{background-color:#2271b1;border-color:#1a5889;margin-right:-5px;width:81px}#add_new_team .team_list .button.button-del:hover{background-color:#d43f3a}#add_new_team .team_list .button.update-all:hover{background-color:#1a5889}#add_new_team .team_list .button.button-del:before,#add_new_team .team_list .button.update-all:before{content:"\f153";font-family:dashicons;position:absolute;left:5px;top:0;color:#fff}#add_new_team .team_list .button.update-all:before{content:"\f463"}#add_new_team .team_list #rwctm_list{border-collapse:collapse;margin:0 0 1rem;text-align:left;color:#212529;background:#fff;box-shadow:0 0 4px 1px #c0c0d4;width:100%}#add_new_team .team_list table thead tr{background:#2271b1;border-bottom:4px solid #174d78}#add_new_team .team_list table td,#add_new_team .team_list table th{padding:30px 15px 15px;vertical-align:top}#add_new_team .team_list table thead th{width:auto;font-size:18px;border:none;padding-bottom:30px;font-weight:500;color:#fff}#add_new_team .team_list table thead th:first-child{border:none}#add_new_team .team_list table tbody tr{background-color:#FFFFFF;margin-bottom:10px;border-bottom:4px solid #eceffa}#add_new_team .team_list table tbody:last-child tr{border-bottom-width:1px}#add_new_team .team_list table tbody td{position:relative;color:#007193;font-size:16px;font-weight:normal;height:50px}#add_new_team .team_list table tbody .alt td{background:#F4F6FC}#add_new_team .team_list table tbody td:first-child{border-left:none}#add_new_team .team_list table tbody tr:last-child td{border-bottom:none}#add_new_team .team_list table tbody td.team_name div{padding-bottom:5px;cursor:pointer}#add_new_team .team_list table tbody td.team_name{width:42%}#add_new_team .team_list table tbody td.team_name span:first-of-type{border:none;padding-left:0}#add_new_team .team_list table tbody td.team_name span{font-size:14px;cursor:pointer;border-left:1px solid #ddd;color:#0074a2;padding-left:5px}#add_new_team .team_list table tbody td.team_name span:hover{color:#2ea2cc}#add_new_team .team_list table tbody td.shortcode,#add_new_team .team_list table tbody td.rwctm-status{text-align:left}#add_new_team .team_list table tbody td.shortcode{width:250px;padding:30px 0 15px}#add_new_team .team_list table tbody td .ot_tooltip{position:relative;width:90%;display:inline-block;top:-7px}#add_new_team .team_list table tbody td .ot_tooltip .ot_tooltip_text{visibility:hidden;width:190px;background-color:#555;color:#fff;font-size:14px;text-align:center;border-radius:6px;padding:5px;position:absolute;z-index:1;bottom:120%;left:50%;margin-left:-100px;opacity:0;transition:opacity .3s}#add_new_team .team_list table tbody td .ot_tooltip .ot_tooltip_text::after{content:"";position:absolute;top:100%;left:50%;margin-left:-5px;border-width:5px;border-style:solid;border-color:#555 transparent transparent}#add_new_team .team_list table tbody td .ot_tooltip:hover .ot_tooltip_text{visibility:visible;opacity:1}#add_new_team .team_list table tbody td input.rwctm_shortcode{margin:0;padding:6px 0;border-radius:0;background:#f0f0f1;vertical-align:middle;font-size:16px;font-weight:500;width:100%;max-width:100%;border:.5px solid #ddd;border-bottom:3px solid #bbb;text-align:center}#add_new_team .team_list .regen_shortcode{position:relative;display:inline-block;margin:0;padding:0;font-size:18px}#add_new_team .team_list .regen_shortcode input{width:auto;height:40px;line-height:38px;padding:0 10px 0 30px}#add_new_team .team_list .regen_shortcode::before{content:"\f150";font-family:dashicons;position:absolute;left:7px;top:11px;color:#fff}#add_new_team .team_list table tbody td .temp_choice select{-webkit-appearance:none;-moz-appearance:none;-ms-appearance:none;appearance:none;outline:0;box-shadow:none;border:.5px solid #ddd;border-bottom:3px solid #bbb;background:#f1f1f1;background-image:none}#add_new_team .team_list table tbody td .temp_choice select::-ms-expand{display:none}#add_new_team .team_list table tbody td .temp_choice{position:relative;top:-3px;display:flex;width:9em;height:2.4em;line-height:2.4;background:#f1f1f1;color:#d2d2d2;overflow:hidden;border-radius:.25em}#add_new_team .team_list table tbody td .temp_choice select{flex:1;padding:0 0 0 .7em;color:#32373c;cursor:pointer;font-size:16px}#add_new_team .team_list table tbody td .temp_choice::after{content:'\f140';font-family:dashicons;font-size:26px;position:absolute;height:47px;top:-12px;right:0;padding:0 .2em;background:#2271b1;border-bottom:3px solid #1b5c91;cursor:pointer;pointer-events:none;-webkit-transition:.25s all ease;-o-transition:.25s all ease;transition:.25s all ease}#add_new_team .team_list table tbody td .temp_choice:hover::after{color:#0d2e48}#add_new_team .team_list table tbody td .temp_choice select option{background:#f1f1f1;font-size:14px;color:#2271b1}#add_new_team .team_list table tbody td span.status{position:relative;border-radius:30px;background:#cff6dd;color:#1fa750;height:25px;display:inline-block;line-height:24px;text-align:right}#add_new_team .team_list table tbody td span.status.active{width:70px;padding-right:10px}#add_new_team .team_list table tbody td span.status.inactive{padding:0 10px 0 25px;background:#fdf5dd;color:#cfa00c}#add_new_team .team_list table tbody td span.inactive:after{background:#f2be1d}#add_new_team .team_list table tbody td span.status:after{position:absolute;top:8px;left:10px;width:10px;height:10px;content:'';border-radius:50%}#add_new_team .team_list table tbody td span.active:after{background:#23bd5a}#add_new_team .team_list table tbody td .duplicate_team{background:url(../images/duplicate.png) no-repeat 0 0;position:absolute;top:32px;left:15px;width:22px;height:22px;cursor:pointer}#add_new_team .team_list table tbody td #copy_team.duplicate_team{left:unset;margin-left:11px;margin-top:-2px}#add_new_team .team_list table tbody td.rwctm_notice{width:40%}#add_new_team .team_list table tbody td.rwctm_notice span{font-size:13px;color:#778899}#add_new_team .team_list table tbody td.rwctm_notice span strong{font-weight:700}#add_new_team .team_list table tbody td.no_templates{position:relative}#add_new_team #teamnamediv{width:100%;border-radius:5px;margin:0 0 30px;padding:0;line-height:0;display:inline-block}#add_new_team .addnewteamwrap{width:98%;background:#fff;box-shadow:0 0 4px 1px #c0c0d4;margin:0;padding:10px;display:inline-block}#add_new_team .team_list table tbody td .wp-color-result-text{height:28px;line-height:28px}#add_new_team .teamnamewrap,#add_new_team .teamactivitywrap,#add_new_team .teamcolumnwrap,#add_new_team .settingcolumnwrap{margin:10px;padding:0 18px}#add_new_team .teamactivitywrap h3{padding:10px 1px 15px}#add_new_team .teamcolumnwrap{position:relative;display:grid}#teamcolumndiv .accordion-expand-holder{position:absolute;top:40px;right:25px}#teamcolumndiv .accordion-expand-holder .expand,#teamcolumndiv .accordion-expand-holder .collapse{color:#444444;text-transform:uppercase;cursor:pointer;padding:5px 10px}#add_new_team .teamnamewrap{border-bottom:1px solid #CCC;margin-bottom:30px}#add_new_team #title{width:50%;display:block;margin:10px 0 20px;padding:7px 14px;line-height:30px;font-size:18px;box-shadow:2px 2px 4px 0 rgb(29 35 39 / 16%);border:1px solid #d1d1d1}#add_new_team #teamactivitydiv #activity_edititem{border:1px solid #ddd;margin-bottom:10px;width:100%}#add_new_team #teamactivitydiv #activity_edititem tr.smheader th{background-color:#F3F3F3;padding:15px 10px;border-bottom:1px solid #ddd;border-left:1px solid #ddd;font-size:14px;font-weight:700;line-height:18px;color:#333333}#add_new_team #teamactivitydiv #activity_edititem tr.activitybody td{background-color:#fff;padding:10px;border-left:1px solid #ddd;border-bottom:1px solid #ddd;line-height:48px}#add_new_team #teamactivitydiv #activity_edititem tr.smheader th:first-child,#add_new_team #teamactivitydiv #activity_edititem tr.activitybody td:first-child{border-left:none}#add_new_team #teamactivitydiv tr.activitybody td input[type="text"]{display:block;width:auto;padding:8px 16px;line-height:25px;font-size:14px;font-weight:500;border-radius:6px;color:#6a7283;border:1px solid #CDD9ED;background:#fff;transition:border .3s ease}#add_new_team #teamactivitydiv tr.activitybody td input[type="text"]:focus{box-shadow:none;border:1px solid #678efe}#add_new_team #teamactivitydiv tr.activitybody td > span,#add_new_team #teamactivitydiv tr.activitybody td input[type="text"]{white-space:nowrap;display:inline-block}#add_new_team #teamactivitydiv tr.activitybody td .select{cursor:pointer;display:inline-block;position:relative;margin-left:6px;padding:0 3px;height:30px;line-height:30px;font-size:14px;border-radius:6px;color:#6a7283;border:1px solid #CDD9ED;transition:border .3s ease}#add_new_team #teamactivitydiv tr.activitybody td .select .s-hidden{visibility:hidden}#add_new_team #teamactivitydiv tr.activitybody td .select .styledSelect{position:absolute;top:0;right:0;bottom:0;left:0;padding:0 10px;font-weight:500;display:inline-block;border-radius:3px;box-shadow:0 1px 0 rgb(0 0 0 / 5%),inset 0 1px 0 rgb(255 255 255 / 80%);background-color:#f9f9f9;background-image:linear-gradient(to bottom,#fefefe,#f2f2f2);background-repeat:repeat-x;border:1px solid #b8b8b8}#add_new_team #teamactivitydiv tr.activitybody td .select .styledSelect.social{background:#415DE5;background-image:linear-gradient(to bottom,#6178e6,#415DE5);color:#fff;border:1px solid #364ebf;box-shadow:0 1px 0 rgb(65 93 229 / 5%),inset 0 1px 0 rgb(65 93 229 / 80%)}#add_new_team #teamactivitydiv tr.activitybody td .select .styledSelect.status{background:#61ECFB;background-image:linear-gradient(to bottom,#b3eef5,#61ECFB);color:#286167;border:1px solid #54c5d1;box-shadow:0 1px 0 rgb(97 236 251 / 5%),inset 0 1px 0 rgb(97 236 251 / 80%)}#add_new_team #teamactivitydiv tr.activitybody td .select .styledSelect.sector{background:#783EC0;background-image:linear-gradient(to bottom,#844acd,#783EC0);color:#fff;border:1px solid #6835a7;box-shadow:0 1px 0 rgb(120 62 192 / 5%),inset 0 1px 0 rgb(120 62 192 / 80%)}#add_new_team #teamactivitydiv tr.activitybody td .select .styledSelect:after{content:"";width:0;height:0;border:5px solid transparent;border-color:black transparent transparent;position:absolute;top:13px;right:10px}#add_new_team #teamactivitydiv tr.activitybody td .select .styledSelect.social:after,#add_new_team #teamactivitydiv tr.activitybody td .select .styledSelect.sector:after{border-color:#ffffff transparent transparent}#add_new_team #teamactivitydiv tr.activitybody td .select .styledSelect:active,#add_new_team #teamactivitydiv tr.activitybody td .select .styledSelect.active{background-color:#eef4ff}#add_new_team #teamactivitydiv tr.activitybody td .select .options{display:none;position:absolute;top:100%;right:0;left:-1px;z-index:999;margin:0;padding:0;list-style:none;border:1px solid #cdd9ed;background-color:#fff;-webkit-box-shadow:0 1px 2px rgb(0 0 0 / 20%);-moz-box-shadow:0 1px 2px rgba(0,0,0,0.2);box-shadow:0 1px 2px rgb(0 0 0 / 20%);width:calc(100% + 50px)}#add_new_team #teamactivitydiv tr.activitybody td .select .options li{margin:0;padding:0 10px;height:32px;line-height:32px;border-bottom:1px solid #c3c4c7}#add_new_team #teamactivitydiv tr.activitybody td .select .options li:hover{background-color:#39f;color:#fff}#add_new_team #teamactivitydiv tr.activitybody td .select .options li:last-child{border-bottom:none}#add_new_team #teamactivitydiv tr.activitybody td .select .options li.active{background-color:#92c836;color:#fff}#add_new_team .element-input .selectize-control.single,#add_new_team .element-input .selectize-control.multi,#add_new_team #settingcommon .team-input .selectize-control.single{width:69.2%;margin:0 2px 10px;display:inline-block}#add_new_team #settingcommon .team-input .selectize-control.single{width:18%}#add_new_team #settingcommon .team-input #max-column .selectize-control.single{width:150px;margin:0;display:table}#add_new_team #teamactivitydiv tr.activitybody td > span{text-align:center;padding:8px 12px;font-size:14px;line-height:25px;color:#99A3BA;background:#eef4ff;border:1px solid #CDD9ED;display:inline-block;transition:background .3s ease,border .3s ease,color .3s ease}#add_new_team #teamactivitydiv tr.activitybody td input[type="text"]{position:relative;z-index:1;margin-top:0;margin-bottom:0}#add_new_team #teamactivitydiv tr.activitybody td > span:first-child,#add_new_team #teamactivitydiv tr.activitybody td input[type="text"]:first-child{border-radius:6px 0 0 6px}#add_new_team #teamactivitydiv tr.activitybody td > span:last-child,#add_new_team #teamactivitydiv tr.activitybody td input[type="text"]:last-child{border-radius:0 6px 6px 0}#add_new_team #teamactivitydiv tr.activitybody td > span:not(:first-child),#add_new_team #teamactivitydiv tr.activitybody td input[type="text"]:not(:first-child){border-radius:0 6px 6px 0;margin-left:-1px}#add_new_team #teamactivitydiv tr.activitybody td:focus-within > span{color:#fff;background:#678efe;border-color:#275efe}#add_new_team #teamactivitydiv tr.activitybody td input[type="text"]::placeholder,#add_new_team .element-input input[type="text"]::placeholder,#add_new_team .element-input input[type="number"]::placeholder,#add_new_team .element-input textarea::placeholder,#add_new_team #settingcommon .team-input input[type="text"]::placeholder,#add_new_team #settingcommon .team-input input[type="number"]::placeholder,#add_new_team #settingcommon .team-input textarea::placeholder{color:#CBD1DC}#add_new_team #teamactivitydiv #activity_edititem tr.activitybody td span#remActivity,#add_new_team #teamactivitydiv #activity_edititem tr.activitybody td span#remDisable{cursor:pointer;background:transparent;border:none;margin:0;padding:0;color:#444444;display:block}#add_new_team #teamactivitydiv #activity_edititem tr.activitybody td span#remDisable{color:#bbbbbb;cursor:auto}#add_new_team #teamactivitydiv #activity_edititem tr.activitybody td span#remActivity::after,#add_new_team #teamactivitydiv #activity_edititem tr.activitybody td span#remDisable::after{content:"\f182";font-family:dashicons;font-weight:400;font-size:24px;position:absolute;top:50%;left:50%;border:1px solid #c7c7c7;border-radius:4px;box-shadow:inset 0 0 3px 1px rgb(0 0 0 / 10%);padding:4px;transform:translate(-50%,-50%)}#add_new_team #teamactivitydiv #activity_edititem tr.smheader th{text-align:center}#add_new_team #teamactivitydiv #activity_edititem tr.activitybody td{cursor:move}#add_new_team input#rwctm_add_new,#add_new_team #rwctm_upactivity,#add_new_team #rwctm_addactivity{float:right;margin-top:10px;margin-right:10px}#add_new_team input#rwctm_add,#add_new_team input#rwctm_edit{margin:10px 10px 20px}#add_new_team #teamdisplaydiv{background:#fff;margin:0 0 30px;padding:10px;line-height:5px;position:relative}#add_new_team #teamdisplaydiv h3{position:relative;font-size:24px;margin-top:15px;padding:10px}#add_new_team #teamdisplaydiv h3 span#editTeam{position:absolute;top:0;right:24px;background:#22313f;margin:0;padding:0 10px 0 0;color:#fff;font-size:14px;font-weight:600;text-align:right;width:130px;height:36px;line-height:33px;border:1px solid #1d2327;border-radius:5px}#add_new_team #teamdisplaydiv h3 #editTeam:hover{background:#646970}#add_new_team #teamdisplaydiv h3 span#editTeam:before{content:"\f186";font-family:'dashicons';position:absolute;left:1px;top:50%;font-size:20px;width:26px;height:32px;transform:translateY(-50%)}#add_new_team #teamcolumndiv{float:left;margin:0;padding-bottom:30px;line-height:5px;background:#fff;box-shadow:0 0 4px 1px #c0c0d4;width:100%;position:relative}#teamcolumndiv #addButtons{position:relative;clear:both;margin-bottom:5px}#teamcolumndiv #addButtons a#addMember{padding:0 10px 0 30px;font-size:16px;height:36px;line-height:32px;font-weight:600}#teamcolumndiv #addButtons a#addMember:before{content:"\f502";font-family:dashicons;position:absolute;top:50%;left:6px;margin:0;font-size:20px;display:inline-block;line-height:1;transform:translateY(-50%)}#teamcolumndiv #sortable_column{margin-left:-5px;margin-top:5px}#teamcolumndiv #sortable_column .member_details h3.mtitle{margin:3px 1px;border-left:10px solid #4f94d4}#teamcolumndiv .member_details{float:left;margin:5px;position:relative}#teamcolumndiv .member_details h4{margin:0;padding:10px 0 13px 2px;font-size:15px}#teamcolumndiv .member_details span.column_hide,#teamcolumndiv .member_details span.column_show{position:absolute;top:0;right:42px;padding:7px 14px;border-right:2px solid #cbcbcb;display:inline-block;cursor:pointer;z-index:9999}#teamcolumndiv .member_details span.column_hide:before,#teamcolumndiv .member_details span.column_hide:after{content:"";position:absolute;top:-1px;background:#e7e7e7;border-top:1px solid #ccc}#teamcolumndiv .member_details span.column_hide:before{left:-8px;box-shadow:1px 0 1px 0 rgb(92 92 92 / 30%);width:4px;height:36px;border-top-right-radius:3px;z-index:9999}#teamcolumndiv .member_details span.column_hide:after{left:5px;border-left:1px solid #ccc;border-top:1px solid #ccc;box-shadow:-9px 0 0 4px #ffffff;width:5px;height:36px;border-top-left-radius:3px}#teamcolumndiv .member_details span.column_hide .dashicons,#teamcolumndiv .member_details span.column_show .dashicons,#teamcolumndiv .member_details span#delDisable .dashicons,#teamcolumndiv .member_details span#delMember .dashicons{font-size:24px}#teamcolumndiv .member_details span.inactive{cursor:auto!important;opacity:.3}#teamcolumndiv .member_details span#delDisable,#teamcolumndiv .member_details span#delMember{position:absolute;top:0;right:8px;padding:7px;border-left:1px solid #f9f9f9;display:inline-block;z-index:9999}#teamcolumndiv .member_details span#delDisable{opacity:.3}#teamcolumndiv .member_details span#delMember{cursor:pointer}#teamcolumndiv .element-input h4{margin:0;padding:5px 10px 15px;font-weight:700;color:#555555}#teamcolumndiv .member_details input#upload_image{margin-left:5px}#teamcolumndiv .member_details img.preview_image{background:#F1F1F1;width:50%;height:auto;padding:24px 5px 5px;border:1px solid #CCC}#teamcolumndiv .member_details span#remove_image{background:url(../images/rwctm-buttons.png) no-repeat -272px -89px;position:absolute;width:24px;height:24px;margin:1px 0 0 -28px;cursor:pointer}#teamcolumndiv .element-input input.medium{width:224px}#teamcolumndiv .element-input input.checktext{width:204px}#teamcolumndiv .element-input input.in_small{width:137px}#teamcolumndiv .element-input input[type=text].in_double_one{width:180px;margin-left:-138px;padding-left:10px;padding-right:10px;background:#eef4ff;color:#99A3BA;margin-right:0;border-right:0;border-top-right-radius:0;border-bottom-right-radius:0}#teamcolumndiv .element-input input[type=text].in_double_two{width:184px;margin-left:0;padding-left:10px;border-top-left-radius:0;border-bottom-left-radius:0}#teamcolumndiv .element-input input[type=text].in_small{width:65px}#teamcolumndiv .ed_button.button.button-small{width:auto;margin-bottom:2px}#teamcolumndiv .element-input input.tickbox{border:1px solid #aaa!important}#teamcolumndiv .element-input .rwctm-editor-bottom{position:relative;background:#fff;width:50px;height:20px;top:4px;left:-49px;display:inline-block}#teamcolumndiv .element-input textarea[id=member_desc],#teamcolumndiv .element-input textarea[id=short_bio],#teamcolumndiv .element-input textarea[id=tag_line]{resize:none;display:block;margin:0 0 20px 10px;border-radius:5px;border:1px solid #ccc;width:96%}#teamcolumndiv .element-input input[type=text]:focus,#teamcolumndiv .element-input input[type=number]:focus,#teamcolumndiv .element-input textarea:focus{box-shadow:none;border-color:#72aee6}#teamcolumndiv .element-input hr{width:490px;border-top:1px solid #fbfbfb;margin:.5em auto 20px;box-shadow:0 -1px 0 0 rgb(145 145 145 / 60%)}#teamcolumndiv .member_details{background:#e7e7e7;width:525px;padding:5px!important;border:1px solid #ccc!important;border-radius:3px;box-shadow:1px 1px 2px 1px rgb(83 154 177 / 30%)}#teamcolumndiv .element-input{background:#F9F9F9;width:502px;margin-left:1px!important;padding:10px;border:1px solid #fff!important;cursor:auto}#add_new_team .member_details h3.mtitle,#add_new_team .member_advance h3.mtitle{background:#FFFFFF;border:none;position:relative;border-radius:4px;background-color:#fff!important;box-shadow:0 0 0 1px #ececec;opacity:1;transition:box-shadow 0.2s,opacity .4s}#add_new_team .member_details h3.mtitle.ui-accordion-header-active,#add_new_team .member_advance h3.mtitle.ui-accordion-header-active{box-shadow:none;border-bottom-left-radius:0;border-bottom-right-radius:0}#add_new_team .ui-accordion .ui-accordion-content{margin-top:-6px;position:relative;border-top:0!important;border-left:10px solid #4f94d4!important;border-bottom-left-radius:4px;border-bottom-right-radius:4px;border-bottom:0!important}#add_new_team .member_details h3.mtitle:hover,#add_new_team .member_advance h3.mtitle:hover{box-shadow:0 4px 10px 0 rgba(0,0,0,0.11)}#teamcolumndiv .element-input label.input-title,#add_new_team .element-input label.input-check,#teamcolumndiv .element-input label.input-title-check{color:#555555;margin:0;padding:0 10px;float:left;font-size:14px;width:250px;height:35px;line-height:35px}#teamcolumndiv .element-input label.input-title.mb-section,#teamcolumndiv .element-input label.input-title.mb-status{width:25%}#teamcolumndiv .element-input label.input-title:after{content:"";border-bottom:1px dashed #c9c9c9;width:100%;display:block;margin:-1px 0 0}#teamcolumndiv .element-input label.input-title.double-text:after{width:44%}#teamcolumndiv .element-input label.input-title.label-lg{width:315px}#add_new_team .element-input table tr.team-input th label.input-title::after{border:none}#add_new_team .element-input span.star_mark{float:right;margin:5px 10px 0 5px}#teamcolumndiv .element-input label.input-image{color:#555555;margin-top:1px;padding:7px 10px;float:left;font-size:14px;width:120px}#teamcolumndiv .element-input #enable_sp_price{display:none}#add_new_team .element-input input.medium,#teamcolumndiv .element-input input.in_small,#add_new_team .element-input input.tickbox{padding:3px 4px;border-radius:5px;border:1px solid #ccc}#add_new_team .element-input input.medium,#teamcolumndiv .element-input input.in_small{margin:0 2px 10px}#add_new_team .element-input select.font-dir{margin:2px 2px 10px;padding:0 10px;border-radius:5px;border:1px solid #ccc}#add_new_team .element-input input.tickbox{margin:7px 2px 10px}#add_new_team .element-input table{width:99.5%}#add_new_team .element-input table tr.team-header,#add_new_team .element-input table tr.team-input{background-color:#fff;display:block;border:none}#add_new_team .element-input table tr.team-header{background:#f9f9f9;position:relative;margin:30px 0 10px}#add_new_team .element-input table tr:first-child{margin-top:-10px}#add_new_team .element-input table tr.team-header:after{content:"";position:absolute;left:0;bottom:8px;border-bottom:2px solid #dcdcde;width:100%}#add_new_team .element-input table tr.team-input{box-shadow:1px 1px 3px 0 #dcdcde}#add_new_team .element-input table tr.team-input th{padding:5px 0}#add_new_team .element-input table tr.team-input th label.input-title{font-size:12px;width:200px}#add_new_team .element-input table tr.team-header td{color:#23282d;font-weight:700;margin:10px 0;padding:5px 10px;font-size:14px;background:#dcdcde;display:inline-block}#add_new_team .element-input table tr td{height:auto;padding:5px 10px 0}#teamcolumndiv .button.button-small,#settingcolumn.button.button-small{width:50px}#add_new_team #settingcommon{margin:0 0 10px;line-height:24px}#add_new_team #settingcommon .cs-inactive,#add_new_team #settingcommon .cs-active{position:absolute;right:31px;top:24px;font-size:32px;color:#fff;text-align:center;background:#2271b1;border:1px solid #195281;width:48px;height:38px;line-height:38px;cursor:pointer}#add_new_team #settingcommon .common-settings{border:1px solid #195281;margin:-1px 0 0}#add_new_team #settingcommon .common-settings,#add_new_team #settingcommon .cs-inactive{display:none}#add_new_team #settingcommon .team-input{margin-bottom:10px}#add_new_team #settingcommon .team-input h4{margin:20px 0 10px;padding:0 0 5px;font-size:14px;border-bottom:1px dashed #c3c3c3}#add_new_team #settingcommon .team-input .rwctm_notice{background:#F3F7FA;color:#606c41;font-size:12px;font-weight:400;margin:0 0 0 230px;padding:10px 20px;display:block;border-left:10px solid #656e74;border-radius:25px;box-shadow:4px 0 0 1px #656e74;transition:all .3s}#add_new_team #settingcommon .team-input h4:first-child{margin-top:0}#add_new_team #settingcommon .team-input .team_options{position:relative;margin:0 0 30px}#add_new_team #settingcommon .team-input .team_options.thumb_desig,#add_new_team #settingcommon .team-input .team_options.thumb_depart,#add_new_team #settingcommon .team-input .team_options.thumb_smicon,#add_new_team #settingcommon .team-input .team_options.member_desig,#add_new_team #settingcommon .team-input .team_options.member_depart,#add_new_team #settingcommon .team-input .team_options.member_smicon{margin-bottom:10px}#add_new_team #settingcommon .team-input .team_options .multicheck-item{display:inline}#add_new_team #settingcommon .team-input .team_options.ticker_dates{background:#f1f1f1;margin:0 15px 30px;padding:15px 30px}#add_new_team #settingcommon .team-input .team_options .t4b-badge{position:absolute;left:0;top:-2px;background:rgb(0 115 170 / 80%);color:#f1f1f1;width:26px;height:12px;line-height:12px;text-align:center;text-transform:lowercase;font-size:10px;border:1px solid rgb(0 86 128 / 43%);box-shadow:1px 1px 4px 1px rgb(0 86 128 / 46%);border-radius:5px}#add_new_team #settingcommon .team-input .show_icons{margin-bottom:5px}#add_new_team #settingcommon .team-input .ticker_icons,#add_new_team #settingcommon .team-input .upload-input,#add_new_team #settingcommon .team-input .scroll_speed,#add_new_team #settingcommon .team-input .scroll_start,#add_new_team #settingcommon .team-input .delay_timer,#add_new_team #settingcommon .team-input .fadein_speed,#add_new_team #settingcommon .team-input .typo_speed{background:#f1f1f1;margin:0;padding:30px}#add_new_team #settingcommon .team-input .start_right{background:#f1f1f1;margin:0;padding:15px 30px 0}#add_new_team #settingcommon .team-input .upload-input{background:#fbe4e4;padding:10px 30px}#add_new_team #settingcommon .team-input .imgmax_width,#add_new_team #settingcommon .team-input .imgmin_width{background:#e7d7d7;margin:0}#add_new_team #settingcommon .team-input .scroll_speed,#add_new_team #settingcommon .team-input .imgmax_width,#add_new_team #settingcommon .team-input .imgmin_width{padding:15px 30px}#add_new_team #settingcommon .team-input .imgmin_width{padding-bottom:30px}#add_new_team #settingcommon .team-input .scroll_start,#add_new_team #settingcommon .team-input .delay_timer,#add_new_team #settingcommon .team-input .fadein_speed,#add_new_team #settingcommon .team-input .typo_speed{margin-bottom:15px;padding:15px 30px 30px}#add_new_team #settingcommon .team-input .delay_timer{background:#fbe4e4;margin-bottom:20px;padding:15px 30px 40px}#add_new_team #settingcommon .team-input .fadein_speed,#add_new_team #settingcommon .team-input .typo_speed{margin-top:-30px}#add_new_team #settingcommon .team-input label{display:inline}#add_new_team #settingcommon .team-input label.label-title,#add_new_team #settingcommon .team-input label.label-check{color:#555555;margin:0;padding:10px 0;display:inline-block;font-size:14px;width:230px}#add_new_team #settingcommon .team-input input.medium,#add_new_team #settingcommon .team-input input.tickbox{padding:2px 4px;border-radius:5px;border:1px solid #ccc}#add_new_team #settingcommon .team-input input.medium{width:25%;margin:5px 3px 0;padding-left:10px}#add_new_team #settingcommon .team-input input[type=number]{width:100px}#add_new_team #settingcommon .team-input input.tickbox{margin:7px 2px 10px;border:1px solid #aaa}#add_new_team #settingcommon .team-input input.radiobox{margin:-4px 5px 0 10px}#add_new_team #settingcommon .team-input input#marked_layout_lout1,#add_new_team #settingcommon .team-input input#marked_ribbon_rb-1{margin-left:4px}#add_new_team #settingcommon .team-input input#ticker_type_category{margin-left:0}#add_new_team #settingcommon .team-input input[type=text]{width:30%}#add_new_team #settingcommon .team-input input#icon_prev,#add_new_team #settingcommon .team-input input#icon_next,#add_new_team #settingcommon .team-input input#icon_pause,#add_new_team #settingcommon .team-input input#icon_play,#add_new_team #settingcommon .team-input input#icon_bullet,#add_new_team #settingcommon .team-input .image_margin input[type=number]{width:7%}#add_new_team #settingcommon .team-input input#ticker_title,#add_new_team #settingcommon .team-input input#region_title{width:25%}#add_new_team #settingcommon .team-input textarea{display:inline-block;margin:10px 0;vertical-align:middle}#add_new_team #settingcommon .team-input textarea.medium{resize:none;border-radius:5px;border:1px solid #ccc;width:50%}#add_new_team #settingcommon .team-input textarea#shortcode_page_url{resize:vertical}#add_new_team #settingcommon .team-input .wp-editor-wrap{display:block}#add_new_team #settingcommon .team-input .rwctm-editor-bottom{background:#ffffff;width:140px;height:30px;position:absolute;bottom:-8px}#add_new_team #settingcommon .team-input #ticker_tag_add{position:relative;bottom:-47px;margin:0 5px;width:16px;height:16px;overflow:hidden;display:inline-block}#add_new_team #settingcommon .team-input #ticker_tag_add img{position:absolute;background-position:32px 44px;top:-9px;left:-8px}#add_new_team #settingcommon .team-input .tags-list{display:none;margin:0 0 10px}#add_new_team #settingcommon .team-input .tags-list a{background:#23282d;color:#fff;margin:0 3px 3px 0;padding:3px 5px;font-size:12px;display:inline-block}#add_new_team #settingcommon .team-input .wp-color-picker-field{display:inline-block}#add_new_team #settingcommon .team-input input.rwctm-color-picker{width:100%;margin:0 -2px;padding:0 10px;height:33px;line-height:34px}#add_new_team #settingcommon .team-input span.input_note,#add_new_team #settingcommon .team-input span.check_note{position:absolute;top:100%;bottom:0;left:236px;font-style:italic;color:#999;font-size:12px;line-height:16px;transform:translateY(-50%)}#add_new_team #settingcommon .team-input .team_options.ticker_custom span.input_note{left:0;padding-top:10px}#add_new_team #settingcommon .team-input span.check_note,#add_new_team #settingcommon .team-input .image_size span.input_note{top:50%;bottom:5px;left:300px;transform:translateY(-50%)}#add_new_team #settingcommon .team-input .image_size span.input_note{left:430px}#add_new_team #settingcommon .team-input span.check_note.multi{top:90%;left:235px}#add_new_team #settingcommon .team-input span.check_note b,#add_new_team #settingcommon .team-input span.input_note b{color:#8c8f94}#add_new_team #settingcommon .team-input .ticker_icons span.input_note,#add_new_team #settingcommon .team-input .scroll_speed span.input_note,#add_new_team #settingcommon .team-input .scroll_start span.input_note,#add_new_team #settingcommon .team-input .delay_timer span.input_note,#add_new_team #settingcommon .team-input .fadein_speed span.input_note,#add_new_team #settingcommon .team-input .typo_speed span.input_note,#add_new_team #settingcommon .team-input .imgmax_width .input_note,#add_new_team #settingcommon .team-input .imgmin_width .input_note{bottom:-50px;left:267px}#add_new_team #settingcommon .team-input .start_right span.check_note{top:64%;left:290px}#add_new_team #settingcommon .team-input .scroll_speed span.input_note,#add_new_team #settingcommon .team-input .imgmax_width .input_note{bottom:-25px}#add_new_team #settingcommon .team-input .delay_timer span.input_note{bottom:-70px}#add_new_team #settingcommon .team-input .image_margin .input_note{bottom:-40px;left:256px}#add_new_team #settingcommon .team-input input.tickbox{margin:0 19px;border:1px solid #aaa;position:relative;left:3px}#add_new_team #settingcommon .team-input input.tickbox.mcheck{position:relative;top:-1px;margin:2px 5px 2px 20px}#add_new_team #settingcommon .team-input label.label-title-check{float:left}#add_new_team #settingcommon .team-input img.preview_image{background:#F1F1F1;margin:0 7px;padding:5px;border:1px solid #CCC;position:relative;top:9px}#add_new_team #settingcommon .team-input span#remove_image{background:url(../images/rwctm-buttons.png) no-repeat -1px -57px;position:absolute;bottom:4px;width:26px;height:26px;margin:0 -8px;cursor:pointer}#add_new_team #settingcommon .ui-widget.ui-widget-content{border:none}#add_new_team #settingcommon .team-input #img-features,#add_new_team #settingcommon .team-input #filter-nav,#add_new_team #settingcommon .team-input #img-custom,#add_new_team #settingcommon .team-input .image_margin,#add_new_team #settingcommon .team-input #slider-apspeed,#add_new_team #settingcommon .team-input #slider-option{position:relative;background:#fff;border:1px solid #d2d2d2;margin:-20px 0 20px;padding:20px;width:auto;box-shadow:0 0 3px 1px rgb(177 177 177 / 50%)}#add_new_team #settingcommon .team-input #slider-option{margin-top:-54px}#add_new_team #settingcommon .team-input #img-features::before,#add_new_team #settingcommon .team-input #filter-nav::before,#add_new_team #settingcommon .team-input #img-custom::before,#add_new_team #settingcommon .team-input #slider-apspeed::before,#add_new_team #settingcommon .team-input .image_margin::before{content:"\f142";font-family:dashicons;position:absolute;left:222px;top:-20px;color:#b1b1b1;font-size:50px}#add_new_team #settingcommon .team-input .labelexpanded.slide::before{content:"\f142";font-family:dashicons;position:absolute;left:20px;bottom:-6px;color:#b1b1b1;font-size:50px;opacity:0;transition:opacity 1s ease}#add_new_team #settingcommon .team-input .labelexpanded.slider-before::before{opacity:1}#add_new_team #settingcommon .team-input .image_margin,#add_new_team #settingcommon .team-input #img-custom,#add_new_team #settingcommon .team-input #slider-apspeed{background:#f3f7fa;border-color:#d2e0eb;padding:30px 20px 20px;width:auto;box-shadow:none}#add_new_team #settingcommon .team-input .image_margin::before,#add_new_team #settingcommon .team-input #img-custom::before,#add_new_team #settingcommon .team-input #slider-apspeed::before{color:#d2e0eb}#add_new_team #settingcommon .team-input .team_options.video_screen,#add_new_team #settingcommon .team-input .team_options.modest_brand{margin-bottom:0;top:-10px}#add_new_team #settingcommon .team-input #max-column{display:inline-block;width:100%;margin:10px 0 0;padding:15px 0 0;border-top:1px solid #ccc;border-bottom:1px solid #ccc}#add_new_team #settingcommon .team-input #max-column h4{float:left;border:none}#add_new_team #settingcommon .team-input #max-column .team_options{float:left;margin-left:21px}#add_new_team #settingcommon .team-input #max-column .team_options .label-check{width:100%;margin-bottom:5px;padding:0}#add_new_team #settingcommon .team-input .team_options .label-check.numgroup{position:absolute;top:-2px;margin-left:6px;width:auto}#add_new_team #settingcommon .team-input .team_options.tm_name_font,#add_new_team #settingcommon .team-input .team_options.nav_font_size,#add_new_team #settingcommon .team-input .team_options.mn_thumb_font,#add_new_team #settingcommon .team-input .team_options.dp_thumb_font,#add_new_team #settingcommon .team-input .team_options.dg_thumb_font,#add_new_team #settingcommon .team-input .team_options.bio_thumb_fnt,#add_new_team #settingcommon .team-input .team_options.sm_thumb_font,#add_new_team #settingcommon .team-input .team_options.tmname_margin{padding:30px 0 0}#add_new_team #settingcommon .team-input #max-column .team_options .select{margin-left:0;margin-bottom:0}#add_new_team #settingcommon .team-input input[type=checkbox]:after{content:"Off";position:absolute;z-index:1;margin:-14px 0 0;top:50%;left:4px;display:inline-block;background:#CCCCCC;padding:14px 5px;width:4.2em;border-radius:30px;box-shadow:inset 1px 1px 1px rgba(0,0,0,0.3);color:#EEEEEE;text-transform:uppercase;font-size:11px;text-align:right}#add_new_team #settingcommon .team-input input[type=checkbox]:before{content:"";position:absolute;z-index:2;width:1.6em;height:1.6em;top:50%;margin-top:-.8em;left:7px;font-size:14px;background:#eee;border-radius:1em;box-shadow:0 1px 1px #999,inset 0 3px 4px #fff;transition:left .05s linear}#add_new_team #settingcommon .team-input input[type=checkbox]:checked:after{content:"On";text-align:left;padding-left:5px;background:#9ad179;color:#669933}#add_new_team #settingcommon .team-input input[type=checkbox]:after{left:-20px}#add_new_team #settingcommon .team-input input[type=checkbox]:before{left:-17px}#add_new_team #settingcommon .team-input input[type=checkbox]:checked:before{left:15px}#add_new_team #settingcommon .team-input hr{margin:40px 0 20px;border-style:dashed;border-top-color:#c1c1c1;border-bottom-color:#f1f1f1}#add_new_team #settingcommon .team-input .marked_layout .label-check,#add_new_team #settingcommon .team-input .layout_style .label-check{position:relative;top:-50px}#add_new_team #settingcommon .team-input .marked_layout .input_note,#add_new_team #settingcommon .team-input .layout_style .input_note{bottom:-36px}#add_new_team #settingcommon .team-input .team_options .layout-style{position:relative;width:50%;display:inline-table;margin:20px 0 5px}#add_new_team #settingcommon .team-input .marked_ribbon .layout-style,#add_new_team #settingcommon .team-input .team_options .layout-style.style-group{width:70%}#add_new_team #settingcommon .team-input label.labelexpanded{position:relative;width:25%;display:inline-block;margin:0 0 20px}#add_new_team #settingcommon .team-input .style-group .labelexpanded{margin-bottom:3px}#add_new_team #settingcommon .team-input .marked_ribbon .layout-style .labelexpanded{width:100px;height:52px;margin-right:18px}#add_new_team #settingcommon .team-input .labelexpanded > input[type=radio]{position:absolute;opacity:0;width:0;height:0}#add_new_team #settingcommon .team-input .radio-btns{position:relative;padding:0;border:1px solid #eaeaea;display:inline-block;margin:0 15px 25px 0;transition:120ms transform ease-in-out}#add_new_team #settingcommon .team-input .marked_ribbon .radio-btns{width:89px;height:52px}#add_new_team #settingcommon .team-input .radio-btns.btn-group{width:140px}#add_new_team #settingcommon .team-input .radio-btns .rb-1{position:absolute;top:-1px;left:-7px;background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/ribbons.png) 15px 0 no-repeat;width:105px;height:45px}#add_new_team #settingcommon .team-input .radio-btns .rb-2{position:absolute;top:-1px;left:-7px;background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/ribbons.png) -100px -10px no-repeat;width:60px;height:45px}#add_new_team #settingcommon .team-input .radio-btns .rb-3{position:absolute;top:-8px;left:-7px;background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/ribbons.png) -160px -7px no-repeat;width:60px;height:52px}#add_new_team #settingcommon .team-input .radio-btns .rb-4{position:absolute;top:-1px;left:15px;background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/ribbons.png) -224px -2px no-repeat;width:85px;height:45px}#add_new_team #settingcommon .team-input .radio-btns .rb-5{position:absolute;top:-1px;left:5px;background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/ribbons.png) -310px -10px no-repeat;width:90px;height:45px}#add_new_team #settingcommon .team-input .radio-btns.grids{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-type.png) -15px -14px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.slide{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-type.png) -125px -14px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.popup{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-type.png) -235px -14px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.lout1{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-style.png) -15px -14px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.lout2{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-style.png) -125px -14px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.lout3{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-style.png) -235px -14px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.lout4{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-style.png) -345px -14px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.lout5{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-style.png) -15px -84px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.lout6{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-style.png) -125px -84px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.lout7{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-style.png) -235px -84px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.lout8{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-style.png) -345px -84px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.lout9{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-style.png) -15px -154px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.lout10{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-style.png) -125px -154px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.lout11{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-style.png) -235px -154px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.lout12{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-style.png) -345px -154px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.lout13{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-style.png) -15px -224px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.lout14{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-style.png) -125px -224px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.lout15{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-style.png) -235px -224px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.lout16{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-style.png) -345px -224px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.lout17{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-style.png) -15px -294px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.lout18{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-style.png) -125px -294px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.lout19{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-style.png) -235px -294px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.lout20{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-style.png) -345px -294px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.lout21{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-style.png) -15px -364px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.lout22{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-style.png) -125px -364px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.lout23{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-style.png) -235px -364px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.lout24{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-style.png) -345px -364px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.lout25{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-style.png) -15px -434px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.lout26{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-style.png) -125px -434px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.lout27{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-style.png) -235px -434px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.lout28{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/layout-style.png) -345px -434px no-repeat;width:90px;height:58px}#add_new_team #settingcommon .team-input .radio-btns.effect0{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/box-shadows.png) -10px -13px no-repeat;width:100px;height:60px}#add_new_team #settingcommon .team-input .radio-btns.effect1{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/box-shadows.png) -120px -14px no-repeat;width:100px;height:60px}#add_new_team #settingcommon .team-input .radio-btns.effect2{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/box-shadows.png) -230px -15px no-repeat;width:100px;height:60px}#add_new_team #settingcommon .team-input .radio-btns.effect3{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/box-shadows.png) -10px -84px no-repeat;width:100px;height:60px}#add_new_team #settingcommon .team-input .radio-btns.effect4{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/box-shadows.png) -120px -83px no-repeat;width:100px;height:60px}#add_new_team #settingcommon .team-input .radio-btns.effect5{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/box-shadows.png) -230px -83px no-repeat;width:100px;height:60px}#add_new_team #settingcommon .team-input .radio-btns.effect6{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/box-shadows.png) -10px -154px no-repeat;width:100px;height:60px}#add_new_team #settingcommon .team-input .radio-btns.effect7{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/box-shadows.png) -120px -153px no-repeat;width:100px;height:60px}#add_new_team #settingcommon .team-input .radio-btns.effect8{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/box-shadows.png) -230px -153px no-repeat;width:100px;height:60px}#add_new_team #settingcommon .team-input .radio-btns.effect9{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/box-shadows.png) -10px -223px no-repeat;width:100px;height:60px}#add_new_team #settingcommon .team-input .radio-btns.effect10{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/box-shadows.png) -120px -222px no-repeat;width:100px;height:60px}#add_new_team #settingcommon .team-input .radio-btns.effect11{background:url(http://hasinhayder.test/wp-content/plugins/rwc-team-members/assets/images/box-shadows.png) -230px -224px no-repeat;width:100px;height:60px}#add_new_team #settingcommon .team-input .labelexpanded input:checked + .radio-btns{border-color:#253c6a}#add_new_team #settingcommon .team-input .radio-btns.btn-group .dashicons-yes-alt{width:16px;height:16px;font-size:24px}#add_new_team #settingcommon .team-input .labelexpanded input:checked + .radio-btns.btn-group .dashicons-yes-alt{background:#605105;color:#f3bc59;left:50%;top:-2px;transform:translateX(-50%)}#add_new_team #settingcommon .team-input .radio-btns .dashicons-yes-alt{font-size:36px;position:absolute;top:-10px;right:-10px;width:28px;height:28px;border-radius:50px;opacity:0;z-index:1}#add_new_team #settingcommon .team-input .labelexpanded input:checked + .radio-btns .dashicons-yes-alt{opacity:1;background:#ffffff;color:#135e96}#add_new_team #settingcommon .team-input .radio-btns .dashicons-yes-alt:before{position:absolute;top:-4px;left:-4px}#add_new_team #settingcommon .team-input .radio-btns span{position:absolute;bottom:-18px;left:-1px;width:100%;padding:0 1px;text-align:center;background-color:#eaeaea;border-bottom-left-radius:15px;border-bottom-right-radius:15px}#add_new_team #settingcommon .team-input .marked_ribbon .radio-btns span{top:45px;left:-1px;bottom:unset;width:89px}#add_new_team #settingcommon .team-input .labelexpanded input:checked + .radio-btns span{background-color:#253c6a;color:#fff}#add_new_team #settingcommon .team-input .radio-btns.btn-group span{border-radius:0}#add_new_team #settingcommon .team-input .labelexpanded input:checked + .radio-btns.btn-group span{background-color:#262626}#add_new_team #rwctm_list #rwctm_save.button-primary{float:left;margin:15px 27px 25px}#add_new_team a.rwctm_tooltip,#rwctm_global_settings a.rwctm_tooltip{font-size:18px;margin:0 0 0 5px;position:relative;display:inline-block;color:#364D55}#add_new_team .smheader a.rwctm_tooltip:hover:after,#add_new_team #teamcolumndiv a.rwctm_tooltip:hover:after,#add_new_team #settingcommon a.rwctm_tooltip:hover:after,#rwctm_global_settings a.rwctm_tooltip:hover:after,#add_new_team .team_list table tbody td #copy_team.duplicate_team:hover:after{background:#e5f9e0;border:1px solid #80c780;color:#378037;-moz-border-radius:5px;-webkit-border-radius:5px;-o-border-radius:5px;-khtml-border-radius:5px;border-radius:5px;top:30px;left:-90px;content:attr(rel);padding:20px;position:absolute;z-index:98;width:320px;font-size:14px;text-align:left;line-height:24px}#add_new_team .smheader a.rwctm_tooltip.rwctm_left:hover:after{right:-90px;left:unset}#add_new_team .smheader a.rwctm_tooltip:hover .rwctm_ttarrow::before,#add_new_team #teamcolumndiv a.rwctm_tooltip:hover .rwctm_ttarrow::before,#add_new_team #settingcommon a.rwctm_tooltip:hover .rwctm_ttarrow::before,#rwctm_global_settings a.rwctm_tooltip:hover .rwctm_ttarrow::before,#rwctm_global_settings a.rwctm_tooltip.rwctm_note:hover::before,#add_new_team .team_list table tbody td #copy_team.duplicate_team:hover:before{content:"";border:solid;border-color:transparent transparent #80c780;border-width:10px;top:10px;left:-1px;position:absolute;z-index:99}#add_new_team #teamcolumndiv a.rwctm_tooltip::before{position:relative;top:1px}#add_new_team #settingcommon a.rwctm_tooltip::before{position:relative;top:4px}#add_new_team #teamcolumndiv a.rwctm_tooltip:hover:after,#add_new_team #settingcommon a.rwctm_tooltip:hover:after,#add_new_team .team_list table tbody td #copy_team.duplicate_team:hover:after{background:#3c434a;color:#fff;border:1px solid #1d2327;top:-20px;left:35px;right:unset;padding:10px 20px;padding:15px 30px;font-size:14px;line-height:20px}#add_new_team #teamcolumndiv a.rwctm_tooltip:hover:after,#add_new_team #settingcommon a.rwctm_tooltip:hover:after{width:300px}#add_new_team #teamcolumndiv a.rwctm_tooltip:hover .rwctm_ttarrow::before,#add_new_team #settingcommon a.rwctm_tooltip:hover .rwctm_ttarrow::before,#add_new_team .team_list table tbody td #copy_team.duplicate_team:hover:before{border-color:transparent #3c434a transparent transparent;top:unset;bottom:-3px;left:16px}#add_new_team #teamcolumndiv a.rwctm_tooltip:hover .rwctm_ttarrow::before{bottom:0}#add_new_team .team_list table tbody td #copy_team.duplicate_team:hover:before{bottom:1px}#add_new_team .team_list table tbody td #copy_team.duplicate_team:hover:after{top:-4px;padding:5px 10px;width:98px;font-size:14px}#add_team_template .template-container{clear:both;margin-top:20px;padding:0 0 100px}#add_team_template .template-container .template-items{cursor:pointer;float:left;margin:0 1% 1% 0;position:relative;width:24.2%;border:1px solid #dedede;-webkit-box-shadow:0 1px 1px -1px rgba(0,0,0,.1);box-shadow:0 1px 1px -1px rgba(0,0,0,.1);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#add_team_template .template-container .template-items:focus,#add_team_template .template-container .template-items:hover{cursor:pointer}#add_team_template .template-container .template-items:nth-child(4n){margin-right:0}#add_team_template .template-container .template-items .template-img{background:#fff;display:block;overflow:hidden;position:relative;text-align:center;-webkit-transition:opacity .2s ease-in-out;transition:opacity .2s ease-in-out}#add_team_template .template-container .template-items .template-img .demo_link{opacity:0;position:absolute;top:50%;left:50%;font-size:14px;font-weight:600;background:#07156b;width:36%;height:36px;line-height:36px;color:#fff;padding-left:3px;text-decoration:none;text-align:center;border-radius:4px;transform:translate(-50%,-50%)}#add_team_template .template-container .template-items .template-img .demo_link span{position:relative;top:10px;left:-2px;font-size:16px}#add_team_template .template-container .template-items .template-img .demo_link:hover{background:#333333}#add_team_template .template-container .template-items .template-img:after{content:"";padding:0}#add_team_template .template-container .template-items:focus .template-img,#add_team_template .template-container .template-items:hover .template-img{background:#fff}#add_team_template .template-container .template-items .template-img img{position:relative;width:100%;-webkit-transition:opacity .2s ease-in-out;transition:opacity .2s ease-in-out}#add_team_template .template-container .template-items:focus .template-img img,#add_team_template .template-container .template-items:hover .template-img img{opacity:.4}#add_team_template .template-container .template-items .template-name{font-size:15px;font-weight:600;height:18px;margin:0;padding:15px;-webkit-box-shadow:inset 0 0 2px 4px #ffffff;box-shadow:inset 0 0 2px 4px #ffffff;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;background:#fff}#add_team_template .template-container .template-items.focus .template-actions,#add_team_template .template-container .template-items:focus .template-actions,#add_team_template .template-container .template-items:hover .template-actions,#add_team_template .template-container .template-items:hover .template-img .demo_link{-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);filter:opacity(1);opacity:1}#add_team_template .template-container .template-items .template-actions{-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);filter:opacity(0);opacity:0;-webkit-transition:opacity .1s ease-in-out;transition:opacity .1s ease-in-out;position:absolute;bottom:0;right:0;height:38px;padding:9px 10px 0;background:rgba(244,244,244,.7);border-left:1px solid rgba(0,0,0,.05)}#add_team_template .template-container .template-items .template-actions .button-secondary{float:none;margin-left:3px}#add_team_template .template-container .template-items .template-actions .button-primary{margin-right:3px}#rwctm-modal-container{position:fixed;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,0.7);display:flex;align-items:center;justify-content:center;z-index:9999}#rwctm-modal-container #rwctm-modal-content{background-color:#fff;max-width:90%;max-height:90%;overflow:auto;padding:20px;box-shadow:0 0 10px rgba(0,0,0,0.3)}#rwctm-modal-container #rwctm-modal-content img{width:100%}#rwctm_global_settings h2{margin:1em 0 .56em;font-size:24px;font-weight:600}#rwctm_global_settings .rwctm_global.ui-widget.ui-widget-content{margin:0 0 20px;width:64%;float:left;background:#fff}.rwctm_global .rwctm_options{float:left;width:100%;margin:5px 2px 15px}.rwctm_global #user_choice_font{display:inline-block;background:#F8F8FF;border:1px solid #aaa;-moz-border-radius:5px;-webkit-border-radius:5px;-o-border-radius:5px;-khtml-border-radius:5px;border-radius:5px;color:#6E6E6E;margin:10px auto 20px;padding:10px 20px 20px;font-style:italic}.rwctm_global label.rwctm_global_check{float:left;border-radius:10px;padding:6px;margin:0 7px 10px 0;position:relative;font-size:13px;cursor:pointer;line-height:24px;background-color:#f5f5f5;background-image:-moz-linear-gradient(top,#fff,#e6e6e6);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fff),to(#e6e6e6));background-image:-webkit-linear-gradient(top,#fff,#e6e6e6);background-image:-o-linear-gradient(top,#fff,#e6e6e6);background-image:linear-gradient(to bottom,#fff,#e6e6e6);background-repeat:repeat-x;border:1px solid #ccc;border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);border-bottom-color:#b3b3b3;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#ffe6e6e6',GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);box-shadow:inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05)}.rwctm_global label.rwctm_global_check input[type=checkbox]:after{content:"On";position:absolute;z-index:1;margin:-14px 0 0;top:50%;right:4px;display:inline-block;background:#9ad179;padding:14px 5px;width:4em;border-radius:30px;box-shadow:inset 1px 1px 1px rgba(0,0,0,0.3);color:#669933;text-transform:uppercase;font-size:11px;text-align:left}.rwctm_global label.rwctm_global_check input[type=checkbox]:before{content:"";position:absolute;z-index:2;width:1.6em;height:1.6em;top:50%;margin-top:-.8em;right:7px;font-size:14px;background:#eee;border-radius:1em;box-shadow:0 1px 1px #999,inset 0 3px 4px #fff;transition:right .05s linear}.rwctm_global #user_choice_font .rwctm_options{margin-bottom:0}.rwctm_global label.input-check,.rwctm_global label.input-title{padding:9px 0;float:left;font-size:14px;width:65%;cursor:auto}.rwctm_global label.rwctm_global_check{width:62px;height:34px;margin:0;padding:0}.rwctm_global input.medium{padding:9px 5px;border-radius:5px;border:1px solid #ccc;width:49%;margin:2px 0 0}.rwctm_global #user_choice_font label.input-title a.global-link{color:#2271b1;text-decoration:none}.rwctm_global #user_choice_font label.input-title a.global-link:hover{text-decoration:underline}.rwctm_global #user_choice_font label.input-title a.global-link::after{content:'\f504';font-family:dashicons;font-size:16px;position:relative;top:2px}.rwctm_global #user_choice_font input.medium{width:100%}.rwctm_global label.rwctm_global_check input[type=checkbox]{margin:10px 24px}.rwctm_global label.rwctm_global_check input[type=checkbox]:after{content:"Off";text-align:right;padding-right:6px;background:#CCCCCC;color:#EEEEEE}.rwctm_global label.rwctm_global_check input[type=checkbox]:checked:after{content:"On";position:absolute;z-index:1;margin:-14px 0 0;top:50%;right:4px;display:inline-block;background:#9ad179;padding:14px 5px;width:4em;border-radius:30px;box-shadow:inset 1px 1px 1px rgba(0,0,0,0.3);color:#669933;text-transform:uppercase;font-size:11px;text-align:left}.rwctm_global label.rwctm_global_check input[type=checkbox]:before{right:34px}.rwctm_global label.rwctm_global_check input[type=checkbox]:checked:before{content:"";position:absolute;z-index:2;width:1.6em;height:1.6em;top:50%;margin-top:-.8em;right:7px;font-size:14px;background:#eee;border-radius:1em;box-shadow:0 1px 1px #999,inset 0 3px 4px #fff;transition:right .05s linear}#rwctm_global_settings a.rwctm_tooltip{width:18px;height:18px}#rwctm_global_settings a.rwctm_tooltip:hover:after{top:-25px;left:30px;right:unset;width:360px;font-style:normal;line-height:20px}#rwctm_global_settings a.rwctm_tooltip.rwctm_note:hover:after{top:-36px}#rwctm_global_settings a.rwctm_tooltip:hover .rwctm_ttarrow::before,#rwctm_global_settings a.rwctm_tooltip.rwctm_note:hover::before{top:-2px;left:10px;border-color:transparent #80c780 transparent transparent}#rwctm_global_settings a.rwctm_tooltip.rwctm_note:hover::before{top:0}#rwctm_global_settings .dashicons{margin-left:5px;margin-top:-1px}#rwctm_global_settings #user_choice_font .dashicons{margin-top:2px}#rwctm_global_settings a.rwctm_tooltip.rwctm_note{background:none;left:-24px;top:-1px}#rwctm_global_settings a.rwctm_tooltip.rwctm_note:hover:after{min-width:300px;max-width:524px;width:500px;font-size:14px;line-height:24px;padding:45px 30px 20px;color:#323232}#rwctm_global_settings a.rwctm_tooltip.rwctm_note:hover i.attention::after{content:attr(title);position:absolute;top:-15px;left:61px;font-size:16px;line-height:24px;color:#323232;font-style:normal;min-width:300px;z-index:99}#rwctm_global_settings a.rwctm_tooltip.rwctm_note::before{top:-4px}.simple-css .CodeMirror{height:80vh}#rwctm_global_settings .rwctm_global .rwctm_custom_css .CodeMirror{border:1px solid #ddd}#rwctm_global_settings .rwctm_global .rwctm_custom_css .CodeMirror-scroll{margin-right:0}#rwctm_global_settings .rwctm_global .rwctm_custom_css .CodeMirror-sizer{border:0;margin-left:46px!important}#rwctm_global_settings .rwctm_global .rwctm_custom_css .CodeMirror-gutters{left:0!important}#rwctm_global_settings .rwctm_global .rwctm_custom_css .CodeMirror-lint-markers{width:auto}#rwctm_global_settings .rwctm_global .rwctm_custom_css .CodeMirror-gutter.CodeMirror-linenumbers{width:45px!important}.rwctmusage-maincontent{padding:0 20px 0 0}.rwctmusage-maincontent .rwctm{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;margin:0 auto 20px;background:#f9fcff;box-shadow:0 0 4px 2px rgb(34 35 58 / 20%);padding:25px;border-radius:25px;transition:all .3s}.rwctmusage-maincontent .rwctm h3{font-size:18px;font-weight:700;color:#0d0925;margin-bottom:20px;border-bottom:1px solid #72777c;padding-bottom:7px;text-transform:uppercase;line-height:30px}.rwctmusage-maincontent .rwctm p{font-size:16px;padding:0 10px}.rwctmusage-maincontent .prepend-top{margin-top:10px;margin-bottom:10px}.rwctmusage-maincontent .append-1{padding:0 10px}.rwctm_guide.postbox-container .rwctmusage-maincontent .getting-started_video{display:flex}.rwctm_guide.postbox-container .rwctmusage-maincontent .getting-started_video img{max-width:100%}.rwctm_guide.postbox-container h2{font-size:24px;margin-top:0}#rwctm-narration{position:relative;top:30px;margin:0 0 50px;width:64%;float:left}#rwctm-narration #rwctmusage-note.rwctmusage-maincontent{padding-bottom:64px}#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm .likeit{position:relative;margin:0 0 50px;font-size:14px;text-transform:uppercase;text-align:justify;color:#2271b1;font-weight:600;line-height:1.5}#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm .likeit a{position:absolute;left:50%;top:calc(100% + 5px);font-size:16px;background-image:linear-gradient(147deg,#fe8a39 0%,#fd3838 74%);margin:10px 0 0;padding:6px 18px;border-radius:50px;color:#fff;text-decoration:none;text-align:center;letter-spacing:4px;transform:translateX(-50%)}#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm .likeit a:hover{text-decoration:none;color:#ffe000;background-image:linear-gradient(335deg,#fe8a39 0%,#fd3838 74%)}#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm blockquote{position:relative;margin:40px 0;padding:2.6em 2.6em 10px;background:hsl(0 0% 97%) no-repeat left / 140px;border-radius:7px;border:2px solid white;box-shadow:2px 2px 4px hsl(0 0% 0% / 20%);text-indent:1.6em}@media (min-width: 768px){#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm blockquote{margin:40px 5px}}#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm blockquote::before{content:"";pointer-events:none;position:absolute;z-index:1;left:0;top:0;right:0;bottom:0;border-radius:7px;box-shadow:inset -2px -2px 1px hsl(0 0% 100%),inset 2px 2px 4px hsl(0 0% 0% / 20%)}#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm blockquote::after{content:"\f122";font-family:dashicons;position:absolute;z-index:1;left:50%;top:-2px;transform:translate(-50%,-50%);width:50px;height:50px;background:white;box-shadow:0 4px 5px -1px hsla(0 0% 0% / 20%);border-radius:999px;display:grid;place-content:center;padding:0;color:#3059fd;font-size:30px;font-style:normal;text-indent:0}#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm blockquote p{font-size:.85rem;font-style:italic;font-weight:400;letter-spacing:normal;margin-left:49%}#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm blockquote .blockquote-author-image{position:absolute;left:11px;top:11px;width:48%;height:94%;background:#f7f7f7 url(../images/general-settings-shortcode-page-url.png) no-repeat;background-position:-12px 0;background-size:contain;border-top-left-radius:7px;border-bottom-left-radius:7px}#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm blockquote cite{display:block;margin-top:-20px;text-indent:0;text-align:right;text-transform:uppercase;color:hsl(0 0% 20%)}@media (min-width: 768px){#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm blockquote cite{margin-left:calc(5rem - 140px)}}#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm blockquote .cite-last-name{background:#3059fd;color:hsl(0 0% 97%)}#rwctm-sidebar.code{position:relative;width:34%;float:left;top:60px;margin-left:15px;margin-bottom:50px}#rwctm-sidebar.code.rwctm-tools{width:30%;top:0;left:20px;margin-left:0}#rwctm-sidebar.code.rwctm-tools #rwctmusage-info{display:none}#rwctm-sidebar .rwctmusage-sidebar h3{border-bottom:1px solid #72777c;padding-bottom:7px;text-transform:uppercase}#rwctm-sidebar.code .rwctmusage-sidebar h3{font-size:24px;font-weight:700;color:#0d0925;margin-bottom:10px;line-height:30px}#rwctm-sidebar #rwctmusage-note.rwctmusage-sidebar,#rwctm-sidebar #rwctmusage-info.rwctmusage-sidebar{background-color:#ffffff;border:1px solid #ddd;color:#000;position:relative;max-width:422px;padding:15px;margin-bottom:20px!important;box-shadow:0 14px 80px rgb(34 35 58 / 20%);padding:25px;border-radius:25px;transition:all .3s}#rwctm-sidebar.code #rwctmusage-note.rwctmusage-sidebar,#rwctm-sidebar.code #rwctmusage-info.rwctmusage-sidebar{height:auto;padding-top:0;padding-bottom:40px}#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm,#rwctm-sidebar #rwctmusage-note.rwctmusage-sidebar .rwctm{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;margin:0 0 10px;line-height:30px}#rwctm-sidebar.code #rwctmusage-note.rwctmusage-sidebar .rwctm .rwctm-first::first-letter{font-size:2em;line-height:1;letter-spacing:-4px;font-weight:700;color:#e9950c}#rwctm-sidebar #rwctmusage-note.rwctmusage-sidebar .rwctm pre{overflow:auto;margin:0;scrollbar-width:thin;scrollbar-color:#d4aa70 #0e8cf1;scrollbar-gutter:stable}#rwctm-sidebar #rwctmusage-note.rwctmusage-sidebar .rwctm pre::-webkit-scrollbar{height:8px}#rwctm-sidebar #rwctmusage-note.rwctmusage-sidebar .rwctm pre::-webkit-scrollbar-track{background-color:#343541}#rwctm-sidebar #rwctmusage-note.rwctmusage-sidebar .rwctm pre::-webkit-scrollbar-thumb{background-color:#0e8cf1;border-radius:100px;background-clip:content-box}#rwctm-sidebar #rwctmusage-note.rwctmusage-sidebar .rwctm code{color:#ffd100;display:block;height:36px;line-height:36px;margin:0;padding:0 4px;font-size:13px;font-weight:600;border-left:10px solid #343541;background:#000000;min-width:410px;width:490px}#rwctm-sidebar.code #rwctmusage-note.rwctmusage-sidebar .rwctm ol li code{width:auto;min-width:298px}#rwctm-sidebar.code #rwctmusage-note.rwctmusage-sidebar .rwctm p{font-size:.94rem;line-height:1.35;margin-bottom:10px}#rwctm-sidebar.code #rwctmusage-note.rwctmusage-sidebar .rwctm p:last-child{margin:10px 0 -25px}#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm ol,#rwctm-sidebar.code #rwctmusage-note.rwctmusage-sidebar .rwctm ol{margin:15px 10px 15px 24px;padding:0}#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm ol li,#rwctm-sidebar.code #rwctmusage-note.rwctmusage-sidebar .rwctm ol li{font-family:none;margin:0 0 5px;padding:0;font-size:13px;font-weight:400;line-height:1.4;color:#445460}#rwctm-sidebar.code #rwctmusage-note.rwctmusage-sidebar .rwctm ol li pre{margin:10px -21px;width:calc(100% + 24px)}#rwctm-sidebar #rwctmusage-note.rwctmusage-sidebar .rwctm pre code,#rwctm-sidebar.code #rwctmusage-note.rwctmusage-sidebar .rwctm pre code{border-left-width:10px;border-left-color:#343541;background:#000;color:#fff;height:50px;line-height:50px}#rwctm-sidebar #rwctmusage-note.rwctmusage-sidebar .rwctm .rwctm-meta{color:hsla(0,0%,100%,.6)}#rwctm-sidebar #rwctmusage-note.rwctmusage-sidebar .rwctm .rwctm-keyword{color:#2e95d3}#rwctm-sidebar #rwctmusage-note.rwctmusage-sidebar .rwctm .rwctm-function{color:#f22c3d}#rwctm-sidebar #rwctmusage-note.rwctmusage-sidebar .rwctm .rwctm-string{color:#00a67d}#rwctm-sidebar #rwctmusage-note.rwctmusage-sidebar .rwctm .rwctm-built_in{color:#e9950c}#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm a,#rwctm-sidebar.code #rwctmusage-note.rwctmusage-sidebar .rwctm a{float:none;background:none;margin:0;padding:0;color:#2271b1;font-size:100%;border-radius:0;box-shadow:none;border:0;font-weight:600;text-decoration:none}#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm a:hover,#rwctm-sidebar.code #rwctmusage-note.rwctmusage-sidebar .rwctm a:hover{color:#135e96;text-decoration:underline}#rwctm-sidebar #rwctmusage-info.rwctmusage-sidebar .rwctmusage-list{margin:10px 0 0}#rwctm-sidebar #rwctmusage-info.rwctmusage-sidebar .rwctmusage-list li{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;list-style:disc;margin:0 0 0 20px;font-size:16px;line-height:30px}#rwctm-sidebar #rwctmusage-info.rwctmusage-sidebar a{color:#0073aa;text-decoration:none;font-weight:600}#rwctm-sidebar #rwctmusage-info.rwctmusage-sidebar a:hover{text-decoration:underline}#add_new_team .team_list p.get_started,#add_new_team .team_list p.activity_notice,#rwctm_global_settings .rwctm_global .rwctm_custom_css p.get_started{color:#464646;margin:0 auto 30px;padding:30px;font-size:18px;font-weight:400;font-style:italic;background:#fff;border-left:10px solid #7ad03a;-webkit-box-shadow:0 1px 1px 0 rgb(0 0 0 / 10%);box-shadow:0 0 3px 1px rgb(0 0 0 / 20%);max-width:95%;border-radius:30px}#add_new_team .team_list p.activity_notice{text-align:center;position:absolute;bottom:0;left:50%;padding:10px 15px;display:inline-block;transform:translateX(-50%);width:50%;border-radius:25px}#rwctm_global_settings .rwctm_global .rwctm_custom_css p.get_started{width:90%;font-size:16px;margin-top:50px;margin-bottom:10px}#add_new_team .table_list p.get_started,#add_new_team .table_list p.rwctm_notice,#rwctm_global_settings .rwctm_global .rwctm_custom_css p.get_started{border-radius:25px;transition:all .3s}#add_new_team .wp-picker-container.wp-picker-active{width:100%}#add_new_team .wp-picker-container.wp-picker-active .wp-picker-open + .wp-picker-input-wrap label{float:left;width:70px!important}#add_new_team .wp-picker-container.wp-picker-active .wp-picker-open + .wp-picker-input-wrap .wp-color-picker{width:70px;float:left}#add_new_team .wp-picker-container.wp-picker-active .wp-picker-holder{width:100%!important}#add_new_team .wp-picker-container.wp-picker-active .wp-picker-holder .iris-picker{max-width:240px!important}#add_new_team .wp-picker-container.wp-picker-active .iris-picker-inner .iris-square{margin-right:6px!important;max-height:147px!important}#add_new_team .wp-picker-container.wp-picker-active .iris-palette-container .iris-palette{width:17px!important;height:17px!important;margin-bottom:4px!important}#add_new_team .wp-picker-container.wp-picker-active .iris-palette-container .iris-palette:nth-child(9)+ a.iris-palette{float:left;clear:left;margin-left:0!important}#add_new_team .wp-picker-container .wp-color-result.button{font-size:12px}#add_new_team a.wp-color-result{margin:2px 2px 0 0}#add_new_team .wp-picker-container input[type=text].wp-color-picker,#add_new_team .button.button-small{margin:0 0 0 -2px;font-size:12px;height:32px;line-height:32px}#add_new_team .button.button-small{margin-left:2px}@media only screen and (min-width:1366px){#teamcolumndiv .member_details{width:525px}}@media only screen and (max-width:1365px) and (min-width:1300px){#teamcolumndiv .member_details{width:493px}#teamcolumndiv .element-input{width:470px}#teamcolumndiv .element-input hr{width:445px}#teamcolumndiv .element-input label.input-title,#add_new_team .element-input label.input-check,#teamcolumndiv .element-input label.input-title-check{width:215px}#teamcolumndiv .element-input label.input-image{width:100px}#add_new_team .element-input table tr.team-header,#add_new_team .element-input table tr.team-input{max-width:94%}#add_new_team .wp-picker-container.wp-picker-active .wp-picker-holder{position:relative;left:-121px}#teamcolumndiv .element-input .rwctm-uploader input.medium{width:198px}}@media only screen and (max-width:1299px) and (min-width:1200px){#add_new_team #teamactivitydiv tr.activitybody td input[type="text"]{max-width:162px}#teamcolumndiv .member_details{width:442px}#teamcolumndiv .element-input{width:419px}#teamcolumndiv .element-input hr{width:395px}#teamcolumndiv .element-input label.input-title,#add_new_team .element-input label.input-check,#teamcolumndiv .element-input label.input-title-check{width:180px}#teamcolumndiv .element-input input.medium{width:210px}#teamcolumndiv .element-input label.input-title.mb-section,#teamcolumndiv .element-input label.input-title.mb-status{width:115px}#add_new_team .element-input .selectize-control.single,#add_new_team .element-input .selectize-control.multi,#add_new_team #settingcommon .team-input .selectize-control.single{width:275px}#teamcolumndiv .element-input label.input-title.mb-section .rwctm_tooltip,#teamcolumndiv .element-input label.input-title.mb-status .rwctm_tooltip{margin-top:9px}#teamcolumndiv .element-input input.in_small{width:122px}#teamcolumndiv .element-input label.input-image{width:100px}#teamcolumndiv .element-input label.input-title.double-text,#teamcolumndiv .element-input label.input-title.double-text:after{width:72px}#teamcolumndiv .element-input input[type=text].in_double_one{width:150px;margin-left:10px;font-size:12px}#teamcolumndiv .element-input input[type=text].in_double_two{width:160px;font-size:12px;margin-top:5px}#add_new_team .element-input table tr.team-header,#add_new_team .element-input table tr.team-input{max-width:413px}#add_new_team .wp-picker-container.wp-picker-active .wp-picker-holder{position:relative;left:-121px}#teamcolumndiv .element-input .rwctm-uploader input.medium{width:170px}}@media only screen and (max-width:1199px) and (min-width:1024px){#add_new_team .team_list table tbody td.team_name{width:410px}#add_new_team .team_list table tbody td.team_name #set_team,#add_new_team .team_list table tbody td input.rwctm_shortcode{font-size:14px}#add_new_team .team_list table tbody td.team_name span{font-size:12px}#add_new_team .team_list table tbody td.shortcode{width:290px}#add_new_team .team_list table tbody td .temp_choice{width:124px}#add_new_team .team_list table tbody td .temp_choice select{font-size:14px;padding-left:5px}#add_new_team #teamactivitydiv tr.activitybody td input[type="text"]{max-width:102px}#add_new_team #teamactivitydiv tr.activitybody td input[type="text"],#add_new_team #teamactivitydiv tr.activitybody td > span{font-size:12px;padding:5px 8px}#add_new_team #teamactivitydiv tr.activitybody td input[type="text"][name="awesome_icon[]"]{max-width:148px;width:148px}#teamcolumndiv .member_details{width:354px}#teamcolumndiv .element-input{width:331px;padding:10px 5px!important}#teamcolumndiv .element-input label.input-title,#add_new_team .element-input label.input-check,#teamcolumndiv .element-input label.input-title-check,#settingcolumndiv .advance-input label.input-radio{padding:10px;width:310px}#add_new_team .element-input input.medium,#teamcolumndiv .element-input input.in_small{width:315px;margin-left:8px}#teamcolumndiv .element-input hr,#teamcolumndiv .element-input label.input-title.double-text:after{width:320px}#teamcolumndiv .element-input label.input-title.mb-section,#teamcolumndiv .element-input label.input-title.mb-status{width:92%}#teamcolumndiv .element-input label.input-title.mb-section .rwctm_tooltip,#teamcolumndiv .element-input label.input-title.mb-status .rwctm_tooltip{margin-top:9px}#add_new_team .element-input .selectize-control.single,#add_new_team .element-input .selectize-control.multi{width:315px;margin:0;padding:0 8px}#teamcolumndiv .element-input input[type=text].in_small{margin-bottom:0}#teamcolumndiv .element-input input[type=number].in_small{width:220px;margin-bottom:0}#teamcolumndiv .element-input input[type=text].in_double_one{width:315px;margin:0 9px;border-radius:5px;border:1px solid #ccc;border-bottom-left-radius:0;border-bottom-right-radius:0}#teamcolumndiv .element-input input[type=text].in_double_two{width:315px;margin:0 9px;border-top:0;border-radius:5px;border-top-left-radius:0;border-top-right-radius:0}#add_new_team .element-input table tr.team-input th{width:325px;display:block}#add_new_team .element-input table tr.team-input .input-title{padding:0 10px}#add_new_team #settingcommon .ui-tabs .ui-tabs-nav li{margin:3px 1px -1px;font-size:13px}#add_new_team #settingcommon .cs-inactive,#add_new_team #settingcommon .cs-active{height:35px;line-height:35px;top:27px}#add_new_team #settingcommon .team-input #max-column .selectize-control.single{width:140px}#add_new_team #settingcommon .team-input .team_options .layout-style{width:60%}}@media only screen and (max-width:1023px) and (min-width:961px){#add_new_team .team_list table tbody td.team_name{width:410px}#add_new_team .team_list table tbody td.team_name #set_team,#add_new_team .team_list table tbody td input.rwctm_shortcode{font-size:12px}#add_new_team .team_list table tbody td.team_name span{font-size:10px}#add_new_team .team_list table tbody td.shortcode{width:230px}#add_new_team .team_list table tbody td .temp_choice{width:112px}#add_new_team .team_list table tbody td .temp_choice select{font-size:12px;padding-left:5px}#add_new_team .team_list table tbody td.rwctm-status .status{width:30px!important;height:30px;top:-3px;left:50%;font-size:0;padding-right:0!important;transform:translateX(-50%)}#add_new_team .team_list table tbody td span.status:after{top:10px}#add_new_team #teamactivitydiv tr.activitybody td input[type="text"]{max-width:80px}#add_new_team #teamactivitydiv tr.activitybody td input[type="text"],#add_new_team #teamactivitydiv tr.activitybody td > span{font-size:12px;padding:5px 3px}#add_new_team #teamactivitydiv tr.activitybody td input[type="text"][name="awesome_icon[]"]{max-width:148px;width:148px}#add_new_team #settingcommon .ui-tabs .ui-tabs-nav li{margin:3px 1px -1px;font-size:12px}#add_new_team #settingcommon .cs-inactive,#add_new_team #settingcommon .cs-active{height:32px;line-height:32px;top:27px;right:25px}#add_new_team #settingcommon .team-input #max-column .selectize-control.single{width:124px}#add_new_team #settingcommon .team-input .team_options .layout-style{width:60%}#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm blockquote p{position:relative;margin:190px 0 0;padding:0;font-size:.5rem}#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm blockquote .blockquote-author-image{width:90%;height:53%;background-size:cover;background-position:12px -143px}#rwctm-sidebar.code{width:33%}}@media only screen and (max-width:960px) and (min-width:783px){#add_new_team .team_list table thead th{font-size:14px}#add_new_team .team_list table thead th:last-child{padding-left:0}#add_new_team .team_list table tbody td.team_name{width:410px}#add_new_team .team_list table tbody td.team_name #set_team,#add_new_team .team_list table tbody td input.rwctm_shortcode{font-size:12px}#add_new_team .team_list table tbody td.team_name span{font-size:10px}#add_new_team .team_list table tbody td.shortcode{width:250px}#add_new_team .team_list table tbody td .temp_choice{width:110px}#add_new_team .team_list table tbody td .temp_choice select{font-size:12px;padding-left:5px}#add_new_team .team_list table tbody td.rwctm-status .status{width:20px!important;height:20px;top:-3px;left:50%;font-size:0;padding-right:0!important;transform:translateX(-50%)}#add_new_team .team_list table tbody td span.status:after{top:5px;left:5px}#add_new_team #teamactivitydiv tr.activitybody td input[type="text"]{max-width:100%;width:100%}#add_new_team #teamactivitydiv tr.activitybody td input[type="text"],#add_new_team #teamactivitydiv tr.activitybody td > span{display:block;border-radius:5px 5px 0 0!important;font-size:12px;padding:5px 3px}#add_new_team #teamactivitydiv tr.activitybody td input[type="text"]{border-radius:0 0 5px 5px!important;margin:0!important}#add_new_team #teamactivitydiv tr.activitybody td:nth-of-type(3) input[type="text"][name="awesome_icon[]"]{border-radius:5px 5px 0 0!important}#add_new_team #teamactivitydiv tr.activitybody td:nth-of-type(3) > span{border-radius:0 0 5px 5px!important;margin-left:0!important}#add_new_team #settingcommon .ui-tabs .ui-tabs-nav li{margin:3px 1px -1px;font-size:12px}#add_new_team #settingcommon .ui-tabs .ui-tabs-nav li a{padding:.7em .76em}#add_new_team #settingcommon .cs-inactive,#add_new_team #settingcommon .cs-active{height:32px;line-height:32px;top:27px;right:25px}#add_new_team #settingcommon .team-input #max-column .selectize-control.single{width:105px}#add_new_team #settingcommon .team-input .team_options .layout-style{width:60%}#add_new_team #settingcommon .team-input label.labelexpanded{width:30%}#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm blockquote p{position:relative;margin:190px 0 0;padding:0;font-size:.5rem}#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm blockquote .blockquote-author-image{width:90%;height:50%;background-size:cover;background-position:12px -173px}#rwctm-sidebar.code{width:33%}}@media only screen and (max-width:782px){#add_new_team h2 a.add-new-h2{padding:0 10px}#add_new_team .team_list table#rwctm_list tbody.team_todo{margin-bottom:0;display:grid}#add_new_team .team_list table#rwctm_list tbody.team_todo:last-child{margin-bottom:-9px}#add_new_team .team_list table tbody.team_todo tr{border-bottom-width:0}#add_new_team .team_list table#rwctm_list .team_todo td{border:none;border-bottom:1px solid #eee;position:relative;padding:0;padding-left:38%;text-align:left;height:40px;line-height:40px}#add_new_team .team_list table#rwctm_list .team_todo td:before{position:absolute;top:0;left:0;width:32%;height:40px;padding-right:10px;text-align:right;background:#2271b1;color:#fff;white-space:nowrap}#add_new_team .team_list table#rwctm_list .team_todo td.team_name:before{height:50px}#add_new_team .team_list table#rwctm_list .team_todo td:nth-of-type(1):before{content:"ID:"}#add_new_team .team_list table#rwctm_list .team_todo td:nth-of-type(2):before{content:"Team Name:"}#add_new_team .team_list table#rwctm_list .team_todo td:nth-of-type(3):before{content:"Shortcode:"}#add_new_team .team_list table#rwctm_list .team_todo td:nth-of-type(4):before{content:"Template:"}#add_new_team .team_list table#rwctm_list .team_todo td:nth-of-type(5):before{content:"Status:"}#add_new_team .team_list table#rwctm_list .team_todo td:last-child{border-bottom:0}#add_new_team .team_list table#rwctm_list .team_todo td:nth-of-type(1),#add_new_team .team_list table#rwctm_list .team_todo td:nth-of-type(2),#add_new_team .team_list table#rwctm_list .team_todo td:nth-of-type(3),#add_new_team .team_list table#rwctm_list .team_todo td:nth-of-type(4),#add_new_team .team_list table#rwctm_list .team_todo td:nth-of-type(5){display:block;width:61.6%;font-weight:bold;color:#32373c}#add_new_team .team_list table#rwctm_list .team_todo .team_name{height:50px}#add_new_team .team_list table tbody td.team_name span{padding:0;height:32px}#add_new_team .team_list table tbody td.team_name span#process_team:after{border:none}#add_new_team .team_list table tbody td #copy_team.duplicate_team{top:15px}#add_new_team .team_list table tbody td.team_name div{position:relative;top:-5px;font-size:14px}#add_new_team .team_list table tbody td.team_name span{font-size:8px;font-weight:400;position:relative;top:-30px;margin-left:0;padding-left:2px;border:none}#add_new_team .team_list table tbody td.team_name span#remTeam{position:absolute;right:23px;top:-41px}#add_new_team .team_list table tbody td .ot_tooltip{top:0}#add_new_team .team_list table tbody td input.rwctm_shortcode{min-height:10px;line-height:1;border-bottom-width:1px;font-size:14px}#add_new_team .team_list table tbody td .temp_choice{height:2.2em;line-height:2.2;top:2px}#add_new_team .team_list table tbody td .temp_choice select{font-size:12px;min-height:26px;line-height:22px;margin:0;padding:0 7px;border-bottom-width:1px}#add_new_team .team_list table tbody td .temp_choice::after{font-size:23px;top:-7px;height:39px}#add_new_team .team_list table tbody td span.status{height:21px;line-height:20px;font-size:15px}#add_new_team .team_list table tbody td span.status:after{top:5px}#add_new_team #teamactivitydiv tr.activitybody td > span{display:none}#add_new_team #teamactivitydiv table#activity_edititem{border:none}#add_new_team .team_list table#rwctm_list thead,#add_new_team #teamactivitydiv table#activity_edititem thead{display:none}#add_new_team .team_list table tbody tr{display:block;margin-bottom:20px}#add_new_team #teamactivitydiv table#activity_edititem tr.activitybody{margin-bottom:20px;display:block}#add_new_team #teamactivitydiv table#activity_edititem tr.activitybody td{border:none;border-right:1px solid #ddd;position:relative;margin:0;padding:0;padding-left:37%;text-align:left;height:44px;line-height:43px}#add_new_team #teamactivitydiv table#activity_edititem tr.activitybody td input,#add_new_team #teamactivitydiv table#activity_edititem tr.activitybody td select#activity_type{margin:0;padding:9px 6px 7px;font-size:14px;font-weight:400;border-radius:0;width:100%;border-right:0}#add_new_team #teamactivitydiv tr.activitybody td .select{margin:5px 6px 6px;width:90%}#add_new_team #teamactivitydiv table#activity_edititem tr.activitybody td:nth-of-type(4){border-bottom:1px solid #dddd}#add_new_team #teamactivitydiv tr.activitybody td .select .options{width:100%}#add_new_team #teamactivitydiv table#activity_edititem tr.activitybody td select#activity_type{padding:9px 6px}#add_new_team #teamactivitydiv table#activity_edititem tr.activitybody td::before{position:absolute;top:0;left:1px;width:34%;height:43px;padding-right:10px;text-align:right;background:#22313f;color:#ffffff;white-space:nowrap}#add_new_team #teamactivitydiv table#activity_edititem tr.activitybody td:nth-of-type(1):before{content:"Name:"}#add_new_team #teamactivitydiv table#activity_edititem tr.activitybody td:nth-of-type(2):before{content:"URL:"}#add_new_team #teamactivitydiv table#activity_edititem tr.activitybody td:nth-of-type(3):before{content:"Icon:"}#add_new_team #teamactivitydiv table#activity_edititem tr.activitybody td:nth-of-type(4):before{content:"Type:"}#add_new_team #teamactivitydiv table#activity_edititem tr.activitybody td:nth-of-type(5):before{content:"Actions:"}#add_new_team #teamactivitydiv table#activity_edititem tr.activitybody td:nth-of-type(1),#add_new_team #teamactivitydiv table#activity_edititem tr.activitybody td:nth-of-type(2),#add_new_team #teamactivitydiv table#activity_edititem tr.activitybody td:nth-of-type(3),#add_new_team #teamactivitydiv table#activity_edititem tr.activitybody td:nth-of-type(4),#add_new_team #teamactivitydiv table#activity_edititem tr.activitybody td:nth-of-type(5){display:block;width:62%;font-weight:bold;color:#32373c}#add_new_team .team_list p.activity_notice{font-size:12px;bottom:26px;left:63%;width:55%}#add_new_team .element-input table tr td{display:table-cell}#add_new_team .wp-picker-container .wp-color-result.button.wp-color-result.wp-picker-open{padding:0 0 0 30px}#add_new_team .wp-picker-container .wp-color-result.button.wp-color-result.wp-picker-open span{padding:0 6px}#add_new_team #settingcommon .ui-tabs .ui-tabs-nav li{width:99px;margin-top:7px;font-size:13px}#add_new_team #settingcommon .ui-tabs .ui-tabs-nav li a{width:74px}#add_new_team #settingcommon .cs-inactive,#add_new_team #settingcommon .cs-active{height:35px;line-height:35px;top:74px;right:30px}#add_new_team #settingcommon .team-input span.check_note,#add_new_team #settingcommon .team-input .image_size span.input_note{width:300px;left:0;top:100%;line-height:18px;font-size:9px}#add_new_team #settingcommon .team-input span.input_note,#add_new_team #settingcommon .team-input span.check_note{left:0;top:104%}#add_new_team #settingcommon .team-input .image_size span.input_note{left:265px}#add_new_team #settingcommon .team-input input.medium,#add_new_team #settingcommon .team-input textarea.medium{width:275px}#add_new_team #settingcommon .team-input .selectize-control.single{width:160px}#add_new_team #settingcommon .team-input .tmname_margin label.label-check,#add_new_team #settingcommon .team-input .team_options.tm_name_font label.label-check,#add_new_team #settingcommon .team-input .team_options.nav_font_size label.label-check,#add_new_team #settingcommon .team-input .team_options.mn_thumb_font label.label-check,#add_new_team #settingcommon .team-input .team_options.dp_thumb_font label.label-check,#add_new_team #settingcommon .team-input .team_options.dg_thumb_font label.label-check,#add_new_team #settingcommon .team-input .team_options.bio_thumb_fnt label.label-check,#add_new_team #settingcommon .team-input .team_options.sm_thumb_font label.label-check{display:block}#add_new_team #settingcommon .team-input .team_options.tm_name_font,#add_new_team #settingcommon .team-input .team_options.nav_font_size,#add_new_team #settingcommon .team-input .team_options.mn_thumb_font,#add_new_team #settingcommon .team-input .team_options.dp_thumb_font,#add_new_team #settingcommon .team-input .team_options.dg_thumb_font,#add_new_team #settingcommon .team-input .team_options.bio_thumb_fnt,#add_new_team #settingcommon .team-input .team_options.sm_thumb_font,#add_new_team #settingcommon .team-input .team_options.tmname_margin{padding-top:0}#add_new_team #settingcommon .team-input .team_options .label-check.numgroup{position:relative;display:inline-block;width:224px}#add_new_team #settingcommon .team-input input[type=number].medium{width:100px}#add_new_team #settingcommon .team-input input.tickbox{float:right;top:10px}#add_new_team #settingcommon .team-input .team_options.enable_image .check_note{top:80%;left:0}#add_new_team #settingcommon .team-input #max-column h4{width:100%}#add_new_team #settingcommon .team-input #max-column .team_options{margin:0 15px 30px 0}#add_new_team #settingcommon .team-input #max-column .selectize-control.single{width:130px}#add_new_team #settingcommon .team-input .marked_layout .label-check,#add_new_team #settingcommon .team-input .layout_style .label-check{top:0}#add_new_team #settingcommon .team-input .team_options .layout-style{width:70%}#add_new_team #settingcommon .team-input label.labelexpanded{width:30%}#add_new_team #settingcommon .team-input .team_options.tm_name_font .label-check.numgroup,#add_new_team #settingcommon .team-input .team_options.nav_font_size .label-check.numgroup,#add_new_team #settingcommon .team-input .team_options.mn_thumb_font .label-check.numgroup,#add_new_team #settingcommon .team-input .team_options.dp_thumb_font .label-check.numgroup,#add_new_team #settingcommon .team-input .team_options.dg_thumb_font .label-check.numgroup,#add_new_team #settingcommon .team-input .team_options.bio_thumb_fnt .label-check.numgroup,#add_new_team #settingcommon .team-input .team_options.sm_thumb_font .label-check.numgroup{display:inline}#add_new_team #settingcommon .team-input .tm_name_font span.input_note,#add_new_team #settingcommon .team-input .nav_font_size span.input_note,#add_new_team #settingcommon .team-input .mn_thumb_font span.input_note,#add_new_team #settingcommon .team-input .dp_thumb_font span.input_note,#add_new_team #settingcommon .team-input .dg_thumb_font span.input_note,#add_new_team #settingcommon .team-input .bio_thumb_fnt span.input_note,#add_new_team #settingcommon .team-input .sm_thumb_font span.input_note{position:relative;top:15px;left:5px;display:block}#add_new_team #settingcommon .team-input input.medium.rwctm-color-picker{width:100%}.template-container .template-items{width:32%;margin:0 1% 1% 0}.template-container .template-items .template-actions .button-secondary{min-height:20px;padding:0 14px;line-height:2}#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm blockquote p{font-size:12px}#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm blockquote cite{margin-top:0}#rwctm_global_settings .rwctm_global.ui-widget.ui-widget-content{width:96.5%;margin:0;padding:20px 5px}#rwctm_global_settings .ui-tabs .ui-tabs-nav li{margin:0 1px!important;padding:0!important}#rwctm_global_settings .ui-tabs .ui-tabs-nav .ui-tabs-anchor{padding:5px!important;font-size:12px!important}#rwctm_global_settings .ui-tabs .ui-tabs-panel{padding:0 10px!important}.rwctm_global label.input-check,.rwctm_global label.input-title{width:78%;font-size:12px;height:18px;line-height:10px;padding:9px 0}.rwctm_global label.rwctm_global_check input[type=checkbox]{width:15px;height:15px}.rwctm_global #user_choice_font{padding:10px 9px 10px 5px}#rwctm_global_settings a.rwctm_tooltip:hover:after{top:26px;left:-170px;width:calc(100% + 280px)!important}#rwctm_global_settings a.rwctm_tooltip:hover:before{top:7px;left:-3px;border-color:transparent transparent #aaa}#rwctm_global_settings a.rwctm_tooltip.rwctm_note:hover:after{padding:27px 10px 10px;font-size:12px;top:30px;left:-195px;line-height:20px}#rwctm_global_settings a.rwctm_tooltip.rwctm_note::before{top:11px!important}#rwctm_global_settings a.rwctm_tooltip.rwctm_note:hover i.attention::after{left:-184px;top:34px}#add_new_team .team_list p.get_started,#add_new_team .team_list p.rwctm_notice,#rwctm_global_settings .rwctm_global .rwctm_custom_css p.get_started{width:85%;font-size:12px;padding:15px}#add_new_team .team_list p.rwctm_notice{padding:5px}#add_new_team input#rwctm_add_new,#add_new_team #rwctm_upfeature,#add_new_team #rwctm_addfeature{position:relative;top:-50px}.wrap .rwctm_guide.postbox-container{width:100%!important}.wrap .rwctm_guide.postbox-container .rwctmusage-maincontent{padding:0}#rwctm-narration{width:100%;margin-bottom:0}#rwctm-narration #rwctmusage-note.rwctmusage-maincontent{padding-bottom:0;padding-right:0}#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm,#rwctm-sidebar #rwctmusage-note.rwctmusage-sidebar .rwctm{padding:10px}.rwctmusage-maincontent .rwctm p,#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm .likeit{font-size:12px}#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm blockquote{margin:25px 0}#rwctm-sidebar.code,#rwctm-sidebar.code.rwctm-tools{width:100%;margin:0}#rwctm-sidebar.code.rwctm-tools{margin-top:20px}#rwctm-sidebar.tools{width:100%;margin:10px 0 0}#rwctm-sidebar{width:100%}#rwctm-sidebar #rwctmusage-note.rwctmusage-sidebar,#rwctm-sidebar #rwctmusage-info.rwctmusage-sidebar{max-width:100%}.postbox-container.rwctm-guide{width:100%!important}.rwctm-guide .rwctmusage-maincontent{padding:0}.rwctm-guide .rwctmusage-maincontent .inside .getting-started_video{display:flex}#rwctm-sidebar{width:100%}#rwctm-sidebar.code .rwctmusage-sidebar h3{font-size:20px}#rwctm-sidebar #rwctmusage-note.rwctmusage-sidebar,#rwctm-sidebar #rwctmusage-info.rwctmusage-sidebar{max-width:100%;padding:10px}}@media only screen and (max-width:640px){#add_new_team{overflow:hidden}#add_new_team .team_list #rwctm_list{display:block}#add_new_team .teamactivitywrap{padding:0}#add_new_team .teamcolumnwrap{padding:0 3px 0 4px;margin:0}#teamcolumndiv #addButtons{left:5px}#teamcolumndiv #addButtons a#addMember{position:relative;min-height:30px}#teamcolumndiv .accordion-expand-holder{right:10px;top:43px}#teamcolumndiv #sortable_column{margin:0}#teamcolumndiv .member_details{width:426px}#teamcolumndiv #sortable_column .member_details h3.mtitle{width:378px;font-size:13px;height:24px;line-height:24px}#teamcolumndiv .element-input{width:402px;top:4px}#teamcolumndiv .element-input label.input-title,#add_new_team .element-input label.input-check,#teamcolumndiv .element-input label.input-title-check{padding:0 10px 10px;width:385px}#teamcolumndiv .element-input hr,#teamcolumndiv .element-input label.input-title.double-text:after{width:385px}#teamcolumndiv .element-input input.medium,#teamcolumndiv .element-input textarea[id=member_desc],#teamcolumndiv .element-input textarea[id=short_bio],#teamcolumndiv .element-input textarea[id=tag_line],#add_new_team #settingcommon .team-input textarea.medium{margin-left:9px;width:385px}#add_new_team #settingcommon .team-input textarea.medium{margin-left:0}#add_new_team #settingcommon .team-input .image_size span.input_note{left:0}#add_new_team #settingcommon .team-input #img-custom,#add_new_team #settingcommon .team-input #slider-apspeed{margin-top:0}#add_new_team #settingcommon .team-input .marked_layout .input_note,#add_new_team #settingcommon .team-input .layout_style .input_note{bottom:-70px}#add_new_team #settingcommon .team-input .team_options.enable_filter span.check_note{top:84%}#add_new_team #settingcommon .team-input h4{padding-top:20px}#teamcolumndiv .element-input label.input-title.mb-section,#teamcolumndiv .element-input label.input-title.mb-status{width:92%}#add_new_team #teamcolumndiv .element-input label.input-title.mb-section a.rwctm_tooltip::before,#add_new_team #teamcolumndiv .element-input label.input-title.mb-status a.rwctm_tooltip::before{top:10px}#add_new_team .element-input .selectize-control.single,#add_new_team .element-input .selectize-control.multi{width:385px;margin:0;padding:0 8px}#teamcolumndiv .element-input input[type=text].in_small{margin-left:9px;width:90px}#teamcolumndiv .element-input input[type=number].in_small{width:200px}#teamcolumndiv .element-input input[type=text].in_double_one{width:385px;margin:0 9px;border-radius:5px;border:1px solid #ccc;border-bottom-left-radius:0;border-bottom-right-radius:0}#teamcolumndiv .element-input input[type=text].in_double_two{width:385px;margin:0 9px;border-top:0;border-radius:5px;border-top-left-radius:0;border-top-right-radius:0}#add_new_team .element-input table tr td:before{display:none}#add_new_team .element-input table tr td{width:40%!important;padding:5px 10px 0!important;height:auto!important;line-height:1.3!important}#add_new_team .ui-accordion .ui-accordion-content a.button-primary.rwctm-upload{margin-left:9px}#add_new_team #settingcommon{margin:60px 0 15px;padding:0 5px}#add_new_team #settingcommon .ui-widget.ui-widget-content{padding:0}#add_new_team #settingcommon .cs-inactive,#add_new_team #settingcommon .cs-active{top:-40px;right:5px}#rwctm_global_settings .ui-tabs .ui-tabs-nav,#settingcommon .ui-tabs .ui-tabs-nav{padding:0}#add_new_team #settingcommon .ui-tabs .ui-tabs-nav li{width:32%;max-width:103px;margin:1px;padding-bottom:1px}#add_new_team #settingcommon .ui-tabs .ui-tabs-nav li a{width:75px}#add_new_team #settingcommon .team-input .team_options.tm_name_font .label-check.numgroup,#add_new_team #settingcommon .team-input .team_options.nav_font_size .label-check.numgroup,#add_new_team #settingcommon .team-input .team_options.mn_thumb_font .label-check.numgroup,#add_new_team #settingcommon .team-input .team_options.dp_thumb_font .label-check.numgroup,#add_new_team #settingcommon .team-input .team_options.dg_thumb_font .label-check.numgroup,#add_new_team #settingcommon .team-input .team_options.bio_thumb_fnt .label-check.numgroup,#add_new_team #settingcommon .team-input .team_options.sm_thumb_font .label-check.numgroup{display:inline-block}#add_new_team #settingcommon .team-input label.label-title,#add_new_team #settingcommon .team-input label.label-check{width:218px}#add_new_team #settingcommon .team-input .team_options .label-check.numgroup{width:174px}#add_new_team #settingcommon .team-input #slider-option label.label-check{width:160px}#add_new_team #settingcommon .team-input .team_options .label-check.numgroup{position:relative;top:0;padding:0 0 3px}#add_new_team #settingcommon .team-input input.medium{margin-bottom:10px}#add_new_team #settingcommon .team-input .team_options.tm_name_font,#add_new_team #settingcommon .team-input .team_options.nav_font_size,#add_new_team #settingcommon .team-input .team_options.mn_thumb_font,#add_new_team #settingcommon .team-input .team_options.dp_thumb_font,#add_new_team #settingcommon .team-input .team_options.dg_thumb_font,#add_new_team #settingcommon .team-input .team_options.bio_thumb_fnt,#add_new_team #settingcommon .team-input .team_options.sm_thumb_font,#add_new_team #settingcommon .team-input .team_options.tmname_margin{padding-top:0;margin-bottom:10px}#add_new_team #settingcommon .team-input .rwctm_notice{width:232px;margin-left:0}#add_new_team #settingcommon .team-input .selectize-control.single{width:242px}#add_new_team #settingcommon .team-input #img-features::before,#add_new_team #settingcommon .team-input #filter-nav::before,#add_new_team #settingcommon .team-input #img-custom::before,#add_new_team #settingcommon .team-input #slider-apspeed::before,#add_new_team #settingcommon .team-input .image_margin::before{left:unset;right:0}#add_new_team #settingcommon .team-input #img-custom .rwctm_notice{width:90%;margin-left:-12px;margin-top:42px}#add_new_team #settingcommon .team-input .marked_layout .label-check,#add_new_team #settingcommon .team-input .layout_style .label-check{top:-10px}#add_new_team #settingcommon .team-input .team_options .layout-style{width:300px;margin:0}#add_new_team #settingcommon .team-input label.labelexpanded{width:33%}#add_new_team #settingcommon .team-input .team_options.thumb_desig,#add_new_team #settingcommon .team-input .team_options.thumb_depart,#add_new_team #settingcommon .team-input .team_options.thumb_smicon,#add_new_team #settingcommon .team-input .team_options.member_desig,#add_new_team #settingcommon .team-input .team_options.member_depart,#add_new_team #settingcommon .team-input .team_options.member_smicon{margin-bottom:30px}#add_new_team #settingcommon .team-input input[type=text],#add_new_team #settingcommon .team-input input.medium{width:95%;margin:0}#add_new_team .ui-tabs-panel{padding:10px}#add_team_template .template-container .template-items{width:100%;margin-right:0}#add_team_template .template-container .template-items:nth-child(2n),#add_team_template .template-container .template-items:nth-child(3n){margin-right:0}}@media only screen and (max-width:480px){#add_new_team{overflow:hidden}#add_new_team #teamactivitydiv tr.activitybody td > span{display:none}#add_new_team .teamactivitywrap{padding:0}#teamcolumndiv .member_details{width:308px}#teamcolumndiv #sortable_column .member_details h3.mtitle,#teamcolumndiv .element-input hr,#teamcolumndiv .element-input label.input-title.double-text:after,#teamcolumndiv .element-input input.medium,#teamcolumndiv .element-input textarea[id=member_desc],#teamcolumndiv .element-input textarea[id=short_bio],#teamcolumndiv .element-input textarea[id=tag_line],#add_new_team #settingcommon .team-input textarea.medium{width:260px}#teamcolumndiv .element-input{width:284px}#teamcolumndiv .element-input label.input-title,#add_new_team .element-input label.input-check,#teamcolumndiv .element-input label.input-title-check{width:255px}#add_new_team .element-input .selectize-control.single,#add_new_team .element-input .selectize-control.multi{width:262px}#teamcolumndiv .element-input input[type=text].in_small{width:70px}#teamcolumndiv .element-input input[type=number].in_small{width:167px}#teamcolumndiv .element-input input[type=text].in_double_one,#teamcolumndiv .element-input input[type=text].in_double_two{width:266px}#add_new_team .element-input table tr td:before{display:none}#add_new_team .element-input table tr td{width:60%!important}#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm blockquote{padding-left:15px;padding-right:15px}#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm blockquote p{position:relative;margin:206px 0 0;padding:0;font-size:12px}#rwctm-narration #rwctmusage-note.rwctmusage-maincontent .rwctm blockquote .blockquote-author-image{width:92%;height:48%;background-size:contain;background-position:0}}
  • rwc-team-members/trunk/assets/css/rwctm-custom.php

    r3050730 r3061831  
    77 * output and ensure seamless integration with the overall website design.
    88 *
    9  * @package RWC Team Members - v0.1 - 14 March, 2024
     9 * @package RWC Team Members - v0., 2024
    1010 */
    1111if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
  • rwc-team-members/trunk/assets/css/rwctm-slider.css

    r3050730 r3061831  
    77 * for displaying team member information.
    88 *
    9  * @package RWC Team Members - v0.1 - 14 March, 2024
     9 * @package RWC Team Members - v0., 2024
    1010 */
    1111@charset "UTF-8";
  • rwc-team-members/trunk/assets/css/rwctm-slider.min.css

    r3050730 r3061831  
    77 * for displaying team member information.
    88 *
    9  * @package RWC Team Members - v0.1 - 14 March, 2024
     9 * @package RWC Team Members - v0., 2024
    1010 */
    1111@charset "UTF-8";.rwctm-loading .rwctm-list{background:#fff url(ajax-loader.gif) center center no-repeat}@font-face{font-family:'rwc-team-members';font-weight:normal;font-style:normal;src:url(fonts/rwctm.eot);src:url(fonts/rwctm.eot?#iefix) format("embedded-opentype"),url(fonts/rwctm.woff) format("woff"),url(fonts/rwctm.ttf) format("truetype"),url(fonts/rwctm.svg#rwctm) format("svg")}.rwctm-prev,.rwctm-next{font-size:0;line-height:0;position:absolute;top:50%;display:block;width:20px;height:20px;padding:0;-webkit-transform:translate(0,-50%);-ms-transform:translate(0,-50%);transform:translate(0,-50%);cursor:pointer;color:transparent;border:none;outline:none;background:transparent}.rwctm-prev:hover,.rwctm-prev:focus,.rwctm-next:hover,.rwctm-next:focus{color:transparent;outline:none;background:transparent}.rwctm-prev:hover:before,.rwctm-prev:focus:before,.rwctm-next:hover:before,.rwctm-next:focus:before{opacity:1}.rwctm-prev.rwctm-disabled:before,.rwctm-next.rwctm-disabled:before{opacity:.25}.rwctm-prev:before,.rwctm-next:before{font-family:'rwc-team-members';font-size:20px;line-height:1;opacity:.75;color:#000;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.rwctm-prev{left:-25px}[dir='rtl'] .rwctm-prev{right:-25px;left:auto}.rwctm-prev:before{content:'←'}[dir='rtl'] .rwctm-prev:before{content:'→'}.rwctm-next{right:-25px}[dir='rtl'] .rwctm-next{right:auto;left:-25px}.rwctm-next:before{content:'→'}[dir='rtl'] .rwctm-next:before{content:'←'}.rwctm-dotted.rwctm-slider{margin-bottom:30px}.rwctm-dots{position:absolute;bottom:-25px;display:block;width:100%;padding:0;margin:0;list-style:none;text-align:center}.rwctm-dots li{position:relative;display:inline-block;width:20px;height:20px;margin:0 5px;padding:0;cursor:pointer}.rwctm-dots li button{font-size:0;line-height:0;display:block;width:20px;height:20px;padding:5px;cursor:pointer;color:transparent;border:0;outline:none;background:transparent}.rwctm-dots li button:hover,.rwctm-dots li button:focus{outline:none}.rwctm-dots li button:hover:before,.rwctm-dots li button:focus:before{opacity:1}.rwctm-dots li button:before{font-family:'rwc-team-members';font-size:6px;line-height:20px;position:absolute;top:0;left:0;width:20px;height:20px;content:'•';text-align:center;opacity:.25;color:black;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.rwctm-dots li.rwctm-active button:before{opacity:.75;color:black}.rwctm-slider{position:relative;display:block;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.rwctm-list{position:relative;display:block;overflow:hidden;margin:0;padding:0}.rwctm-list:focus{outline:none}.rwctm-list.dragging{cursor:pointer;cursor:hand}.rwctm-slider .rwctm-track,.rwctm-slider .rwctm-list{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.rwctm-track{position:relative;top:0;left:0;display:block;margin-left:auto;margin-right:auto}.rwctm-track:before,.rwctm-track:after{display:table;content:''}.rwctm-track:after{clear:both}.rwctm-loading .rwctm-track{visibility:hidden}.rwctm-slide{display:none;float:left;height:100%;min-height:1px}[dir='rtl'] .rwctm-slide{float:right}.rwctm-slide img{display:block}.rwctm-slide.rwctm-loading img{display:none}.rwctm-slide.dragging img{pointer-events:none}.rwctm-initialized .rwctm-slide{display:block}.rwctm-loading .rwctm-slide{visibility:hidden}.rwctm-vertical .rwctm-slide{display:block;height:auto;border:1px solid transparent}.rwctm-arrow.rwctm-hidden{display:none}
  • rwc-team-members/trunk/assets/css/rwctm-style.css

    r3050730 r3061831  
    66 * member information displayed on the website's pages.
    77 *
    8  * @package RWC Team Members - v0.1 - 14 March, 2024
     8 * @package RWC Team Members - v0., 2024
    99 */
    1010/* Notification Box */
  • rwc-team-members/trunk/assets/css/rwctm-style.min.css

    r3050730 r3061831  
    66 * member information displayed on the website's pages.
    77 *
    8  * @package RWC Team Members - v0.1 - 14 March, 2024
     8 * @package RWC Team Members - v0., 2024
    99 */
    1010.rwctm_notice{margin:0;padding:15px;border-radius:5px;margin-bottom:10px;background-color:#f0f0f0;border:1px solid #dddddd;color:#333333;font-size:15px;line-height:24px}.rwctm_notice a{color:#007bff;text-decoration:none!important}.rwctm_notice.success{background-color:#e5f9e0;border-color:#80c780;color:#378037}.rwctm_notice.info{background-color:#e7f4fd;border-color:#5da4ff;color:#007bff}.rwctm_notice.warning{background-color:#fff3d1;border-color:#e6b800;color:#b58c00}.rwctm_notice.error{background-color:#f9d4d4;border-color:#e66464;color:#b63737}h3.rwctm_notice{font-size:16px}.rwctm-container{font-family:'Open Sans',sans-serif;width:100%;min-height:100%}.rwctm-container h1,.rwctm-container h2,.rwctm-container h3,.rwctm-container h4,.rwctm-container h5,.rwctm-container h6{font-family:'Roboto',sans-serif}.rwctm-container a{text-decoration:none;color:#3498DB}.rwctm-container h2.rwctm_tm_name{font-size:3em;color:#000;font-weight:600;text-transform:capitalize;text-align:center;margin:.7em auto;padding-bottom:.4em;position:relative}.rwctm-container h2.rwctm_tm_name span{color:#ffc107}.rwctm-container h2.rwctm_tm_name:before,.rwctm-container h2.rwctm_tm_name:after{content:'';position:absolute;background:#f5b120;height:2px}.rwctm-container h2.rwctm_tm_name:before{width:11%;bottom:8%;left:44.5%}.rwctm-container h2.rwctm_tm_name:after{width:18%;right:41%;bottom:0;background:#000}.rwctm-container .rwctm-team-filter-wrap{width:100%;position:relative;text-align:center;font-size:16px;margin:20px auto;padding:10px 0}.rwctm-container .rwctm-team-filter-wrap .rwctm-filter-btn{background:none;margin:0 5px 15px;padding:7px 20px;display:inline-block;background:#e9ecef;color:#1d233b;cursor:pointer;-webkit-transition:all .3s ease;-moz-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease}.rwctm-container .rwctm-team-filter-wrap .rwctm-active-filter{background:#516d9f!important;color:#ffffff!important;-webkit-box-shadow:inset 0 -3px 0 0 #394c6e;box-shadow:inset 0 -3px 0 0 #394c6e;font-weight:700}.rwctm-container .rwctm-team-filter-wrap .rwctm-filter-btn:first-child{margin-left:0}.rwctm-container .rwctm-team-filter-wrap .rwctm-filter-btn:hover{background:#516d9f!important;color:#ffffff!important;-webkit-box-shadow:inset 0 -3px 0 0 #394c6e;box-shadow:inset 0 -3px 0 0 #394c6e}.rwctm-container .rwctm-row{font-size:0;margin:0 auto;padding:0;text-align:center;display:block}.rwctm-container .rwctm-row .rwctm-dots{bottom:-40px}.rwctm-container .rwctm-row li{list-style-type:none}.rwctm-container .rwctm-member{margin:0;padding:0;text-align:center;display:inline-block;position:relative;font-size:15px;vertical-align:top;width:25%;-webkit-transition:-webkit-transform .2s;transition:-webkit-transform .2s;-o-transition:-o-transform .2s;-moz-transition:transform .2s,-moz-transform .2s;transition:transform .2s;transition:transform .2s,-webkit-transform .2s,-moz-transform .2s,-o-transform .2s}.rwctm-container .rwctm-member .rwctm-member-list{position:relative}.rwctm-container .rwctm-member .rwctm-member-list .rwctm-ribbon{position:absolute;top:15px;right:-8px;overflow:visible;font-family:'Droid Sans',sans-serif;font-size:14px;font-weight:700;line-height:24px;z-index:9999}.rwctm-container .rwctm-member .rwctm-member-list .rwctm-ribbon:nth-child(2){top:45px}.rwctm-container .rwctm-member .rwctm-member-list .rwctm-ribbon:nth-child(3){top:75px}.rwctm-container .rwctm-member .rwctm-member-list .rwctm-ribbon a{display:block;padding:0 20px 0 5px;position:relative;background:#cb0000;background:-moz-linear-gradient(left,#fe0000,#cb0000);background:-webkit-linear-gradient(left,#fe0000,#cb0000);background:-o-linear-gradient(left,#fe0000,#cb0000);background:-ms-linear-gradient(left,#fe0000,#cb0000);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fe0000',endColorstr='#cb0000',GradientType=1);-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fe0000',endColorstr='#cb0000',GradientType=1);background:-webkit-gradient(linear,left top,right top,from(#fe0000),to(#cb0000));background:linear-gradient(to right,#fe0000,#cb0000);overflow:visible;height:24px;margin-left:29px;color:#fff;text-decoration:none}.rwctm-container .rwctm-member .rwctm-member-list .rwctm-ribbon:before,.rwctm-container .rwctm-member .rwctm-member-list .rwctm-ribbon:after{content:"";display:block;position:absolute}.rwctm-container .rwctm-member .rwctm-member-list .rwctm-ribbon:before{width:0;height:0;top:2px;left:4px;border-color:transparent rgba(0,0,0,0.3) transparent transparent;border-width:12px 24px 12px 0;border-style:inset}.rwctm-container .rwctm-member .rwctm-member-list .rwctm-ribbon:after{height:2px;-webkit-box-shadow:0 2px 0 0 rgb(0 0 0 / 30%);box-shadow:0 2px 0 0 rgb(0 0 0 / 30%);bottom:0;left:28px;right:8px}.rwctm-container .rwctm-member .rwctm-member-list .rwctm-ribbon a:before,.rwctm-container .rwctm-member .rwctm-member-list .rwctm-ribbon a:after{content:"";height:0;width:0;display:block;position:absolute}.rwctm-container .rwctm-member .rwctm-member-list .rwctm-ribbon a:before{top:0;left:-24px;border-color:transparent #fe0000 transparent transparent;border-width:12px 24px 12px 0;border-style:solid}.rwctm-container .rwctm-member .rwctm-member-list .rwctm-ribbon a:after{bottom:-8px;right:0;border-top:8px solid #4F0000;border-right:8px solid transparent}.rwctm-container .rwctm-member .rwctm-member-list .ribbon-container{position:absolute;top:95%;left:-1px;margin-right:1em;padding:6px 10px 6px 5px;-webkit-border-radius:0 .5em .5em 0;border-radius:0 .5em .5em 0;background-color:#cb0000;background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,0)),to(rgba(0,0,0,.1)));background-image:-webkit-linear-gradient(left,rgba(0,0,0,0) 0%,rgba(0,0,0,.1) 100%);background-image:-moz-linear-gradient(left,rgba(0,0,0,0) 0%,rgba(0,0,0,.1) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,0) 0%,rgba(0,0,0,.1) 100%);background-image:linear-gradient(to right,rgba(0,0,0,0) 0%,rgba(0,0,0,.1) 100%);-webkit-box-shadow:inset 0 .062em 0 rgba(255,255,255,.6),0 .125em .25em rgba(0,0,0,.2);box-shadow:inset 0 .062em 0 rgba(255,255,255,.6),0 .125em .25em rgba(0,0,0,.2);color:#fff;font-family:'Droid Sans',sans-serif;font-size:14px;font-weight:700;text-shadow:0 -.062em 0 rgba(0,0,0,.2);white-space:nowrap;-webkit-transform:translateY(-95%);-moz-transform:translateY(-95%);-ms-transform:translateY(-95%);-o-transform:translateY(-95%);transform:translateY(-95%);-webkit-transition:background-color .2s ease-in-out;-o-transition:background-color .2s ease-in-out;-moz-transition:background-color .2s ease-in-out;transition:background-color .2s ease-in-out;z-index:99}.rwctm-container .rwctm-member .rwctm-member-list .ribbon-container:nth-child(2){top:78%;-webkit-transform:translateY(-78%);-moz-transform:translateY(-78%);-ms-transform:translateY(-78%);-o-transform:translateY(-78%);transform:translateY(-78%)}.rwctm-container .rwctm-member .rwctm-member-list .ribbon-container:nth-child(3){top:61%;-webkit-transform:translateY(-61%);-moz-transform:translateY(-61%);-ms-transform:translateY(-61%);-o-transform:translateY(-61%);transform:translateY(-61%)}.rwctm-container .rwctm-member .rwctm-member-list .ribbon-container:before,.rwctm-container .rwctm-member .rwctm-member-list .ribbon-container:after{position:absolute;background-color:inherit;content:""}.rwctm-container .rwctm-member .rwctm-member-list .ribbon-container:before{bottom:0;left:-6px;width:7px;height:42px;-webkit-border-radius:0 0 0 .5em;border-radius:0 0 0 .5em;background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.2)),to(rgba(0,0,0,0)));background-image:-webkit-linear-gradient(left,rgba(0,0,0,.2) 0%,rgba(0,0,0,0) 100%);background-image:-moz-linear-gradient(left,rgba(0,0,0,.2) 0%,rgba(0,0,0,0) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.2) 0%,rgba(0,0,0,0) 100%);background-image:linear-gradient(to right,rgba(0,0,0,.2) 0%,rgba(0,0,0,0) 100%)}.rwctm-container .rwctm-member .rwctm-member-list .ribbon-container:after{top:-14px;left:-6px;width:7px;height:1em;-webkit-border-radius:.5em 0 0 .5em;border-radius:.5em 0 0 .5em;background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,0)),to(rgba(0,0,0,.2)));background-image:-webkit-linear-gradient(left,rgba(0,0,0,0) 0%,rgba(0,0,0,.2) 100%);background-image:-moz-linear-gradient(left,rgba(0,0,0,0) 0%,rgba(0,0,0,.2) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,0) 0%,rgba(0,0,0,.2) 100%);background-image:linear-gradient(to right,rgba(0,0,0,0) 0%,rgba(0,0,0,.2) 100%);-webkit-box-shadow:0 .062em 0 rgba(255,255,255,.6);box-shadow:0 .062em 0 rgba(255,255,255,.6)}.rwctm-container .rwctm-member .rwctm-member-list .ribbon-corner{position:absolute;left:-5px;top:-5px;z-index:2;overflow:hidden;width:120px;height:120px}.rwctm-container .rwctm-member .rwctm-member-list .ribbon-corner:nth-child(2){width:180px;height:180px}.rwctm-container .rwctm-member .rwctm-member-list .ribbon-corner:nth-child(3){width:239px;height:239px}.rwctm-container .rwctm-member .rwctm-member-list .ribbon-corner span{font-family:'Droid Sans',sans-serif;font-size:12px;font-weight:700;color:#FFF;letter-spacing:1px;text-align:center;line-height:30px;-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);transform:rotate(-45deg);width:140px;display:block;background:#79A70A;background:-moz-linear-gradient(#9BC90D 0%,#79A70A 100%);background:-webkit-linear-gradient(#9BC90D 0%,#79A70A 100%);background:-o-linear-gradient(#9BC90D 0%,#79A70A 100%);background:-ms-linear-gradient(#9BC90D 0%,#79A70A 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#9BC90D 0%',endColorstr='#79A70A 100%',GradientType=1);-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#9BC90D 0%',endColorstr='#79A70A 100%',GradientType=1);background:-webkit-gradient(linear,left top,left bottom,from(#9BC90D),to(#79A70A));background:linear-gradient(#9BC90D 0%,#79A70A 100%);position:absolute;top:25px;left:-30px}.rwctm-container .rwctm-member .rwctm-member-list .ribbon-corner:nth-child(2) span{width:200px;top:46px;left:-39px}.rwctm-container .rwctm-member .rwctm-member-list .ribbon-corner:nth-child(3) span{width:259px;top:67px;left:-48px}.rwctm-container .rwctm-member .rwctm-member-list .ribbon-corner span::before{content:"";position:absolute;left:0;top:100%;z-index:-1;border-left:3px solid #668b0b;border-right:3px solid transparent;border-bottom:3px solid transparent;border-top:3px solid #668b0b}.rwctm-container .rwctm-member .rwctm-member-list .ribbon-corner span::after{content:"";position:absolute;right:0;top:100%;z-index:-1;border-left:3px solid transparent;border-right:3px solid #668b0b;border-bottom:3px solid transparent;border-top:3px solid #668b0b}.rwctm-container .rwctm-member .rwctm-member-list .ribbon-banner{position:absolute;top:15px;right:-8px;overflow:visible;font-family:'Droid Sans',sans-serif;font-size:14px;font-weight:700;line-height:30px;z-index:9999}.rwctm-container .rwctm-member .rwctm-member-list .ribbon-banner:nth-child(2){top:48px}.rwctm-container .rwctm-member .rwctm-member-list .ribbon-banner:nth-child(3){top:81px}.rwctm-container .rwctm-member .rwctm-member-list .ribbon-banner:before{content:"";height:0;width:0;display:block;position:absolute;top:2px;left:12px;border-color:rgba(0,0,0,0.3) rgba(0,0,0,0.3) rgba(0,0,0,0.3) transparent;border-width:15px;border-style:solid}.rwctm-container .rwctm-member .rwctm-member-list .ribbon-banner:after{content:"";height:2px;background:rgba(0,0,0,0.3);display:block;position:absolute;bottom:-2px;left:42px;right:5px}.rwctm-container .rwctm-member .rwctm-member-list .ribbon-banner a{display:block;padding:0 20px;position:relative;background:#a00;overflow:visible;height:30px;margin-left:29px;color:#fff;text-decoration:none}.rwctm-container .rwctm-member .rwctm-member-list .ribbon-banner a:after{content:"";height:0;width:0;display:block;position:absolute;bottom:-8px;right:0;border-top:8px solid #4F0000;border-right:8px solid transparent}.rwctm-container .rwctm-member .rwctm-member-list .ribbon-banner a:before{content:"";height:0;width:0;display:block;position:absolute;top:0;left:-16px;border-color:#a00 transparent;border-width:15px;border-style:solid}.rwctm-container .rwctm-member .rwctm-member-list .corner-ribbon{position:absolute;right:0;top:0;overflow:hidden;white-space:nowrap;width:140px;height:80px;z-index:99}.rwctm-container .rwctm-member .rwctm-member-list .corner-ribbon:nth-child(2){width:200px;height:120px}.rwctm-container .rwctm-member .rwctm-member-list .corner-ribbon:nth-child(3){width:252px;height:150px}.rwctm-container .rwctm-member .rwctm-member-list .corner-ribbon a{font-family:'Droid Sans',sans-serif;font-size:14px;font-weight:700;color:#FFF;text-align:center;text-decoration:none;letter-spacing:1px;line-height:30px;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(30deg);width:225px;display:block;background:#a00;background:-moz-linear-gradient(#B64B4B 0%,#a00 100%);background:-webkit-linear-gradient(#B64B4B 0%,#a00 100%);background:-o-linear-gradient(#B64B4B 0%,#a00 100%);background:-ms-linear-gradient(#B64B4B 0%,#a00 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#B64B4B 0%',endColorstr='#a00 100%',GradientType=1);-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#B64B4B 0%',endColorstr='#a00 100%',GradientType=1);background:-webkit-gradient(linear,left top,left bottom,from(#B64B4B),to(#a00));background:linear-gradient(#B64B4B 0%,#a00 100%);border:1px solid #faa;position:absolute;top:15px;right:-65px}.rwctm-container .rwctm-member .rwctm-member-list .corner-ribbon:nth-child(2) a{width:300px;top:33px;right:-72px}.rwctm-container .rwctm-member .rwctm-member-list .corner-ribbon:nth-child(3) a{width:375px;top:52px;right:-84px}.rwctm-container .rwctm-member:after{content:'';border-top:0 solid #e6e6e6}.rwctm-container .rwctm-member .rwctm-member-list figure *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:all .35s ease;-o-transition:all .35s ease;-moz-transition:all .35s ease;transition:all .35s ease}.rwctm-container .rwctm-member .rwctm-member-list figure{position:relative;margin:0;padding:0;z-index:1}.rwctm-container .rwctm-member .rwctm-member-list .rwctm-img-details figure img{position:relative;margin:auto;max-width:100%;width:100%;height:auto;max-height:500px;vertical-align:middle;border-style:none;-webkit-transition:all .5s ease;-o-transition:all .5s ease;-moz-transition:all .5s ease;transition:all .5s ease}.rwctm-container .rwctm-member .rwctm-member-list .rwctm-img-details figure,.rwctm-container .rwctm-member .rwctm-member-list figure .rwctm-member-thumb{overflow:hidden}.rwctm-container .rwctm-member .rwctm-member-list figure .rwctm-member-thumb .social-thumb span a{font-size:24px;text-decoration:none}.rwctm-container .rwctm-member figure img.dummy-img{padding:10px}.rwctm-container .rwctm-member .rwctm-member-list figcaption{position:absolute;display:block;left:0;bottom:0;width:100%;padding:20px;background:rgba(2,116,190,0.8);color:#fff;text-align:center;font-size:0;z-index:1}.rwctm-container .rwctm-member .rwctm-member-list figcaption.hide-after::after{content:none}.rwctm-container .rwctm-member .rwctm-member-list .rwctm-member-info{display:inline-block;width:100%;vertical-align:middle;font-size:16px;position:relative;top:50%;-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);-ms-transform:translateY(-50%);-o-transform:translateY(-50%);transform:translateY(-50%)}.rwctm-container .rwctm-member .rwctm-member-list .rwctm-member-status,.rwctm-container .rwctm-member .rwctm-member-list .rwctm-member-bio{position:relative}.rwctm-container .rwctm-member .rwctm-member-list .rwctm-member-info h3{color:#fff;font-size:18px;margin:2px 0;padding:6px 0}.rwctm-container .rwctm-member .rwctm-member-list .rwctm-member-info .rwctm-short-bio p{line-height:18px;font-size:14px;margin:20px 0 0;color:#fff}.rwctm-container .rwctm-member .rwctm-member-list .rwctm-member-info .social-thumb>span>a{font-size:24px;margin:20px 0 0;padding:0 1px;display:inline-block;color:#000;text-decoration:none}.rwctm-container .rwctm-member .rwctm-member-list .rwctm-member-info .social-thumb>span>a:hover{color:#fff}.rwctm-container .rwctm-member .rwctm-member-list .rwctm-member-info .desig-thumb,.rwctm-container .rwctm-member .rwctm-member-list .rwctm-member-info .depart-thumb{display:block;margin:0;padding:0;line-height:17px;font-size:14px;font-weight:400;color:#f7f7f7}.rwctm-container .rwctm-content-scrollbar{position:relative;margin-right:20px}.rwctm-container .rwctm-content-scrollbar h2{font-size:36px;margin:0 0 10px;line-height:1.1;color:#000}.rwc-info-group .rwctm-modal-content .rwctm-content-scrollbar p,.rwc-info-group .rwctm-slider-content .rwctm-content-scrollbar p{margin:0 0 20px;padding:0;color:inherit;line-height:inherit;font-size:100%}.rwc-info-group .rwctm-modal-content .rwctm-content-scrollbar h4,.rwc-info-group .rwctm-slider-content .rwctm-content-scrollbar h4{color:#1e293b;margin:2rem 0 1rem;padding:0;font-size:1.5rem;line-height:1.2em;font-weight:600;clear:both}.rwc-info-group .rwctm-modal-content .rwctm-content-scrollbar ul,.rwc-info-group .rwctm-slider-content .rwctm-content-scrollbar ul{margin:0;padding:0;list-style:none;display:-ms-grid;display:grid;gap:10px;counter-reset:list;color:inherit}.rwc-info-group .rwctm-modal-content .rwctm-content-scrollbar li,.rwc-info-group .rwctm-slider-content .rwctm-content-scrollbar li{position:relative;margin:0 0 0 1.5rem;padding:0 0 0 5px;list-style-type:disc;color:inherit;line-height:inherit;font-size:100%}.rwc-info-group .rwctm-modal-content .rwctm-content-scrollbar li::marker,.rwc-info-group .rwctm-slider-content .rwctm-content-scrollbar li::marker{content:"\2605";font-size:1em;font-weight:600}.rwc-info-group .rwctm-modal-content .rwctm-content-scrollbar .rwctm-description,.rwc-info-group .rwctm-modal-content .rwctm-content-scrollbar .rwctm-qualification,.rwc-info-group .rwctm-modal-content .rwctm-content-scrollbar .rwctm-membership,.rwc-info-group .rwctm-modal-content .rwctm-content-scrollbar .rwctm-expertise,.rwc-info-group .rwctm-slider-content .rwctm-content-scrollbar .rwctm-description,.rwc-info-group .rwctm-slider-content .rwctm-content-scrollbar .rwctm-qualification,.rwc-info-group .rwctm-slider-content .rwctm-content-scrollbar .rwctm-membership,.rwc-info-group .rwctm-slider-content .rwctm-content-scrollbar .rwctm-expertise{color:#495057;font-size:14px}.rwc-info-group .rwctm-modal-content .rwctm-content-scrollbar .rwctm-tagline p,.rwc-info-group .rwctm-slider-content .rwctm-content-scrollbar .rwctm-tagline p{margin:-10px 0 5px}.rwc-info-group .rwctm-modal-content .rwctm-content-scrollbar .rwctm-department,.rwc-info-group .rwctm-modal-content .rwctm-content-scrollbar .rwctm-experience,.rwc-info-group .rwctm-slider-content .rwctm-content-scrollbar .rwctm-department,.rwc-info-group .rwctm-slider-content .rwctm-content-scrollbar .rwctm-experience{margin:0 0 5px;padding:0;font-size:14px;display:inline-block;border-bottom:1px solid #a5a5a5;border-bottom-style:dotted;line-height:normal}.rwctm-container .rwctm-contact-details>p{font-size:16px;padding:10px 0;margin:0!important;line-height:normal;border-bottom:1px dashed rgba(35,35,35,.2)}.rwctm-container .rwctm-contact-details>p>a{color:#495057;text-decoration:none;position:relative}.rwctm-container .rwctm-contact-details>p>a span{border:1px solid #6782A4;margin:0 0 0 5px;padding:1px 3px 1px 1px;-webkit-box-shadow:inset 0 0 3px 1px #6782A4;box-shadow:inset 0 0 3px 1px #6782A4;color:#ffffff;background:#7FA3C4;font-size:12px;-webkit-border-radius:5px;border-radius:5px;display:inline}.rwctm-container .rwctm-social-icons span > a{color:#495057;font-size:30px;margin:20px 3px 0 0;display:inline-flex;border:1px dashed rgba(35,35,35,.2);padding:5px 7px;line-height:24px;text-decoration:none}.rwctm-container .rwctm-social-icons span > a:hover{color:#000}.rwctm-container .rwctm-active-item figure{background:#ccc}.rwctm-container .rwctm-active-item figure::before{content:"";position:absolute;z-index:2;left:0;top:0;bottom:0;right:0;border:20px solid #111;opacity:0;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden;-webkit-transition:opacity 1.3s;-moz-transition:opacity 1.3s;-o-transition:opacity 1.3s;transition:opacity 1.3s}.rwctm-container .rwctm-member:hover{cursor:pointer}.rwctm-slide-up{max-height:0;overflow:hidden;-webkit-transition:max-height 400ms ease-out;-o-transition:max-height 400ms ease-out;-moz-transition:max-height 400ms ease-out;transition:max-height 400ms ease-out}@keyframes jumpInfinite{0%{margin-top:0}50%{margin-top:15px}100%{margin-top:0}}.rwctm-modal-blocker{position:fixed;top:0;right:0;bottom:0;left:0;width:100%;height:100%;overflow:auto;z-index:99;padding:20px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;background-color:rgb(0,0,0);background-color:rgba(0,0,0,0.75);text-align:center}.rwctm-modal-blocker:before{content:"";display:inline-block;height:100%;vertical-align:middle;margin-right:-.05em}.rwctm-modal-blocker.behind{background-color:transparent}.rwc-info-group .rwctm-modal-content,.rwc-info-group .rwctm-slider-content{overflow:hidden;width:100%;height:100%;background:#fff;padding:30px}.rwc-info-group .rwctm-fullimg{float:left;padding:20px;max-width:300px}.rwc-info-group .rwctm-modal-content .rwctm-contact-info,.rwc-info-group .rwctm-slider-content .rwctm-contact-info{display:block;margin:0;padding:20px 0 0}.rwc-info-group .rwctm-modal-content .rwctm-contact-info.rwctm-media-screen,.rwc-info-group .rwctm-slider-content .rwctm-contact-info.rwctm-media-screen{display:none}.rwctm-container a.close-modal{position:absolute;top:15px;right:15px;display:block;width:30px;height:30px;text-indent:-9999px;-webkit-background-size:contain;-o-background-size:contain;background-size:contain;background-repeat:no-repeat;background-position:center center;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAAXNSR0IArs4c6QAAA3hJREFUaAXlm8+K00Acx7MiCIJH/yw+gA9g25O49SL4AO3Bp1jw5NvktC+wF88qevK4BU97EmzxUBCEolK/n5gp3W6TTJPfpNPNF37MNsl85/vN/DaTmU6PknC4K+pniqeKJ3k8UnkvDxXJzzy+q/yaxxeVHxW/FNHjgRSeKt4rFoplzaAuHHDBGR2eS9G54reirsmienDCTRt7xwsp+KAoEmt9nLaGitZxrBbPFNaGfPloGw2t4JVamSt8xYW6Dg1oCYo3Yv+rCGViV160oMkcd8SYKnYV1Nb1aEOjCe6L5ZOiLfF120EjWhuBu3YIZt1NQmujnk5F4MgOpURzLfAwOBSTmzp3fpDxuI/pabxpqOoz2r2HLAb0GMbZKlNV5/Hg9XJypguryA7lPF5KMdTZQzHjqxNPhWhzIuAruOl1eNqKEx1tSh5rfbxdw7mOxCq4qS68ZTjKS1YVvilu559vWvFHhh4rZrdyZ69Vmpgdj8fJbDZLJpNJ0uv1cnr/gjrUhQMuI+ANjyuwftQ0bbL6Erp0mM/ny8Fg4M3LtdRxgMtKl3jwmIHVxYXChFy94/Rmpa/pTbNUhstKV+4Rr8lLQ9KlUvJKLyG8yvQ2s9SBy1Jb7jV5a0yapfF6apaZLjLLcWtd4sNrmJUMHyM+1xibTjH82Zh01TNlhsrOhdKTe00uAzZQmN6+KW+sDa/JD2PSVQ873m29yf+1Q9VDzfEYlHi1G5LKBBWZbtEsHbFwb1oYDwr1ZiF/2bnCSg1OBE/pfr9/bWx26UxJL3ONPISOLKUvQza0LZUxSKyjpdTGa/vDEr25rddbMM0Q3O6Lx3rqFvU+x6UrRKQY7tyrZecmD9FODy8uLizTmilwNj0kraNcAJhOp5aGVwsAGD5VmJBrWWbJSgWT9zrzWepQF47RaGSiKfeGx6Szi3gzmX/HHbihwBser4B9UJYpFBNX4R6vTn3VQnez0SymnrHQMsRYGTr1dSk34ljRqS/EMd2pLQ8YBp3a1PLfcqCpo8gtHkZFHKkTX6fs3MY0blKnth66rKCnU0VRGu37ONrQaA4eZDFtWAu2fXj9zjFkxTBOo8F7t926gTp/83Kyzzcy2kZD6xiqxTYnHLRFm3vHiRSwNSjkz3hoIzo8lCKWUlg/YtGs7tObunDAZfpDLbfEI15zsEIY3U/x/gHHc/G1zltnAgAAAABJRU5ErkJggg==);z-index:9}.rwc-info-group .rwctm-modal-body{position:relative;width:auto;height:100%;overflow:hidden;padding:5px;text-align:left}.rwctm-container .rwctm-modal-body .rwctm-content-scrollbar{margin:0}.modal-spinner{display:none;position:fixed;top:50%;left:50%;padding:12px 16px;-webkit-border-radius:5px;border-radius:5px;background-color:#111;height:20px;-webkit-transform:translateY(-50%) translateX(-50%);-moz-transform:translateY(-50%) translateX(-50%);-ms-transform:translateY(-50%) translateX(-50%);-o-transform:translateY(-50%) translateX(-50%);transform:translateY(-50%) translateX(-50%)}@-webkit-keyframes sk-stretchdelay{0%,40%,100%{-webkit-transform:scaleY(0.5)}20%{-webkit-transform:scaleY(1.0)}}@-moz-keyframes sk-stretchdelay{0%,40%,100%{-moz-transform:scaleY(0.5);transform:scaleY(0.5);-webkit-transform:scaleY(0.5)}20%{-moz-transform:scaleY(1.0);transform:scaleY(1.0);-webkit-transform:scaleY(1.0)}}@-o-keyframes sk-stretchdelay{0%,40%,100%{-o-transform:scaleY(0.5);transform:scaleY(0.5);-webkit-transform:scaleY(0.5)}20%{-o-transform:scaleY(1.0);transform:scaleY(1.0);-webkit-transform:scaleY(1.0)}}@keyframes sk-stretchdelay{0%,40%,100%{-moz-transform:scaleY(0.5);-o-transform:scaleY(0.5);transform:scaleY(0.5);-webkit-transform:scaleY(0.5)}20%{-moz-transform:scaleY(1.0);-o-transform:scaleY(1.0);transform:scaleY(1.0);-webkit-transform:scaleY(1.0)}}.rwctm-modal-corner .rwctm-overlay{background-color:#000;right:100%;top:0;position:fixed;z-index:101;height:100%;opacity:0;width:100%;visibility:hidden;-webkit-transition:all .4s ease-in .8s;-o-transition:all .4s ease-in .8s;-moz-transition:all .4s ease-in .8s;transition:all .4s ease-in .8s;cursor:pointer}.rwctm-modal-corner.isActive .rwctm-overlay{opacity:.9;visibility:visible;-webkit-transition:all .8s ease-out 0;-o-transition:all .8s ease-out 0;-moz-transition:all .8s ease-out 0;transition:all .8s ease-out 0;right:0}.rwctm-modal-corner .rwctm-modal-content,.rwctm-slider-for .rwctm-slider-content{position:fixed;left:-100%;top:0;bottom:0;width:100%;max-width:500px;z-index:999999;overflow:hidden;overflow-y:auto;-webkit-overflow-scrolling:touch;background-color:#fff;-webkit-transition:all .5s cubic-bezier(0.9,0.03,0,0.96) .6s;-o-transition:all .5s cubic-bezier(0.9,0.03,0,0.96) .6s;-moz-transition:all .5s cubic-bezier(0.9,0.03,0,0.96) .6s;transition:all .5s cubic-bezier(0.9,0.03,0,0.96) .6s;visibility:hidden;opacity:0}.rwctm-modal-corner.isActive .rwctm-modal-content,.rwctm-modal-corner.isActive .rwctm-slider-content{opacity:1;visibility:visible;left:0;-webkit-transition:all .7s cubic-bezier(0.9,0.03,0,0.96) .4s;-o-transition:all .7s cubic-bezier(0.9,0.03,0,0.96) .4s;-moz-transition:all .7s cubic-bezier(0.9,0.03,0,0.96) .4s;transition:all .7s cubic-bezier(0.9,0.03,0,0.96) .4s}.rwctm-modal-corner .rwctm-modal-content::-webkit-scrollbar,.rwctm-modal-corner .rwctm-slider-content::-webkit-scrollbar{width:0;height:0;visibility:hidden}.rwctm-modal-corner .rwctm-widget-container{position:relative;top:150px;opacity:0;visibility:hidden;-webkit-transition:all .3s ease-in .3s;-o-transition:all .3s ease-in .3s;-moz-transition:all .3s ease-in .3s;transition:all .3s ease-in .3s;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden}.rwctm-modal-corner .rwctm-modal-action{position:fixed;left:0;top:0;width:500px;height:57px;background:rgb(255 255 255 / 60%);border-bottom:1px solid #fff;z-index:1}.rwctm-modal-corner .close-modal.close-side-widget{left:10px;top:13px}.rwctm-modal-corner .rwctm-member-widget{padding:30px 0}.rwctm-modal-corner.rwc-info-group .rwctm-fullimg{max-width:500px}.rwctm-modal-corner.rwc-info-group .rwctm-modal-body{padding:12px 24px;width:100%}.rwctm-modal-corner.isActive .rwctm-widget-container{top:0;opacity:1;visibility:visible;-webkit-transition:all 1s ease-out 1.2s;-o-transition:all 1s ease-out 1.2s;-moz-transition:all 1s ease-out 1.2s;transition:all 1s ease-out 1.2s;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden}.rwc-info-group .rwctm-modal-content .rwctm-content-scrollbar .rwctm-contact-info p,.rwc-info-group .rwctm-slider-content .rwctm-content-scrollbar .rwctm-contact-info p{padding:10px 0}.rwctm-modal-body .mCSB_draggerContainer{background:#e7e7e7;width:4px;border-radius:10px}.rwctm-modal-body .mCSB_draggerRail{opacity:0}.rwctm-container .rwctm-row.rwctm-slider-container .rwctm-list{padding-top:2px!important}.rwctm-container .rwctm-slider-container .rwctm-arrow{top:unset;left:unset;transform:none;right:0}.rwctm-container .rwctm-slider-container .rwctm-prev{top:-24px;right:34px}.rwctm-container .rwctm-slider-container .rwctm-next{top:-24px;right:5px}@media only screen and (max-width:992px){.rwctm-container .rwctm-member{width:50%}.rwctm-container .rwctm-member .rwctm-member-list .rwctm-img-details figure img{width:100%}.rwctm-container h2.rwctm_tm_name{font-size:42px}.rwctm-container .rwctm-team-filter-wrap .rwctm-filter-btn,.rwctm-container .rwctm-member .rwctm-member-list .rwctm-member-info h3.name-thumb,.rwctm-container .rwctm-member .rwctm-member-list .rwctm-member-info .depart-thumb,.rwctm-container .rwctm-member .rwctm-member-list .rwctm-member-info .rwctm-short-bio p{font-size:14px}.rwctm-container .rwctm-member .rwctm-member-list .rwctm-member-info .desig-thumb{font-size:15px}.rwctm-container .rwctm-member .rwctm-member-list .rwctm-img-details .social-thumb>span>a{font-size:20px}.rwctm-container .rwctm-contact-details>p{padding:5px 0}}@media only screen and (max-width:678px){.rwctm-container a.close-modal{width:24px;top:36px;right:25px}}@media only screen and (max-width:480px){.rwctm-container h2.rwctm_tm_name{font-size:36px}.rwctm-container .rwctm-team-filter-wrap .rwctm-filter-btn{font-size:12px;margin:0 2px 8px;padding:5px 15px}.rwctm-container .rwctm-member .rwctm-member-list .rwctm-member-info h3.name-thumb{font-size:18px}.rwctm-container .rwctm-member .rwctm-member-list .rwctm-member-info .depart-thumb{font-size:16px}.rwctm-container .rwctm-member .rwctm-member-list .rwctm-member-info .desig-thumb{font-size:16px}.rwctm-container .rwctm-member .rwctm-member-list .rwctm-member-info .rwctm-short-bio p{font-size:15px}.rwctm-container .rwctm-member .rwctm-member-list .rwctm-img-details .social-thumb>span>a{font-size:24px}.rwctm-container .rwctm-modal-corner .rwctm-modal-content,.rwctm-container .rwctm-modal-corner .rwctm-slider-content{padding:0}.rwctm-container .rwctm-modal-corner .rwctm-modal-content .rwctm-modal-action,.rwctm-container .rwctm-modal-corner .rwctm-slider-content .rwctm-modal-action{width:100%}.rwctm-container .rwctm-modal-corner .rwctm-modal-content .rwctm-member-widget,.rwctm-container .rwctm-modal-corner .rwctm-slider-content .rwctm-member-widget{padding:60px 0}.rwctm-container .rwctm-modal-corner .rwctm-modal-content .rwctm-member-widget .rwctm-fullimg,.rwctm-container .rwctm-modal-corner .rwctm-slider-content .rwctm-member-widget .rwctm-fullimg{padding:0 30px 0 24px}.rwctm-container .rwctm-modal-corner .rwctm-modal-content .rwctm-member-widget .rwctm-modal-body,.rwctm-container .rwctm-modal-corner .rwctm-slider-content .rwctm-member-widget .rwctm-modal-body{padding:12px 30px 12px 24px}}
  • rwc-team-members/trunk/assets/css/selectize.css

    r3050730 r3061831  
    1717 * @author Brian Reavis <brian@thirdroute.com>
    1818 * @author Ris Adams <selectize@risadams.com>
    19  * @package RWC Team Members - v0.1 - 14 March, 2024
     19 * @package RWC Team Members - v0., 2024
    2020 */
    2121.selectize-control.plugin-drag_drop.multi>.selectize-input.dragging {
  • rwc-team-members/trunk/assets/css/selectize.min.css

    r3050730 r3061831  
    1717 * @author Brian Reavis <brian@thirdroute.com>
    1818 * @author Ris Adams <selectize@risadams.com>
    19  * @package RWC Team Members - v0.1 - 14 March, 2024
     19 * @package RWC Team Members - v0., 2024
    2020 */
    2121 .selectize-control.plugin-drag_drop.multi>.selectize-input.dragging{overflow:visible}.selectize-control.plugin-drag_drop.multi>.selectize-input>div.ui-sortable-placeholder{visibility:visible !important;background:#f2f2f2 !important;background:rgba(0,0,0,0.06) !important;border:0 none !important;box-shadow:inset 0 0 12px 4px #fff}.selectize-control.plugin-drag_drop .ui-sortable-placeholder::after{content:"!";visibility:hidden}.selectize-control.plugin-drag_drop .ui-sortable-helper{box-shadow:0 2px 5px rgba(0,0,0,0.2)}.selectize-dropdown.plugin-dropdown_header .selectize-dropdown-header{position:relative;padding:10px 8px;border-bottom:1px solid #d0d0d0;background:#f8f8f8;border-radius:3px 3px 0 0}.selectize-dropdown.plugin-dropdown_header .selectize-dropdown-header-close{position:absolute;right:8px;top:50%;color:#303030;opacity:.4;margin-top:-12px;line-height:20px;font-size:20px !important;text-decoration:none}.selectize-dropdown.plugin-dropdown_header .selectize-dropdown-header-close:hover{color:black}.selectize-dropdown.plugin-optgroup_columns .selectize-dropdown-content{display:flex}.selectize-dropdown.plugin-optgroup_columns .optgroup{border-right:1px solid #f2f2f2;border-top:0 none;flex-grow:1;flex-basis:0;min-width:0}.selectize-dropdown.plugin-optgroup_columns .optgroup:last-child{border-right:0 none}.selectize-dropdown.plugin-optgroup_columns .optgroup:before{display:none}.selectize-dropdown.plugin-optgroup_columns .optgroup-header{border-top:0 none}.selectize-control.plugin-remove_button .item{display:inline-flex;align-items:center;padding-right:0 !important}.selectize-control.plugin-remove_button .item .remove{color:inherit;text-decoration:none;vertical-align:middle;display:inline-block;padding:2px 6px;border-left:1px solid #0073bb;border-radius:0 2px 2px 0;box-sizing:border-box;margin-left:6px}.selectize-control.plugin-remove_button .item .remove:hover{background:rgba(0,0,0,0.05)}.selectize-control.plugin-remove_button .item.active .remove{border-left-color:#00578d}.selectize-control.plugin-remove_button .disabled .item .remove:hover{background:0}.selectize-control.plugin-remove_button .disabled .item .remove{border-left-color:#aaa}.selectize-control.plugin-clear_button .clear{text-decoration:none;display:flex;position:absolute;height:100%;width:25px;top:0;right:calc(8px - 6px);color:#000;opacity:.4;font-weight:bold;border:0;cursor:pointer;z-index:1;font-size:21px;justify-content:center;align-items:center}.selectize-control.plugin-clear_button .clear:hover{opacity:1}.selectize-control.plugin-clear_button.single .clear{right:calc(8px - 6px + 1.5rem)}.selectize-dropdown.plugin-auto_position.selectize-position-top{border-top:1px solid #d0d0d0;border-bottom:0 none;border-radius:3px 3px 0 0;box-shadow:0 -6px 12px rgba(0,0,0,0.18)}.selectize-control.plugin-auto_position .selectize-input.selectize-position-top.dropdown-active{border-radius:0 0 3px 3px;border-top:0 none}.selectize-control.plugin-auto_position .selectize-input.selectize-position-top.dropdown-active::before{top:0;bottom:unset}.selectize-control{position:relative}.selectize-dropdown,.selectize-input,.selectize-input input{color:#303030;font-family:inherit;font-size:13px;line-height:18px}.selectize-input,.selectize-control.single .selectize-input.input-active{background:#fff;cursor:text;display:inline-block}.selectize-input{border:1px solid #d0d0d0;padding:8px 8px;display:inline-block;width:100%;position:relative;z-index:1;box-sizing:border-box;box-shadow:inset 0 1px 1px rgba(0,0,0,0.1);border-radius:3px}.selectize-control.multi .selectize-input.has-items{padding:calc(8px - 2px - 1px) 8px calc(8px - 2px - 3px - 1px)}.selectize-input.full{background-color:#fff}.selectize-input.disabled,.selectize-input.disabled *{cursor:default !important}.selectize-input.focus{box-shadow:inset 0 1px 2px rgba(0,0,0,0.15)}.selectize-input.dropdown-active{border-radius:3px 3px 0 0}.selectize-input>*{vertical-align:baseline;display:inline-block;zoom:1}.selectize-control.multi .selectize-input>div{cursor:pointer;margin:0 3px 3px 0;padding:2px 6px;background:#1da7ee;color:#fff;border:1px solid #0073bb}.selectize-control.multi .selectize-input>div.active{background:#92c836;color:#fff;border:1px solid #00578d}.selectize-control.multi .selectize-input.disabled>div,.selectize-control.multi .selectize-input.disabled>div.active{color:white;background:#d2d2d2;border:1px solid #aaa}.selectize-input>input{display:inline-block !important;padding:0 !important;min-height:0 !important;max-height:none !important;max-width:100% !important;margin:0 !important;text-indent:0 !important;border:0 none !important;background:none !important;line-height:inherit !important;user-select:auto !important;box-shadow:none !important}.selectize-input>input::-ms-clear{display:none}.selectize-input>input:focus{outline:none !important}.selectize-input>input[placeholder]{box-sizing:initial}.selectize-input.has-items>input{margin:0 0 !important}.selectize-input::after{content:" ";display:block;clear:left}.selectize-input.dropdown-active::before{content:" ";display:block;position:absolute;background:#f0f0f0;height:1px;bottom:0;left:0;right:0}.selectize-dropdown{position:absolute;top:100%;left:0;width:100%;z-index:10;border:1px solid #d0d0d0;background:#fff;margin:-1px 0 0 0;border-top:0 none;box-sizing:border-box;box-shadow:0 1px 3px rgba(0,0,0,0.1);border-radius:0 0 3px 3px}.selectize-dropdown [data-selectable]{cursor:pointer;overflow:hidden}.selectize-dropdown [data-selectable] .highlight{background:rgba(125,168,208,0.2);border-radius:1px}.selectize-dropdown .option,.selectize-dropdown .optgroup-header,.selectize-dropdown .no-results,.selectize-dropdown .create{padding:5px 8px}.selectize-dropdown .option,.selectize-dropdown [data-disabled],.selectize-dropdown [data-disabled] [data-selectable].option{cursor:inherit;opacity:.5}.selectize-dropdown [data-selectable].option{opacity:1;cursor:pointer}.selectize-dropdown .optgroup:first-child .optgroup-header{border-top:0 none}.selectize-dropdown .optgroup-header{color:#303030;background:#fff;cursor:default}.selectize-dropdown .active{background-color:#92c836;color:#fff}.selectize-dropdown .active.create{color:#495c68}.selectize-dropdown .selected{background-color:#92c836;color:#fff}.selectize-dropdown .create{color:rgba(48,48,48,0.5)}.selectize-dropdown .active:not(.selected){background:#f5fafd;color:#495c68}.selectize-dropdown-content{overflow-y:auto;overflow-x:hidden;max-height:200px}.selectize-dropdown-emptyoptionlabel{text-align:center}.selectize-dropdown .spinner{display:inline-block;width:30px;height:30px;margin:5px 8px}.selectize-dropdown .spinner:after{content:" ";display:block;width:24px;height:24px;margin:3px;border-radius:50%;border:5px solid #d0d0d0;border-color:#d0d0d0 transparent #d0d0d0 transparent;animation:lds-dual-ring 1.2s linear infinite}@keyframes lds-dual-ring{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}.selectize-control.single .selectize-input,.selectize-control.single .selectize-input input{cursor:pointer}.selectize-control.single .selectize-input.input-active,.selectize-control.single .selectize-input.input-active input:not(:read-only){cursor:text}.selectize-control.single .selectize-input:not(.no-arrow):after{content:" ";display:block;position:absolute;top:50%;right:15px;margin-top:-3px;width:0;height:0;border-style:solid;border-width:5px 5px 0 5px;border-color:#808080 transparent transparent transparent}.selectize-control.single .selectize-input:not(.no-arrow).dropdown-active:after{margin-top:-4px;border-width:0 5px 5px 5px;border-color:transparent transparent #808080 transparent}.selectize-control.rtl{text-align:right}.selectize-control.rtl.single .selectize-input:after{left:15px;right:auto}.selectize-control.rtl .selectize-input>input{margin:0 4px 0 -2px !important}.selectize-control .selectize-input.disabled{opacity:.5;background-color:#fafafa}.selectize-control.multi .selectize-input.has-items{padding-left:5px;padding-right:5px}.selectize-control.multi .selectize-input.disabled [data-value]{color:#999;text-shadow:none;background:0;box-shadow:none}.selectize-control.multi .selectize-input.disabled [data-value],.selectize-control.multi .selectize-input.disabled [data-value] .remove{border-color:#e6e6e6}.selectize-control.multi .selectize-input.disabled [data-value] .remove{background:0}.selectize-control.multi .selectize-input [data-value]{text-shadow:0 1px 0 rgba(0,51,83,0.3);border-radius:3px;background-color:#1b9dec;background-image:linear-gradient(to bottom,#1da7ee,#178ee9);background-repeat:repeat-x;box-shadow:0 1px 0 rgba(0,0,0,0.2),inset 0 1px rgba(255,255,255,0.03)}.selectize-control.multi .selectize-input [data-value].active{background-color:#0085d4;background-image:linear-gradient(to bottom,#008fd8,#0075cf);background-repeat:repeat-x}.selectize-control.single .selectize-input{box-shadow:0 1px 0 rgba(0,0,0,0.05),inset 0 1px 0 rgba(255,255,255,0.8);background-color:#f9f9f9;background-image:linear-gradient(to bottom,#fefefe,#f2f2f2);background-repeat:repeat-x}.selectize-control.single .selectize-input,.selectize-dropdown.single{border-color:#b8b8b8}.selectize-dropdown .optgroup-header{padding-top:7px;font-weight:bold;font-size:.85em}.selectize-dropdown .optgroup{border-top:1px solid #f0f0f0}.selectize-dropdown .optgroup:first-child{border-top:0 none}.selectize-dropdown.plugin-auto_position.selectize-position-top{border-top:1px solid #d0d0d0;border-bottom:0 none;border-radius:3px 3px 0 0;box-shadow:0 -6px 12px rgba(0,0,0,0.18)}.selectize-control.plugin-auto_position .selectize-input.selectize-position-top.dropdown-active{border-radius:0 0 3px 3px;border-top:0 none}.selectize-control.plugin-auto_position .selectize-input.selectize-position-top.dropdown-active::before{top:0;bottom:unset}.selectize-control.plugin-clear_button .clear{text-decoration:none;display:flex;position:absolute;height:100%;width:25px;top:0;right:calc(8px - 6px);color:#000;opacity:.4;font-weight:bold;border:0;cursor:pointer;z-index:1;font-size:21px;justify-content:center;align-items:center}.selectize-control.plugin-clear_button .clear:hover{opacity:1}.selectize-control.plugin-clear_button.single .clear{right:calc(8px - 6px + 1.5rem)}.selectize-control.plugin-drag_drop.multi>.selectize-input.dragging{overflow:visible}.selectize-control.plugin-drag_drop.multi>.selectize-input>div.ui-sortable-placeholder{visibility:visible !important;background:#f2f2f2 !important;background:rgba(0,0,0,0.06) !important;border:0 none !important;box-shadow:inset 0 0 12px 4px #fff}.selectize-control.plugin-drag_drop .ui-sortable-placeholder::after{content:"!";visibility:hidden}.selectize-control.plugin-drag_drop .ui-sortable-helper{box-shadow:0 2px 5px rgba(0,0,0,0.2)}.selectize-dropdown.plugin-dropdown_header .selectize-dropdown-header{position:relative;padding:10px 8px;border-bottom:1px solid #d0d0d0;background:#f8f8f8;border-radius:3px 3px 0 0}.selectize-dropdown.plugin-dropdown_header .selectize-dropdown-header-close{position:absolute;right:8px;top:50%;color:#303030;opacity:.4;margin-top:-12px;line-height:20px;font-size:20px !important;text-decoration:none}.selectize-dropdown.plugin-dropdown_header .selectize-dropdown-header-close:hover{color:black}.selectize-dropdown.plugin-optgroup_columns .selectize-dropdown-content{display:flex}.selectize-dropdown.plugin-optgroup_columns .optgroup{border-right:1px solid #f2f2f2;border-top:0 none;flex-grow:1;flex-basis:0;min-width:0}.selectize-dropdown.plugin-optgroup_columns .optgroup:last-child{border-right:0 none}.selectize-dropdown.plugin-optgroup_columns .optgroup:before{display:none}.selectize-dropdown.plugin-optgroup_columns .optgroup-header{border-top:0 none}.selectize-control.plugin-remove_button .item{display:inline-flex;align-items:center;padding-right:0 !important}.selectize-control.plugin-remove_button .item .remove{color:inherit;text-decoration:none;vertical-align:middle;display:inline-block;padding:2px 6px;border-left:1px solid #0073bb;border-radius:0 2px 2px 0;box-sizing:border-box;margin-left:6px}.selectize-control.plugin-remove_button .item .remove:hover{background:rgba(0,0,0,0.05)}.selectize-control.plugin-remove_button .item.active .remove{border-left-color:#00578d}.selectize-control.plugin-remove_button .disabled .item .remove:hover{background:0}.selectize-control.plugin-remove_button .disabled .item .remove{border-left-color:#aaa}
  • rwc-team-members/trunk/assets/js/rwctm-admin.js

    r3050730 r3061831  
    77 * and dynamic behavior for administrators.
    88 *
    9  * @package RWC Team Members - v0.1 - 14 March, 2024
     9 * @package RWC Team Members - v0., 2024
    1010 */
    1111jQuery(document).ready(function($) {
     
    794794                    var activityName = $('#activity_edititem');
    795795                    $('body').on('click', '#editactivity', function() {
    796                         $('<tr class="activitybody"><td><span>Name:</span><input type="text" name="activity_name[]" placeholder="Enter Activity Name" size="15" required /></td><td><span>https://</span><input type="text" name="activity_link[]" value="" placeholder="Enter Activity URL" size="25" /></td><td><input type="text" name="awesome_icon[]" value="" placeholder="Enter Icon Class" size="15" /><span>Icon</span></td><td><select name="activity_type[]" id="activity_type"><option value="sector" selected="selected">Sector</option><option value="status">Status</option><option value="social">Social</option><option value="skill">Skill</option></select></td><td><span id="remActivity"></span></td></tr>').appendTo(activityName);
     796                        $('<tr class="activitybody"><td><span>Name:</span><input type="text" name="activity_name[]" placeholder="Enter Activity Name" size="15" required /></td><td><span>https://</span><input type="text" name="activity_link[]" value="" placeholder="Enter Activity URL" size="25" /></td><td><input type="text" name="awesome_icon[]" value="" placeholder="Enter Icon Class" size="15" /><span>Icon</span></td><td><select name="activity_type[]" id="activity_type"><option value="sector" selected="selected">Sector</option><option value="status">Status</option><option value="social">Social</option></select></td><td><span id="remActivity"></span></td></tr>').appendTo(activityName);
    797797                        return false;
    798798                    });
  • rwc-team-members/trunk/assets/js/rwctm-admin.min.js

    r3050730 r3061831  
    77 * and dynamic behavior for administrators.
    88 *
    9  * @package RWC Team Members - v0.1 - 14 March, 2024
     9 * @package RWC Team Members - v0., 2024
    1010 */
    11 function copyShortcode(a){"use strict";var a,b=document.getElementById("rwctmInput-"+a);b.select(),document.execCommand("copy");var c=document.getElementById("rwctmTooltip-"+a);c.innerHTML="Copied!"}function outFunc(){"use strict";var a,b=document.getElementById("rwctmTooltip-"+a);b.innerHTML="Click to Copy Shortcode!"}jQuery(document).ready(function(a){"use strict";a(".team_name span").css("display","none"),a(".team_name").mouseover(function(){var b=a(this).attr("id");a("td#"+b+" span").css("display","inline-block")}),a(".team_name").mouseout(function(){var b=a(this).attr("id");a("td#"+b+" span").css("display","none")}),a("#rwctm-tabs").tabs(),a("#rwctm-tabs").css("visibility","visible"),a("#default_font").is(":checked")?a("#user_choice_font").css("display","none"):a("#user_choice_font").css("display","inline-block"),a("#default_font").click(function(){var b=a(this).is(":checked");b?a("#user_choice_font").slideUp("slow"):a("#user_choice_font").slideDown("slow")}),a(function(){if(a("#rwctm-fancy-textarea").length){var b=wp.codeEditor.defaultSettings?_.clone(wp.codeEditor.defaultSettings):{};b.codemirror=_.extend({},b.codemirror,{autoRefresh:!0,mode:"css"});var c=wp.codeEditor.initialize(a("#rwctm-fancy-textarea"),b);setTimeout(function(){c.codeMirrorInstance.refresh()},1)}}),a("#wp_post_editor").is(":checked")?a("#htmleditor").css("display","block"):a("#htmleditor").css("display","none"),a("#wp_post_editor").click(function(){var b=a(this).is(":checked");b?a("#htmleditor").slideDown("slow"):a("#htmleditor").slideUp("slow")}),a(".activate_team").on("click",function(){a.rwctmactivatetemp()}),a(".rwctm_remove").on("click",function(){a.rwctmdeleteteam()}),a(".rwctm_template").on("change",function(){a.rwctmtemplate()}),a(".duplicate_team").on("click",function(){a.rwctmcopyteams()}),a(".regen_shortcode").on("click",function(){a.rwctmregenshortcode()}),a(".rwctm_activity").on("click",function(){a.rwctmeditactivity()}),a(".view_team").on("click",function(){a.rwctmviewteam()}),a(".process_team").on("click",function(){a.rwctmsetupmember()}),a(".demo_link").on("click",function(b){b.preventDefault();var c=a(this).attr("href");if(c){var d='<div id="rwctm-modal-container">';d+='<div id="rwctm-modal-content">',d+='<img src="'+c+'" alt="Demo Image">',d+="</div>",d+="</div>",a("body").append(d),a("#rwctm-modal-container").fadeIn("slow"),a("#rwctm-modal-container").on("click",function(){a(this).fadeOut("slow",function(){a(this).remove()})})}})}),function(a){"use strict";a.rwctmactivatetemp=function(){var b;a("body").on("click",".activate_team",function(){b=a(this).attr("data-count"),a.ajax({type:"POST",url:rwctmajax.ajaxurl,data:{action:"rwctm_activate_template",tempcount:b,nonce:rwctmajax.nonce},beforeSend:function(){a("#rwctm-loading-image").css("display","inline-block")},success:function(){alert("Successfully Activated!"),window.location.reload()},complete:function(){a("#rwctm-loading-image").hide()},error:function(a,b,c){alert(c)}})})},a.rwctmdeleteteam=function(b){var c;a("body").on("click",".rwctm_remove",function(){c=a(this).attr("data-id");var d=confirm("Are you sure you want to delete?");d===!0?(a.ajax({type:"POST",url:rwctmajax.ajaxurl,data:{action:"rwctm_delete_selected_team",teamname:c,nonce:rwctmajax.nonce},beforeSend:function(){a("#rwctm-loading-image").css("display","inline-block")},success:function(b){var f="#rwctm_"+c;a(f).remove(),a(f).append(b),window.location.reload()},complete:function(){a("#rwctm-loading-image").hide()},error:function(a,b,c){alert(c)}}),b.preventDefault()):window.location.reload()})},a.rwctmtemplate=function(){var b;a("body").on("click",".rwctm_template",function(){b=a(this).attr("data-id");var c=confirm("Are you sure you want to setup this template?");c===!0?a.ajax({type:"POST",url:rwctmajax.ajaxurl,data:{action:"rwctm_setup_selected_template",teamname:b,template:this.value,nonce:rwctmajax.nonce},beforeSend:function(){a("#rwctm-loading-image").css("display","inline-block")},success:function(){alert("The template has been successfully setup!"),window.location.reload()},complete:function(){a("#rwctm-loading-image").hide()},error:function(a,b,c){alert(c)}}):window.location.reload()})},a.rwctmcopyteams=function(){var b,c;a("body").on("click",".duplicate_team",function(){b=a(this).attr("data-id"),c=a(this).attr("data-count");var d=confirm("Are you sure you want to duplicate this team?");d===!0?a.ajax({type:"POST",url:rwctmajax.ajaxurl,data:{action:"rwctm_copy_existed_team",teamname:b,membcount:c,nonce:rwctmajax.nonce},beforeSend:function(){a("#rwctm-loading-image").css("display","inline-block")},success:function(){alert("Team Copied Successfully!"),window.location.reload()},complete:function(){a("#rwctm-loading-image").hide()},error:function(a,b,c){alert(c)}}):window.location.reload()})},a.rwctmregenshortcode=function(){var b=confirm("Are you sure you want to Regenerate Shortcode IDs?");b===!0?jQuery.ajax({type:"POST",url:rwctmajax.ajaxurl,data:{action:"rwctm_regenerate_shortcode",nonce:rwctmajax.nonce},beforeSend:function(){a("#rwctm-loading-image").css("display","inline-block")},success:function(){alert("Successfully Regenerated Shortcode ID!"),window.location.reload()},complete:function(){a("#rwctm-loading-image").hide()},error:function(a,b,c){alert(c)}}):window.location.reload()},a.rwctmsetupmember=function(){var b,c;a("body").on("click",".process_team",function(){b=a(this).attr("data-id"),c=a(this).attr("data-count"),a.ajax({type:"POST",url:rwctmajax.ajaxurl,data:{action:"rwctm_process_team_members",teamname:b,nonce:rwctmajax.nonce},beforeSend:function(){a("#rwctm-loading-image").css("display","inline-block")},success:function(b){var f="#rwctm_list";a(f).html(""),a("#new_team").hide(),a("#rwctm-sidebar").hide(),a("#rwctm-narration").hide(),a(".team_list .subsubsub").hide(),a(".regen_shortcode").hide(),a(f).append(b),a("#form-messages").hide(),a(".collapse").hide(),a("#rwctm-tabs").tabs(),a("#memb-section,#memb-status").selectize({maxItems:3}),a("#border_style,#image_size,#filter_align,#max_column,#max_coltab,#max_colmob,#thumbnail_align,#thumbcap_align").selectize(),a(".cs-inactive").hide(),a(".common-settings").hide(),a(".cs-inactive").click(function(){a(".common-settings").slideUp("slow"),a(this).hide(),a(".cs-active").show()}),a(".cs-active").click(function(){a(".common-settings").slideDown("slow"),a(this).hide(),a(".cs-inactive").show()}),a(".collapse").click(function(){a(".column_container").accordion({collapsible:!0,active:!1}),a(".member_advance").accordion({collapsible:!0,active:!1}),a(".common-settings").slideUp("slow"),a(".cs-inactive").hide(),a(".cs-active").show(),a(".collapse").hide(),a(".expand").show()}),a(".expand").click(function(){a(".column_container").accordion({collapsible:!1,active:!0}),a(".member_advance").accordion({collapsible:!1,active:!0}),a(".common-settings").slideDown("slow"),a(".cs-active").hide(),a(".cs-inactive").show(),a(".expand").hide(),a(".collapse").show()});var g=a(".enable_image input[type='checkbox']"),h=a(".img_margin_auto input[type='checkbox']"),i=a("select[id='image_size'] option:selected").val();a("#img-features").hide(),a("#img-custom").hide(),g.click(function(){a("#enable_image").is(":checked")?(a("#img-features").slideDown("slow"),"custom"===i?a("#img-custom").slideDown("slow"):a("#img-custom").slideUp("slow")):a("#img-features").slideUp("slow")}),a("#enable_image").is(":checked")&&(a("#img-features").css("display","block"),"custom"===i?a("#img-custom").css("display","block"):a("#img-custom").css("display","none")),a("select").change(function(){var b=a("select[id='image_size'] option:selected").val();"custom"===b?a("#img-custom").slideDown("slow"):a("#img-custom").slideUp("slow")}),h.click(function(){a("#img_margin_auto").is(":checked")?a(".image_margin").slideUp("slow"):a(".image_margin").slideDown("slow")}),jQuery("#img_margin_auto").is(":checked")&&a(".image_margin").css("display","none");var j=a(".layout-style input[type='radio']");a("#slider-option").hide(),j.click(function(){a("#marked_layout_slide").is(":checked")?(a("#marked_layout_slide").parent(".labelexpanded").addClass("slider-before"),a("#slider-option").slideDown("slow")):(a("#marked_layout_slide").parent(".labelexpanded").removeClass("slider-before"),a("#slider-option").slideUp("slow"))}),a("#marked_layout_slide").is(":checked")&&(a("#marked_layout_slide").parent(".labelexpanded").addClass("slider-before"),a("#slider-option").css("display","block"));var k=a(".slider_aplay input[type='checkbox']");a("#slider-apspeed").hide(),k.click(function(){a("#slider_aplay").is(":checked")?a("#slider-apspeed").slideDown("slow"):a("#slider-apspeed").slideUp("slow")}),a("#slider_aplay").is(":checked")&&a("#slider-apspeed").css("display","block");var l=a(".layout-style input[type='radio']");a(".popup_choice").hide(),l.click(function(){a("#marked_layout_popup").is(":checked")?a(".popup_choice").slideDown("slow"):a(".popup_choice").slideUp("slow")}),a("#marked_layout_popup").is(":checked")&&a(".popup_choice").css("display","block");var m=a(".enable_filter input[type='checkbox']");a("#filter-nav").hide(),m.click(function(){a("#enable_filter").is(":checked")?a("#filter-nav").slideDown("slow"):a("#filter-nav").slideUp("slow")}),a("#enable_filter").is(":checked")&&a("#filter-nav").css("display","block"),1===c&&(a("#rwctm-1 #delMember").attr("id","delDisable"),a("#rwctm-1 #hideMemb").attr("class","inactive")),a(".team_list").css("width","100%"),a("#add_new_team h2").text("Edit RWC Team Member"),a(".postbox-container").css("width","100%"),a(function(){a("#sortable_column").sortable({cancel:".column_container"}),a("#sortable_column input, #sortable_column textarea").on("touchstart",function(b){b.preventDefault(),a(this).focus();var c=a(this).val();a(this).val("").val(c)})}),a(".member_details").css("cursor","move"),a("#accordion_advance").accordion({collapsible:!0,active:!1,heightStyle:"content"});for(var n=1;n<=c;n++)a("#accordion"+n).accordion({collapsible:!0,active:!1,heightStyle:"content"}),"hide"===a("#showMemb"+n+" input").val()&&a("#accordion"+n).hide();a(".team_bg").wpColorPicker(),a(".ribbon_bg").wpColorPicker(),a(".sm_fn_color").each(function(){var b=a(this).attr("data-id");a("#social_color_"+b).wpColorPicker()}),a(".sm_hover_colo").wpColorPicker(),a(".rwctm-color-picker").wpColorPicker(),a("#addMember").click(function(){var b=a(".member_details").length,c=Number(b+1),d=a("#rwctm-"+b).clone().attr("id","rwctm-"+c).fadeIn("slow");d.find("#mcolumn"+b).attr("id","mcolumn"+c),d.find("#showMemb"+b).attr("id","showMemb"+c),d.find("#hideMemb"+b).attr("id","hideMemb"+c),d.find("#accordion"+b).attr("id","accordion"+c),d.find("#memb-section").attr("name","memb_department_["+c+"]"),d.find("#memb-status").attr("name","memb_designation["+c+"]"),d.find("#member-options"+b).attr("id","member-options"+c),d.find("#member-options"+c).attr("value","memberOptions"+c),d.find("#member-id").attr("value",c),d.find("#order-id").attr("value",c),a("#rwctm-"+b).after(d),a(".mtitle").focus(),a("#accordion"+c).accordion({collapsible:!0,heightStyle:"content"}),a("#mcolumn"+c).text("Team Member "+c),a("#accordion"+c+" .wp-color-result").remove(),a(".team_bg").wpColorPicker(),a(".ribbon_bg").wpColorPicker(),a(".mb_exp_color").wpColorPicker(),a(".sm_hover_colo").wpColorPicker(),a("#rwctm-1 #delDisable").attr("id","delMember"),a("#rwctm-"+c+" #delDisable").attr("id","delMember"),a(".inactive").attr("class","column_hide")}),a.rwctmMediaUploader(),a("body").on("click","#remove_image",function(){var b=a(this).parents(".element-input").find("#image_path");a(b).val(""),a(this).parents("#show_upload_preview").slideUp("slow")}),a("body").on("click","#delMember",function(){var b=a(".member_details").length,c=confirm("Are you sure you wish to remove this member? This cannot be undone!");c&&a(this).parents(".member_details").slideUp("slow",function(){a(this).remove(),b-1===1&&(a("#delMember").attr("id","delDisable"),a(".column_hide").attr("class","column_hide inactive"),a(".member_details").css("cursor","auto"),a("#sortable_column").sortable({disabled:!0})),a("#addMember").attr("disabled",!1).prop("value","New Column");var c=1;for(n=1;n<=b;n++)0!==a("#rwctm-"+n).length&&(a("#rwctm-"+n).attr("id","rwctm-"+c),a("#mcolumn"+n).text("Team Member "+c),a("#mcolumn"+n).attr("id","mcolumn"+c),a("#hideMemb"+n).attr("id","hideMemb"+c),a("#showMemb"+n).attr("id","showMemb"+c),a("#accordion"+n).attr("id","accordion"+c),c++)})}),a("body").on("click",".column_hide",function(){var b=a(".member_details").length;b>1&&(a(this).parents(".member_details").find(".column_container").fadeOut("slow"),a(this).prop("class","column_show"),a(this).children(".dashicons-fullscreen-alt").prop("class","dashicons dashicons-fullscreen-exit-alt"),a(this).children("input").prop("value","hide"))}),a("body").on("click",".column_show",function(){a(this).parents(".member_details").find(".column_container").fadeIn("slow"),a(this).prop("class","column_hide"),a(this).children(".dashicons-fullscreen-exit-alt").prop("class","dashicons dashicons-fullscreen-alt"),a(this).children("input").prop("value","show")}),a("#rwctm_save").on("click",function(){a.rwctmsetmemberoptions()})},complete:function(){a("#rwctm-loading-image").hide()},error:function(a,b,c){alert(c)}})}),"undefined"!==typeof a.wp&&"undefined"!==typeof a.wp.wpColorPicker&&(a.wp.wpColorPicker.prototype.options={width:255,hide:!0,border:!1,palettes:["#ededed","#ecf0f1","#c8d6e5","#7f8c8d","#34495e","#22313f","#2ecc71","#48b56a","#0abde3","#1f8dd6","#2574a9","#1f3a93","#5f27cd","#fad232","#ff9f43","#ed6789","#ff6b6b","#ee5253"]})},a.rwctmsetmemberoptions=function(){var b=a("#submitted").val();const c=a("#rwctm_edit_form"),d=a("#form-messages");c.on("submit",function(e){e.preventDefault();const f=a(this).serialize();a.ajax({type:"POST",url:a(this).attr("action"),data:f,success:function(){a(d).addClass("success").css("display","block"),a(c).hide().fadeIn(1e3),a("html, body").animate({scrollTop:0},0),a("body").on("click",".rwctm_close",function(){a(d).fadeOut("slow")}),"no"===b&&window.location.reload()},error:function(a,b,c){alert("An error occurred: "+b+" - "+c)}})})},a.rwctmeditactivity=function(){var b;a("body").on("click",".rwctm_activity",function(){b=a(this).attr("data-id"),a.ajax({type:"POST",url:rwctmajax.ajaxurl,data:{action:"rwctm_process_activity_option",teamname:b,nonce:rwctmajax.nonce},beforeSend:function(){a("#rwctm-loading-image").css("display","inline-block")},success:function(b){var e="#rwctm_list";a(e).html(""),a("#new_team").hide(),a("#rwctm-sidebar").hide(),a("#rwctm-narration").hide(),a(".team_list .subsubsub").hide(),a(".regen_shortcode").hide(),a(e).append(b),a("#add_new_team h2").text("Edit RWC Team Member Activities"),a.rwctmSelectOption();var f=a("#activity_edititem");a("body").on("click","#editactivity",function(){return a('<tr class="activitybody"><td><span>Name:</span><input type="text" name="activity_name[]" placeholder="Enter Activity Name" size="15" required /></td><td><span>https://</span><input type="text" name="activity_link[]" value="" placeholder="Enter Activity URL" size="25" /></td><td><input type="text" name="awesome_icon[]" value="" placeholder="Enter Icon Class" size="15" /><span>Icon</span></td><td><select name="activity_type[]" id="activity_type"><option value="sector" selected="selected">Sector</option><option value="status">Status</option><option value="social">Social</option><option value="skill">Skill</option></select></td><td><span id="remActivity"></span></td></tr>').appendTo(f),!1}),a("body").on("click","#remActivity",function(){return a(this).parents("tr.activitybody").remove(),!1}),jQuery("body").on("click","#remActivity",function(){var a=jQuery("#activity_edititem tr.activitybody").length;return 1===a&&jQuery("#remActivity").attr("id","remDisable"),jQuery(this).parents("tr.activitybody").remove(),!1}),a(function(){a("#activity_edititem tbody").sortable({helper:function(b,c){return c.children().each(function(){a(this).width(a(this).width())}),c},cancel:"input, select"}),a(".activitybody input").on("touchstart",function(b){b.preventDefault(),a(this).focus();var c=a(this).val();a(this).val("").val(c)})}),a("#rwctm_addactivity").on("click",function(){a.rwctmsetmemberoptions()}),a("#rwctm_upactivity").on("click",function(){a.rwctmsetmemberoptions()})},complete:function(){a("#rwctm-loading-image").hide()},error:function(a,b,c){alert(c)}})})},a.rwctmviewteam=function(){var b,c;a("body").on("click",".view_team",function(){b=a(this).attr("data-id"),c=a(this).attr("data-team"),a.ajax({type:"POST",url:rwctmajax.ajaxurl,data:{action:"rwctm_view_team_member",teamname:c,teamid:b,nonce:rwctmajax.nonce},beforeSend:function(){a("#rwctm-loading-image").css("display","inline-block")},success:function(b){var f="#rwctm_list",g=c.replace("_"," "),h=g.replace(/^([a-z\u00E0-\u00FC])|\s+([a-z\u00E0-\u00FC])/g,function(a){return a.toUpperCase()});a(f).html(""),a("#new_team").hide(),a("#rwctm-sidebar").hide(),a("#rwctm-narration").hide(),a(".team_list .subsubsub").hide(),a(".regen_shortcode").hide(),a(f).append(b),a("#add_new_team h2.main-header").text("Preview of "+h),a(".team_list").css("width","100%"),a(".postbox-container").css("width","100%"),a(".process_team").on("click",function(){a.rwctmsetupmember()})},complete:function(){a("#rwctm-loading-image").hide()},error:function(a,b,c){alert(c)}})})},a.rwctmMediaUploader=function(b){var c=a.extend({target:".rwctm-uploader",uploaderTitle:"Select or upload image",uploaderButton:"Set image",multiple:!1,buttonText:"Upload image",buttonClass:".rwctm-upload",previewSize:"",modal:!1,buttonStyle:{color:"#fff"}},b);a(c.target).append('<a href="#" class="button-primary '+c.buttonClass.replace(".","")+'">'+c.buttonText+"</a>"),a(c.target).append('<div id="show_preview" style="display: none;"><label class="input-image">Preview</label><img class="preview_image" src="#" style="display: none;"><span id="remove_image"></span></div>'),a(c.buttonClass).css(c.buttonStyle),a("body").on("click",c.buttonClass,function(b){b.preventDefault();var d=a(this).parent(c.target),e=wp.media({title:c.uploaderTitle,button:{text:c.uploaderButton},multiple:c.multiple}).on("select",function(){var b=e.state().get("selection").first().toJSON();d.find("#show_preview").slideDown("slow"),d.parents(".element-input").find("#show_upload_preview").hide(),d.find("img").attr("src",b.url).show(),d.find("input").val(b.url),c.modal&&a(".modal").css("overflowY","auto"),a("body").on("click","#remove_image",function(){var b=a(this).parents(".element-input").find("#image_path");a(b).val(""),a(this).parents("#show_preview").slideUp("slow")})}).open()})},a.rwctmSelectOption=function(){a("select").each(function(){var b=a(this),c=a(this).children("option").length;b.addClass("s-hidden"),b.wrap('<div class="select'+(b.attr("data-class")?" "+b.attr("data-class"):"")+'"></div>'),b.after('<div class="styledSelect"></div>');var d=b.next("div.styledSelect"),e=b.children("option:selected"),f=(e.attr("data-photo")?'<img src="'+e.attr("data-photo")+'" />':"")+(e.attr("data-icon")?'<span class="ir ico '+e.attr("data-icon")+'"></span>':"")+e.text();d.html(f),d.addClass(e.val());for(var g=a("<ul />",{"class":"options"}).insertAfter(d),h=0;h<c;h++){var i=(b.children("option").eq(h).attr("data-photo")?'<img src="'+b.children("option").eq(h).attr("data-photo")+'" />':"")+(b.children("option").eq(h).attr("data-icon")?'<span class="ir ico '+b.children("option").eq(h).attr("data-icon")+'"></span>':"")+b.children("option").eq(h).text(),j=b.children("option").eq(h);a("<li />",{html:i,rel:b.children("option").eq(h).val(),"class":(e.val()==j.val()?"active":"")+(j.attr("disabled")?" disabled":""),"data-photo":j.attr("data-photo"),"data-icon":j.attr("data-icon")}).appendTo(g)}var k=g.children("li");b.attr("data-error")&&b.parent().append('<div class="select__error">'+b.attr("data-error")+'</div><div class="select__ico select__ico--error"></div></div><div class="select__ico select__ico--ok"></div>'),d.click(function(b){b.stopPropagation(),a(this).hasClass("active")||a("div.styledSelect.active").each(function(){a(this).removeClass("active").next("ul.options").hide()}),a(this).toggleClass("active").next("ul.options").toggle()}),k.click(function(c){c.stopPropagation();var e=a(this);if(!e.hasClass("disabled")){var f=(e.attr("data-photo")?'<img src="'+e.attr("data-photo")+'" />':"")+(e.attr("data-icon")?'<span class="ir ico '+e.attr("data-icon")+'"></span>':"")+e.text();d.html(f).removeClass("active"),b.val()!=a(this).attr("rel")&&b.val(a(this).attr("rel")).change(),g.hide()}}),a(document).click(function(){d.removeClass("active"),g.hide()})})}}(jQuery);
     11function copyShortcode(a){"use strict";var a,b=document.getElementById("rwctmInput-"+a);b.select(),document.execCommand("copy");var c=document.getElementById("rwctmTooltip-"+a);c.innerHTML="Copied!"}function outFunc(){"use strict";var a,b=document.getElementById("rwctmTooltip-"+a);b.innerHTML="Click to Copy Shortcode!"}jQuery(document).ready(function(a){"use strict";a(".team_name span").css("display","none"),a(".team_name").mouseover(function(){var b=a(this).attr("id");a("td#"+b+" span").css("display","inline-block")}),a(".team_name").mouseout(function(){var b=a(this).attr("id");a("td#"+b+" span").css("display","none")}),a("#rwctm-tabs").tabs(),a("#rwctm-tabs").css("visibility","visible"),a("#default_font").is(":checked")?a("#user_choice_font").css("display","none"):a("#user_choice_font").css("display","inline-block"),a("#default_font").click(function(){var b=a(this).is(":checked");b?a("#user_choice_font").slideUp("slow"):a("#user_choice_font").slideDown("slow")}),a(function(){if(a("#rwctm-fancy-textarea").length){var b=wp.codeEditor.defaultSettings?_.clone(wp.codeEditor.defaultSettings):{};b.codemirror=_.extend({},b.codemirror,{autoRefresh:!0,mode:"css"});var c=wp.codeEditor.initialize(a("#rwctm-fancy-textarea"),b);setTimeout(function(){c.codeMirrorInstance.refresh()},1)}}),a("#wp_post_editor").is(":checked")?a("#htmleditor").css("display","block"):a("#htmleditor").css("display","none"),a("#wp_post_editor").click(function(){var b=a(this).is(":checked");b?a("#htmleditor").slideDown("slow"):a("#htmleditor").slideUp("slow")}),a(".activate_team").on("click",function(){a.rwctmactivatetemp()}),a(".rwctm_remove").on("click",function(){a.rwctmdeleteteam()}),a(".rwctm_template").on("change",function(){a.rwctmtemplate()}),a(".duplicate_team").on("click",function(){a.rwctmcopyteams()}),a(".regen_shortcode").on("click",function(){a.rwctmregenshortcode()}),a(".rwctm_activity").on("click",function(){a.rwctmeditactivity()}),a(".view_team").on("click",function(){a.rwctmviewteam()}),a(".process_team").on("click",function(){a.rwctmsetupmember()}),a(".demo_link").on("click",function(b){b.preventDefault();var c=a(this).attr("href");if(c){var d='<div id="rwctm-modal-container">';d+='<div id="rwctm-modal-content">',d+='<img src="'+c+'" alt="Demo Image">',d+="</div>",d+="</div>",a("body").append(d),a("#rwctm-modal-container").fadeIn("slow"),a("#rwctm-modal-container").on("click",function(){a(this).fadeOut("slow",function(){a(this).remove()})})}})}),function(a){"use strict";a.rwctmactivatetemp=function(){var b;a("body").on("click",".activate_team",function(){b=a(this).attr("data-count"),a.ajax({type:"POST",url:rwctmajax.ajaxurl,data:{action:"rwctm_activate_template",tempcount:b,nonce:rwctmajax.nonce},beforeSend:function(){a("#rwctm-loading-image").css("display","inline-block")},success:function(){alert("Successfully Activated!"),window.location.reload()},complete:function(){a("#rwctm-loading-image").hide()},error:function(a,b,c){alert(c)}})})},a.rwctmdeleteteam=function(b){var c;a("body").on("click",".rwctm_remove",function(){c=a(this).attr("data-id");var d=confirm("Are you sure you want to delete?");d===!0?(a.ajax({type:"POST",url:rwctmajax.ajaxurl,data:{action:"rwctm_delete_selected_team",teamname:c,nonce:rwctmajax.nonce},beforeSend:function(){a("#rwctm-loading-image").css("display","inline-block")},success:function(b){var f="#rwctm_"+c;a(f).remove(),a(f).append(b),window.location.reload()},complete:function(){a("#rwctm-loading-image").hide()},error:function(a,b,c){alert(c)}}),b.preventDefault()):window.location.reload()})},a.rwctmtemplate=function(){var b;a("body").on("click",".rwctm_template",function(){b=a(this).attr("data-id");var c=confirm("Are you sure you want to setup this template?");c===!0?a.ajax({type:"POST",url:rwctmajax.ajaxurl,data:{action:"rwctm_setup_selected_template",teamname:b,template:this.value,nonce:rwctmajax.nonce},beforeSend:function(){a("#rwctm-loading-image").css("display","inline-block")},success:function(){alert("The template has been successfully setup!"),window.location.reload()},complete:function(){a("#rwctm-loading-image").hide()},error:function(a,b,c){alert(c)}}):window.location.reload()})},a.rwctmcopyteams=function(){var b,c;a("body").on("click",".duplicate_team",function(){b=a(this).attr("data-id"),c=a(this).attr("data-count");var d=confirm("Are you sure you want to duplicate this team?");d===!0?a.ajax({type:"POST",url:rwctmajax.ajaxurl,data:{action:"rwctm_copy_existed_team",teamname:b,membcount:c,nonce:rwctmajax.nonce},beforeSend:function(){a("#rwctm-loading-image").css("display","inline-block")},success:function(){alert("Team Copied Successfully!"),window.location.reload()},complete:function(){a("#rwctm-loading-image").hide()},error:function(a,b,c){alert(c)}}):window.location.reload()})},a.rwctmregenshortcode=function(){var b=confirm("Are you sure you want to Regenerate Shortcode IDs?");b===!0?jQuery.ajax({type:"POST",url:rwctmajax.ajaxurl,data:{action:"rwctm_regenerate_shortcode",nonce:rwctmajax.nonce},beforeSend:function(){a("#rwctm-loading-image").css("display","inline-block")},success:function(){alert("Successfully Regenerated Shortcode ID!"),window.location.reload()},complete:function(){a("#rwctm-loading-image").hide()},error:function(a,b,c){alert(c)}}):window.location.reload()},a.rwctmsetupmember=function(){var b,c;a("body").on("click",".process_team",function(){b=a(this).attr("data-id"),c=a(this).attr("data-count"),a.ajax({type:"POST",url:rwctmajax.ajaxurl,data:{action:"rwctm_process_team_members",teamname:b,nonce:rwctmajax.nonce},beforeSend:function(){a("#rwctm-loading-image").css("display","inline-block")},success:function(b){var f="#rwctm_list";a(f).html(""),a("#new_team").hide(),a("#rwctm-sidebar").hide(),a("#rwctm-narration").hide(),a(".team_list .subsubsub").hide(),a(".regen_shortcode").hide(),a(f).append(b),a("#form-messages").hide(),a(".collapse").hide(),a("#rwctm-tabs").tabs(),a("#memb-section,#memb-status").selectize({maxItems:3}),a("#border_style,#image_size,#filter_align,#max_column,#max_coltab,#max_colmob,#thumbnail_align,#thumbcap_align").selectize(),a(".cs-inactive").hide(),a(".common-settings").hide(),a(".cs-inactive").click(function(){a(".common-settings").slideUp("slow"),a(this).hide(),a(".cs-active").show()}),a(".cs-active").click(function(){a(".common-settings").slideDown("slow"),a(this).hide(),a(".cs-inactive").show()}),a(".collapse").click(function(){a(".column_container").accordion({collapsible:!0,active:!1}),a(".member_advance").accordion({collapsible:!0,active:!1}),a(".common-settings").slideUp("slow"),a(".cs-inactive").hide(),a(".cs-active").show(),a(".collapse").hide(),a(".expand").show()}),a(".expand").click(function(){a(".column_container").accordion({collapsible:!1,active:!0}),a(".member_advance").accordion({collapsible:!1,active:!0}),a(".common-settings").slideDown("slow"),a(".cs-active").hide(),a(".cs-inactive").show(),a(".expand").hide(),a(".collapse").show()});var g=a(".enable_image input[type='checkbox']"),h=a(".img_margin_auto input[type='checkbox']"),i=a("select[id='image_size'] option:selected").val();a("#img-features").hide(),a("#img-custom").hide(),g.click(function(){a("#enable_image").is(":checked")?(a("#img-features").slideDown("slow"),"custom"===i?a("#img-custom").slideDown("slow"):a("#img-custom").slideUp("slow")):a("#img-features").slideUp("slow")}),a("#enable_image").is(":checked")&&(a("#img-features").css("display","block"),"custom"===i?a("#img-custom").css("display","block"):a("#img-custom").css("display","none")),a("select").change(function(){var b=a("select[id='image_size'] option:selected").val();"custom"===b?a("#img-custom").slideDown("slow"):a("#img-custom").slideUp("slow")}),h.click(function(){a("#img_margin_auto").is(":checked")?a(".image_margin").slideUp("slow"):a(".image_margin").slideDown("slow")}),jQuery("#img_margin_auto").is(":checked")&&a(".image_margin").css("display","none");var j=a(".layout-style input[type='radio']");a("#slider-option").hide(),j.click(function(){a("#marked_layout_slide").is(":checked")?(a("#marked_layout_slide").parent(".labelexpanded").addClass("slider-before"),a("#slider-option").slideDown("slow")):(a("#marked_layout_slide").parent(".labelexpanded").removeClass("slider-before"),a("#slider-option").slideUp("slow"))}),a("#marked_layout_slide").is(":checked")&&(a("#marked_layout_slide").parent(".labelexpanded").addClass("slider-before"),a("#slider-option").css("display","block"));var k=a(".slider_aplay input[type='checkbox']");a("#slider-apspeed").hide(),k.click(function(){a("#slider_aplay").is(":checked")?a("#slider-apspeed").slideDown("slow"):a("#slider-apspeed").slideUp("slow")}),a("#slider_aplay").is(":checked")&&a("#slider-apspeed").css("display","block");var l=a(".layout-style input[type='radio']");a(".popup_choice").hide(),l.click(function(){a("#marked_layout_popup").is(":checked")?a(".popup_choice").slideDown("slow"):a(".popup_choice").slideUp("slow")}),a("#marked_layout_popup").is(":checked")&&a(".popup_choice").css("display","block");var m=a(".enable_filter input[type='checkbox']");a("#filter-nav").hide(),m.click(function(){a("#enable_filter").is(":checked")?a("#filter-nav").slideDown("slow"):a("#filter-nav").slideUp("slow")}),a("#enable_filter").is(":checked")&&a("#filter-nav").css("display","block"),1===c&&(a("#rwctm-1 #delMember").attr("id","delDisable"),a("#rwctm-1 #hideMemb").attr("class","inactive")),a(".team_list").css("width","100%"),a("#add_new_team h2").text("Edit RWC Team Member"),a(".postbox-container").css("width","100%"),a(function(){a("#sortable_column").sortable({cancel:".column_container"}),a("#sortable_column input, #sortable_column textarea").on("touchstart",function(b){b.preventDefault(),a(this).focus();var c=a(this).val();a(this).val("").val(c)})}),a(".member_details").css("cursor","move"),a("#accordion_advance").accordion({collapsible:!0,active:!1,heightStyle:"content"});for(var n=1;n<=c;n++)a("#accordion"+n).accordion({collapsible:!0,active:!1,heightStyle:"content"}),"hide"===a("#showMemb"+n+" input").val()&&a("#accordion"+n).hide();a(".team_bg").wpColorPicker(),a(".ribbon_bg").wpColorPicker(),a(".sm_fn_color").each(function(){var b=a(this).attr("data-id");a("#social_color_"+b).wpColorPicker()}),a(".sm_hover_colo").wpColorPicker(),a(".rwctm-color-picker").wpColorPicker(),a("#addMember").click(function(){var b=a(".member_details").length,c=Number(b+1),d=a("#rwctm-"+b).clone().attr("id","rwctm-"+c).fadeIn("slow");d.find("#mcolumn"+b).attr("id","mcolumn"+c),d.find("#showMemb"+b).attr("id","showMemb"+c),d.find("#hideMemb"+b).attr("id","hideMemb"+c),d.find("#accordion"+b).attr("id","accordion"+c),d.find("#memb-section").attr("name","memb_department_["+c+"]"),d.find("#memb-status").attr("name","memb_designation["+c+"]"),d.find("#member-options"+b).attr("id","member-options"+c),d.find("#member-options"+c).attr("value","memberOptions"+c),d.find("#member-id").attr("value",c),d.find("#order-id").attr("value",c),a("#rwctm-"+b).after(d),a(".mtitle").focus(),a("#accordion"+c).accordion({collapsible:!0,heightStyle:"content"}),a("#mcolumn"+c).text("Team Member "+c),a("#accordion"+c+" .wp-color-result").remove(),a(".team_bg").wpColorPicker(),a(".ribbon_bg").wpColorPicker(),a(".mb_exp_color").wpColorPicker(),a(".sm_hover_colo").wpColorPicker(),a("#rwctm-1 #delDisable").attr("id","delMember"),a("#rwctm-"+c+" #delDisable").attr("id","delMember"),a(".inactive").attr("class","column_hide")}),a.rwctmMediaUploader(),a("body").on("click","#remove_image",function(){var b=a(this).parents(".element-input").find("#image_path");a(b).val(""),a(this).parents("#show_upload_preview").slideUp("slow")}),a("body").on("click","#delMember",function(){var b=a(".member_details").length,c=confirm("Are you sure you wish to remove this member? This cannot be undone!");c&&a(this).parents(".member_details").slideUp("slow",function(){a(this).remove(),b-1===1&&(a("#delMember").attr("id","delDisable"),a(".column_hide").attr("class","column_hide inactive"),a(".member_details").css("cursor","auto"),a("#sortable_column").sortable({disabled:!0})),a("#addMember").attr("disabled",!1).prop("value","New Column");var c=1;for(n=1;n<=b;n++)0!==a("#rwctm-"+n).length&&(a("#rwctm-"+n).attr("id","rwctm-"+c),a("#mcolumn"+n).text("Team Member "+c),a("#mcolumn"+n).attr("id","mcolumn"+c),a("#hideMemb"+n).attr("id","hideMemb"+c),a("#showMemb"+n).attr("id","showMemb"+c),a("#accordion"+n).attr("id","accordion"+c),c++)})}),a("body").on("click",".column_hide",function(){var b=a(".member_details").length;b>1&&(a(this).parents(".member_details").find(".column_container").fadeOut("slow"),a(this).prop("class","column_show"),a(this).children(".dashicons-fullscreen-alt").prop("class","dashicons dashicons-fullscreen-exit-alt"),a(this).children("input").prop("value","hide"))}),a("body").on("click",".column_show",function(){a(this).parents(".member_details").find(".column_container").fadeIn("slow"),a(this).prop("class","column_hide"),a(this).children(".dashicons-fullscreen-exit-alt").prop("class","dashicons dashicons-fullscreen-alt"),a(this).children("input").prop("value","show")}),a("#rwctm_save").on("click",function(){a.rwctmsetmemberoptions()})},complete:function(){a("#rwctm-loading-image").hide()},error:function(a,b,c){alert(c)}})}),"undefined"!==typeof a.wp&&"undefined"!==typeof a.wp.wpColorPicker&&(a.wp.wpColorPicker.prototype.options={width:255,hide:!0,border:!1,palettes:["#ededed","#ecf0f1","#c8d6e5","#7f8c8d","#34495e","#22313f","#2ecc71","#48b56a","#0abde3","#1f8dd6","#2574a9","#1f3a93","#5f27cd","#fad232","#ff9f43","#ed6789","#ff6b6b","#ee5253"]})},a.rwctmsetmemberoptions=function(){var b=a("#submitted").val();const c=a("#rwctm_edit_form"),d=a("#form-messages");c.on("submit",function(e){e.preventDefault();const f=a(this).serialize();a.ajax({type:"POST",url:a(this).attr("action"),data:f,success:function(){a(d).addClass("success").css("display","block"),a(c).hide().fadeIn(1e3),a("html, body").animate({scrollTop:0},0),a("body").on("click",".rwctm_close",function(){a(d).fadeOut("slow")}),"no"===b&&window.location.reload()},error:function(a,b,c){alert("An error occurred: "+b+" - "+c)}})})},a.rwctmeditactivity=function(){var b;a("body").on("click",".rwctm_activity",function(){b=a(this).attr("data-id"),a.ajax({type:"POST",url:rwctmajax.ajaxurl,data:{action:"rwctm_process_activity_option",teamname:b,nonce:rwctmajax.nonce},beforeSend:function(){a("#rwctm-loading-image").css("display","inline-block")},success:function(b){var e="#rwctm_list";a(e).html(""),a("#new_team").hide(),a("#rwctm-sidebar").hide(),a("#rwctm-narration").hide(),a(".team_list .subsubsub").hide(),a(".regen_shortcode").hide(),a(e).append(b),a("#add_new_team h2").text("Edit RWC Team Member Activities"),a.rwctmSelectOption();var f=a("#activity_edititem");a("body").on("click","#editactivity",function(){return a('<tr class="activitybody"><td><span>Name:</span><input type="text" name="activity_name[]" placeholder="Enter Activity Name" size="15" required /></td><td><span>https://</span><input type="text" name="activity_link[]" value="" placeholder="Enter Activity URL" size="25" /></td><td><input type="text" name="awesome_icon[]" value="" placeholder="Enter Icon Class" size="15" /><span>Icon</span></td><td><select name="activity_type[]" id="activity_type"><option value="sector" selected="selected">Sector</option><option value="status">Status</option><option value="social">Social</option></select></td><td><span id="remActivity"></span></td></tr>').appendTo(f),!1}),a("body").on("click","#remActivity",function(){return a(this).parents("tr.activitybody").remove(),!1}),jQuery("body").on("click","#remActivity",function(){var a=jQuery("#activity_edititem tr.activitybody").length;return 1===a&&jQuery("#remActivity").attr("id","remDisable"),jQuery(this).parents("tr.activitybody").remove(),!1}),a(function(){a("#activity_edititem tbody").sortable({helper:function(b,c){return c.children().each(function(){a(this).width(a(this).width())}),c},cancel:"input, select"}),a(".activitybody input").on("touchstart",function(b){b.preventDefault(),a(this).focus();var c=a(this).val();a(this).val("").val(c)})}),a("#rwctm_addactivity").on("click",function(){a.rwctmsetmemberoptions()}),a("#rwctm_upactivity").on("click",function(){a.rwctmsetmemberoptions()})},complete:function(){a("#rwctm-loading-image").hide()},error:function(a,b,c){alert(c)}})})},a.rwctmviewteam=function(){var b,c;a("body").on("click",".view_team",function(){b=a(this).attr("data-id"),c=a(this).attr("data-team"),a.ajax({type:"POST",url:rwctmajax.ajaxurl,data:{action:"rwctm_view_team_member",teamname:c,teamid:b,nonce:rwctmajax.nonce},beforeSend:function(){a("#rwctm-loading-image").css("display","inline-block")},success:function(b){var f="#rwctm_list",g=c.replace("_"," "),h=g.replace(/^([a-z\u00E0-\u00FC])|\s+([a-z\u00E0-\u00FC])/g,function(a){return a.toUpperCase()});a(f).html(""),a("#new_team").hide(),a("#rwctm-sidebar").hide(),a("#rwctm-narration").hide(),a(".team_list .subsubsub").hide(),a(".regen_shortcode").hide(),a(f).append(b),a("#add_new_team h2.main-header").text("Preview of "+h),a(".team_list").css("width","100%"),a(".postbox-container").css("width","100%"),a(".process_team").on("click",function(){a.rwctmsetupmember()})},complete:function(){a("#rwctm-loading-image").hide()},error:function(a,b,c){alert(c)}})})},a.rwctmMediaUploader=function(b){var c=a.extend({target:".rwctm-uploader",uploaderTitle:"Select or upload image",uploaderButton:"Set image",multiple:!1,buttonText:"Upload image",buttonClass:".rwctm-upload",previewSize:"",modal:!1,buttonStyle:{color:"#fff"}},b);a(c.target).append('<a href="#" class="button-primary '+c.buttonClass.replace(".","")+'">'+c.buttonText+"</a>"),a(c.target).append('<div id="show_preview" style="display: none;"><label class="input-image">Preview</label><img class="preview_image" src="#" style="display: none;"><span id="remove_image"></span></div>'),a(c.buttonClass).css(c.buttonStyle),a("body").on("click",c.buttonClass,function(b){b.preventDefault();var d=a(this).parent(c.target),e=wp.media({title:c.uploaderTitle,button:{text:c.uploaderButton},multiple:c.multiple}).on("select",function(){var b=e.state().get("selection").first().toJSON();d.find("#show_preview").slideDown("slow"),d.parents(".element-input").find("#show_upload_preview").hide(),d.find("img").attr("src",b.url).show(),d.find("input").val(b.url),c.modal&&a(".modal").css("overflowY","auto"),a("body").on("click","#remove_image",function(){var b=a(this).parents(".element-input").find("#image_path");a(b).val(""),a(this).parents("#show_preview").slideUp("slow")})}).open()})},a.rwctmSelectOption=function(){a("select").each(function(){var b=a(this),c=a(this).children("option").length;b.addClass("s-hidden"),b.wrap('<div class="select'+(b.attr("data-class")?" "+b.attr("data-class"):"")+'"></div>'),b.after('<div class="styledSelect"></div>');var d=b.next("div.styledSelect"),e=b.children("option:selected"),f=(e.attr("data-photo")?'<img src="'+e.attr("data-photo")+'" />':"")+(e.attr("data-icon")?'<span class="ir ico '+e.attr("data-icon")+'"></span>':"")+e.text();d.html(f),d.addClass(e.val());for(var g=a("<ul />",{"class":"options"}).insertAfter(d),h=0;h<c;h++){var i=(b.children("option").eq(h).attr("data-photo")?'<img src="'+b.children("option").eq(h).attr("data-photo")+'" />':"")+(b.children("option").eq(h).attr("data-icon")?'<span class="ir ico '+b.children("option").eq(h).attr("data-icon")+'"></span>':"")+b.children("option").eq(h).text(),j=b.children("option").eq(h);a("<li />",{html:i,rel:b.children("option").eq(h).val(),"class":(e.val()==j.val()?"active":"")+(j.attr("disabled")?" disabled":""),"data-photo":j.attr("data-photo"),"data-icon":j.attr("data-icon")}).appendTo(g)}var k=g.children("li");b.attr("data-error")&&b.parent().append('<div class="select__error">'+b.attr("data-error")+'</div><div class="select__ico select__ico--error"></div></div><div class="select__ico select__ico--ok"></div>'),d.click(function(b){b.stopPropagation(),a(this).hasClass("active")||a("div.styledSelect.active").each(function(){a(this).removeClass("active").next("ul.options").hide()}),a(this).toggleClass("active").next("ul.options").toggle()}),k.click(function(c){c.stopPropagation();var e=a(this);if(!e.hasClass("disabled")){var f=(e.attr("data-photo")?'<img src="'+e.attr("data-photo")+'" />':"")+(e.attr("data-icon")?'<span class="ir ico '+e.attr("data-icon")+'"></span>':"")+e.text();d.html(f).removeClass("active"),b.val()!=a(this).attr("rel")&&b.val(a(this).attr("rel")).change(),g.hide()}}),a(document).click(function(){d.removeClass("active"),g.hide()})})}}(jQuery);
  • rwc-team-members/trunk/assets/js/rwctm-slider.js

    r3050730 r3061831  
    1212Repo: http://github.com/kenwheeler/slick
    1313Issues: http://github.com/kenwheeler/slick/issues
    14 * @package RWC Team Members - v0.1 - 14 March, 2024
     14* @package RWC Team Members - v0., 2024
    1515*/
    1616/* global window, document, define, jQuery, setInterval, clearInterval */
  • rwc-team-members/trunk/assets/js/rwctm-slider.min.js

    r3050730 r3061831  
    1212Repo: http://github.com/kenwheeler/slick
    1313Issues: http://github.com/kenwheeler/slick/issues
    14 * @package RWC Team Members - v0.1 - 14 March, 2024
     14* @package RWC Team Members - v0., 2024
    1515*/
    1616/* global window, document, define, jQuery, setInterval, clearInterval */
  • rwc-team-members/trunk/assets/js/rwctm-team.js

    r3050730 r3061831  
    66 * the filter navigation system, enhancing the team layout, and managing the left popup.
    77 *
    8  * @package RWC Team Members - v0.1 - 14 March, 2024
     8 * @package RWC Team Members - v0., 2024
    99 */
    1010(function($) {
  • rwc-team-members/trunk/assets/js/rwctm-team.min.js

    r3050730 r3061831  
    66 * the filter navigation system, enhancing the team layout, and managing the left popup.
    77 *
    8  * @package RWC Team Members - v0.1 - 14 March, 2024
     8 * @package RWC Team Members - v0., 2024
    99 */
    1010!function(a){"use strict";var b=a(".rwctm-container");b.each(function(){var b=a(this),c=b.find(".rwctm-team-filter-wrap [data-filter]"),d=b.find(".rwctm-row [data-category]"),e=b.find(".rwctm-team-filter-wrap [data-filter]");e.each(function(){var c=a(this).attr("data-filter"),d=b.find('.rwctm-row [data-category*="'+c+'"]');"all"!==c&&0===d.length&&a(this).hide()}),c.on("click",function(b){b.preventDefault();var e=a(this);c.removeClass("rwctm-active-filter"),e.addClass("rwctm-active-filter");var f=e.attr("data-filter");d.removeClass("animate__animated ").fadeOut().promise().done("all"===f?function(){d.addClass("folding-parent animate__animated ").fadeIn(),a(".folding-parent").css("margin",""),a(".folding-parent:last-child").css("margin-right","")}:function(){d.removeClass("folding-parent"),d.filter('[data-category *= "'+f+'"]').addClass("folding-parent animate__animated ").fadeIn();var b=a(".folding-parent").css("margin-right");a(".folding-parent").css("margin","0 "+b+" "+b+" 0"),a(".folding-parent:last-child").css("margin-right","0")})})});var c=a(".rwctm-member.lout3");c.length&&c.each(function(){var b=a(this).find(".rwctm-member-info"),c=b.find(".rwctm-member-status, .rwctm-member-bio");if(!b.closest(".rwctm-info-wrapper").length){var d=a("<div>").addClass("rwctm-info-wrapper");d.append(c),b.append(d)}});var d=a(".rwctm-member.lout5");d.length&&d.each(function(){var b=a(this).find(".rwctm-member-bio"),c=b.find(".rwctm-short-bio, .social-thumb");if(!b.closest(".rwctm-bio-wrapper").length){var d=a("<div>").addClass("rwctm-bio-wrapper");d.append(c),b.append(d)}});var e=a(".rwctm-modal-corner");e.length&&a(document).ready(function(){a(".rwctm-popup-corner").each(function(){var b=a(this);a(".rwctm-member-corner").length>0&&a(".rwctm-member-corner").on("click",function(b){b.preventDefault(),b.stopPropagation(),a(".rwc-info-group").removeClass("isActive"),a(this).find(".rwc-info-group").addClass("isActive")}),b.find(".close-side-widget").length>0&&b.find(".close-side-widget").on("click",function(b){b.preventDefault(),a(this).closest(".rwc-info-group").removeClass("isActive")}),a("body").on("click",function(){a(".rwc-info-group").removeClass("isActive")}),b.find(".rwctm-modal-content").on("click",function(a){a.stopPropagation()})})})}(jQuery);
  • rwc-team-members/trunk/assets/js/selectize.js

    r3050730 r3061831  
    1717 * @author Brian Reavis <brian@thirdroute.com>
    1818 * @author Ris Adams <selectize@risadams.com>
    19  * @package RWC Team Members - v0.1 - 14 March, 2024
     19 * @package RWC Team Members - v0., 2024
    2020 */
    2121(function (root, factory) {
  • rwc-team-members/trunk/assets/js/selectize.min.js

    r3050730 r3061831  
    1717 * @author Brian Reavis <brian@thirdroute.com>
    1818 * @author Ris Adams <selectize@risadams.com>
    19  * @package RWC Team Members - v0.1 - 14 March, 2024
     19 * @package RWC Team Members - v0., 2024
    2020 */
    2121(function (root, factory) {
  • rwc-team-members/trunk/class/rwctm_aq_resizer.php

    r3050730 r3061831  
    2121 * @return str|array
    2222 *
    23  * @package RWC Team Members - v0.1 - 14 March, 2024
     23 * @package RWC Team Members - v0., 2024
    2424 * by @realwebcare - https://www.realwebcare.com
    2525 */
  • rwc-team-members/trunk/inc/admin-menu.php

    r3050730 r3061831  
    1818 * Including other pages to make the plugin workable.
    1919 *
    20  * @package RWC Team Members - v0.1 - 14 March, 2024
     20 * @package RWC Team Members - v0., 2024
    2121 */
    2222if ( ! defined( 'ABSPATH' ) ) {
  • rwc-team-members/trunk/inc/display-team.php

    r3050730 r3061831  
    77 * a visual representation of how the team member information will be displayed on the frontend.
    88 *
    9  * @package RWC Team Members - v0.1 - 14 March, 2024
     9 * @package RWC Team Members - v0., 2024
    1010 */
    1111if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
  • rwc-team-members/trunk/inc/process-team.php

    r3050730 r3061831  
    88 * editing team activities, editing team settings, deleting teams, and duplicating teams.
    99 *
    10  * @package RWC Team Members - v0.1 - 14 March, 2024
     10 * @package RWC Team Members - v0., 2024
    1111 */
    1212if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
  • rwc-team-members/trunk/inc/rwctm-guide.php

    r3050730 r3061831  
    77 * assistance to administrators on how to use various features of the plugin.
    88 *
    9  * @package RWC Team Members - v0.1 - 14 March, 2024
     9 * @package RWC Team Members - v0., 2024
    1010 */
    1111if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
     
    1717            <div class="rwctm">
    1818                <h3><?php esc_html_e('Watch the Video', 'rwc-team-members'); ?></h3>
    19                 <!-- <p><?php //esc_html_e('Check out the 7-minute "Getting Started" video for an overview of the team member plugin. Next, go to the template page to make your first team. Then, explore various options to showcase your team professionally.', 'rwc-team-members'); ?></p> -->
     19                <>
    2020                <div class="getting-started_video">
    21                     <img src="<?php echo esc_url(plugins_url( '../assets/images/rwc-team-members.png', __FILE__ )); ?>" alt="Thumbnail">
     21                    <!-- <img src="<?php //echo esc_url(plugins_url( '../assets/images/rwc-team-members.png', __FILE__ )); ?>" alt="Thumbnail"> -->
     22                    <iframe width="620" height="350" src="https://www.youtube-nocookie.com/embed/N7kWGArhA4U" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
    2223                </div>
    2324            </div>
  • rwc-team-members/trunk/inc/team-sidebar.php

    r3050730 r3061831  
    88 * and links related to the plugin, offering valuable resources for administrators.
    99 *
    10  * @package RWC Team Members - v0.1 - 14 March, 2024
     10 * @package RWC Team Members - v0., 2024
    1111 */
    1212if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
     
    2323                <h3>'.esc_html__('Code Usage Instruction', 'rwc-team-members').'</h3>
    2424                <div class="rwctm">
    25                     <p class="rwctm-first">'.esc_html__('To display a team shortcode in a WordPress theme file, you can use the <strong>do_shortcode</strong> function:', 'rwc-team-members').'</p>'.
     25                    <p class="rwctm-first">'.').'</p>'.
    2626                    sprintf(__('<p>%s</p>', 'rwc-team-members'), '<pre><code><span class="rwctm-meta">&lt;?php</span> <span class="rwctm-keyword">echo</span> <span class="rwctm-function">do_shortcode</span>(<span class="rwctm-string">\'[rwc-team-members id=&quot;SHORTCODE_ID&quot;]\'</span>); <span class="rwctm-meta">?&gt;</span></code></pre>').'
    27                     <p>'.esc_html__('Replace "SHORTCODE_ID" with the actual id of the team that you want to display.', 'rwc-team-members').'</p>
     27                    <p>'.').'</p>
    2828                    <p>'.esc_html__('You can place this code anywhere in your theme file where you want the team to appear. For example, you could place it in the template file for a specific page of your site.', 'rwc-team-members').'</p>
    2929                    <p>'.esc_html__('Keep in mind that if you are making changes directly to your theme files, those changes will be overwritten if you update the theme. To avoid this, you can create a child theme and make your changes there instead.', 'rwc-team-members').'</p>
     
    3535                    <ul class="rwctmusage-list">
    3636                        <li>RWC Team Members</li>
    37                         <li>Version: 0.1</li>
     37                        <li>Version: 0.</li>
    3838                        <li>Scripts: PHP + CSS + JS</li>
    3939                        <li>Requires: Wordpress 5.0</li>
    4040                        <li>First Released: 14 March, 2024</li>
    41                         <li>Last Updated: 14 March, 2024</li>
     41                        <li>Last Updated: 1, 2024</li>
    4242                        <li>By: <a href="%1s" target="_blank">Realwebcare</a></li>
    4343                        <li>Facebook Page: <a href="%2s" target="_blank">Realwebcare</a></li>
  • rwc-team-members/trunk/layout/layout-one.php

    r3050741 r3061831  
    77 * and team members are presented in a visually appealing grid format.
    88 *
    9  * @package RWC Team Members - v0.1 - 14 March, 2024
     9 * @package RWC Team Members - v0., 2024
    1010 */
    1111if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
  • rwc-team-members/trunk/layout/layout-three.php

    r3050741 r3061831  
    77 * a grid format, and their details appear in a left popup if enabled from the admin options.
    88 *
    9  * @package RWC Team Members - v0.1 - 14 March, 2024
     9 * @package RWC Team Members - v0., 2024
    1010 */
    1111if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
  • rwc-team-members/trunk/layout/layout-two.php

    r3050741 r3061831  
    77 * slider format, and their details appear in a left popup if enabled from the admin options.
    88 *
    9  * @package RWC Team Members - v0.1 - 14 March, 2024
     9 * @package RWC Team Members - v0., 2024
    1010 */
    1111if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
  • rwc-team-members/trunk/lib/team-functions.php

    r3050730 r3061831  
    77 * manage the addition, update, deletion, and manipulation of team-related settings and data.
    88 *
    9  * @package RWC Team Members - v0.1 - 14 March, 2024
     9 * @package RWC Team Members - v0., 2024
    1010 */
    1111if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
  • rwc-team-members/trunk/options/activity-settings.php

    r3050730 r3061831  
    77 * department, designation, social media names, and links for team members.
    88 *
    9  * @package RWC Team Members - v0.1 - 14 March, 2024
     9 * @package RWC Team Members - v0., 2024
    1010 */
    1111if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
  • rwc-team-members/trunk/options/global-settings.php

    r3050730 r3061831  
    77 * provide administrators with tools to customize the plugin's behavior and appearance.
    88 *
    9  * @package RWC Team Members - v0.1 - 14 March, 2024
     9 * @package RWC Team Members - v0., 2024
    1010 */
    1111if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
  • rwc-team-members/trunk/options/team-settings.php

    r3050730 r3061831  
    77 * configuring team settings for the "RWC Team Members" plugin.
    88 *
    9  * @package RWC Team Members - v0.1 - 14 March, 2024
     9 * @package RWC Team Members - v0., 2024
    1010 */
    1111if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
     
    7979                    'name'              => 'rwctm_option',
    8080                    'label'             => __( 'Enable Team', 'rwc-team-members' ),
    81                     'desc'              => sprintf( __( 'Mark if you want to show %s', 'rwc-team-members' ), '<b>' . $our_team_name . '</b>' ),
     81                    'desc'              => sprintf( __( 'Mark if you want to show %s', 'rwc-team-members' ), '' ),
    8282                    'type'              => 'checkbox',
    8383                    'value'             => isset($teamCombine['enable']) ? $teamCombine['enable'] : 'yes',
     
    266266                array(
    267267                    'class'             => 'rwctm_notice',
    268                     'label'             => __( '<strong>Note:</strong> After adding or modifying image sizes, it is recommended to regenerate existing thumbnails using a plugin like \'Regenerate Thumbnails\'. Regenerating thumbnails provides an opportunity to remove any unnecessary image sizes that were previously generated. This can help optimize your media library and reduce storage space by eliminating redundant image variations.', 'rwc-team-members' ),
     268                    'label'             => __( 'After adding or modifying image sizes, it is recommended to regenerate existing thumbnails using a plugin like \'Regenerate Thumbnails\'. Regenerating thumbnails provides an opportunity to remove any unnecessary image sizes that were previously generated. This can help optimize your media library and reduce storage space by eliminating redundant image variations.', 'rwc-team-members' ),
    269269                    'type'              => 'title',
    270270                    'tips'              => __( '', 'rwc-team-members' ),
     
    10351035                    'tips'              => __( '', 'rwc-team-members' ),
    10361036                    'badge'             => ''
    1037                 ),
    1038                 array(
    1039                     'name'          => 'nav_font_color',
    1040                     'label'         => __( 'Navigation Font Color', 'rwc-team-members' ),
    1041                     'desc'          => sprintf( __( 'Set the filter navigation font color of the %s.', 'rwc-team-members' ), $our_team_name ),
    1042                     'placeholder'   => __( '#1d233b', 'rwc-team-members' ),
    1043                     'type'          => 'color',
    1044                     'value'         => isset($teamCombine['nvfncl']) ? $teamCombine['nvfncl'] : '#1d233b',
    1045                     'tips'          => __( '', 'rwc-team-members' ),
    1046                     'badge'         => ''
    1047                 ),     
     1037                ), 
    10481038                array(
    10491039                    'name'              => 'nav_font_color',
  • rwc-team-members/trunk/readme.txt

    r3050736 r3061831  
    55Tested up to: 6.4.3
    66Stable Tag: 0.1
    7 Requires PHP: 7.2
     7Requires PHP: 7.
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5757* Location,
    5858* Photo, Social links
     59
     60
     61
     62
    5963
    6064== Usage ==
     
    111115
    112116== Changelog ==
     117
     118
     119
     120
     121
    113122
    114123= 0.1 (14 March, 2024) =
  • rwc-team-members/trunk/rwc-team-members.php

    r3050730 r3061831  
    44 * Plugin URI:        http://wordpress.org/plugins/rwc-team-members/
    55 * Description:       Showcase your team's talent and expertise with ease. Our team member plugin offers grid, slider, popup and filter layouts using a shortcode.
    6  * Version:           0.1
     6 * Version:           0.
    77 * Requires at least: 5.2
    88 * Requires PHP:      7.2
     
    2424 * Main plugin file that initializes and manages the "RWC Team Members" plugin.
    2525 *
    26  * @package RWC Team Members - v0.1 - 14 March, 2024
     26 * @package RWC Team Members - v0., 2024
    2727 */
    2828
  • rwc-team-members/trunk/templates/process-template.php

    r3050730 r3061831  
    77 * by clicking a button. The team can later be edited from the team settings page.
    88 *
    9  * @package RWC Team Members - v0.1 - 14 March, 2024
     9 * @package RWC Team Members - v0., 2024
    1010 */
    1111if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
  • rwc-team-members/trunk/templates/template-options.php

    r3050730 r3061831  
    77 * existing teams using a streamlined interface.
    88 *
    9  * @package RWC Team Members - v0.1 - 14 March, 2024
     9 * @package RWC Team Members - v0., 2024
    1010 */
    1111if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
Note: See TracChangeset for help on using the changeset viewer.